| Server IP : 172.67.191.97 / Your IP : 104.23.243.197 Web Server : Apache/2.4.63 (Ubuntu) System : Linux adminpruebas-Virtual-Machine 6.14.0-37-generic #37-Ubuntu SMP PREEMPT_DYNAMIC Fri Nov 14 22:10:32 UTC 2025 x86_64 User : www-data ( 33) PHP Version : 8.4.5 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/backups/mysql/ |
Upload File : |
-- MySQL dump 10.13 Distrib 8.4.7, for Linux (x86_64)
--
-- Host: localhost Database: congresofce
-- ------------------------------------------------------
-- Server version 8.4.7-0ubuntu0.25.04.2
/*!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 */;
/*!50503 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 `jnx5e_action_log_config`
--
DROP TABLE IF EXISTS `jnx5e_action_log_config`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_action_log_config` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`type_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`id_holder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title_holder` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`table_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`text_prefix` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_action_log_config`
--
LOCK TABLES `jnx5e_action_log_config` WRITE;
/*!40000 ALTER TABLE `jnx5e_action_log_config` DISABLE KEYS */;
INSERT INTO `jnx5e_action_log_config` VALUES (1,'article','com_content.article','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(2,'article','com_content.form','id','title','#__content','PLG_ACTIONLOG_JOOMLA'),(3,'banner','com_banners.banner','id','name','#__banners','PLG_ACTIONLOG_JOOMLA'),(4,'user_note','com_users.note','id','subject','#__user_notes','PLG_ACTIONLOG_JOOMLA'),(5,'media','com_media.file','','name','','PLG_ACTIONLOG_JOOMLA'),(6,'category','com_categories.category','id','title','#__categories','PLG_ACTIONLOG_JOOMLA'),(7,'menu','com_menus.menu','id','title','#__menu_types','PLG_ACTIONLOG_JOOMLA'),(8,'menu_item','com_menus.item','id','title','#__menu','PLG_ACTIONLOG_JOOMLA'),(9,'newsfeed','com_newsfeeds.newsfeed','id','name','#__newsfeeds','PLG_ACTIONLOG_JOOMLA'),(10,'link','com_redirect.link','id','old_url','#__redirect_links','PLG_ACTIONLOG_JOOMLA'),(11,'tag','com_tags.tag','id','title','#__tags','PLG_ACTIONLOG_JOOMLA'),(12,'style','com_templates.style','id','title','#__template_styles','PLG_ACTIONLOG_JOOMLA'),(13,'plugin','com_plugins.plugin','extension_id','name','#__extensions','PLG_ACTIONLOG_JOOMLA'),(14,'component_config','com_config.component','extension_id','name','','PLG_ACTIONLOG_JOOMLA'),(15,'contact','com_contact.contact','id','name','#__contact_details','PLG_ACTIONLOG_JOOMLA'),(16,'module','com_modules.module','id','title','#__modules','PLG_ACTIONLOG_JOOMLA'),(17,'access_level','com_users.level','id','title','#__viewlevels','PLG_ACTIONLOG_JOOMLA'),(18,'banner_client','com_banners.client','id','name','#__banner_clients','PLG_ACTIONLOG_JOOMLA'),(19,'application_config','com_config.application','','name','','PLG_ACTIONLOG_JOOMLA'),(20,'task','com_scheduler.task','id','title','#__scheduler_tasks','PLG_ACTIONLOG_JOOMLA'),(21,'field','com_fields.field','id','title','#__fields','PLG_ACTIONLOG_JOOMLA'),(22,'guidedtour','com_guidedtours.state','id','title','#__guidedtours','PLG_ACTIONLOG_JOOMLA'),(23,'contact','com_contact.form','id','name','#__contact_details','PLG_ACTIONLOG_JOOMLA');
/*!40000 ALTER TABLE `jnx5e_action_log_config` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_action_logs`
--
DROP TABLE IF EXISTS `jnx5e_action_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_action_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`message_language_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date` datetime NOT NULL,
`extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_id` int NOT NULL DEFAULT '0',
`item_id` int NOT NULL DEFAULT '0',
`ip_address` varchar(40) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0.0.0.0',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_user_id_logdate` (`user_id`,`log_date`),
KEY `idx_user_id_extension` (`user_id`,`extension`),
KEY `idx_extension_item_id` (`extension`,`item_id`)
) ENGINE=InnoDB AUTO_INCREMENT=539 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_action_logs`
--
LOCK TABLES `jnx5e_action_logs` WRITE;
/*!40000 ALTER TABLE `jnx5e_action_logs` DISABLE KEYS */;
INSERT INTO `jnx5e_action_logs` VALUES (1,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-10-17 13:02:41','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(2,'PLG_ACTIONLOG_JOOMLA_GUIDEDTOURS_TOURCOMPLETED','{\"id\":12,\"title\":\"Bienvenido a Joomla!\",\"state\":\"completed\",\"step\":6,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:03:40','com_guidedtours.state',44,12,'COM_ACTIONLOGS_DISABLED'),(3,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":249,\"name\":\"plg_system_gantry5\",\"extension_name\":\"plg_system_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,249,'COM_ACTIONLOGS_DISABLED'),(4,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":250,\"name\":\"plg_quickicon_gantry5\",\"extension_name\":\"plg_quickicon_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,250,'COM_ACTIONLOGS_DISABLED'),(5,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":251,\"name\":\"plg_gantry5_preset\",\"extension_name\":\"plg_gantry5_preset\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,251,'COM_ACTIONLOGS_DISABLED'),(6,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":252,\"name\":\"mod_gantry5_particle\",\"extension_name\":\"mod_gantry5_particle\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,252,'COM_ACTIONLOGS_DISABLED'),(7,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":253,\"name\":\"Gantry 5 Framework\",\"extension_name\":\"Gantry 5 Framework\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,253,'COM_ACTIONLOGS_DISABLED'),(8,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_FILE\",\"id\":254,\"name\":\"gantry5_nucleus\",\"extension_name\":\"gantry5_nucleus\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,254,'COM_ACTIONLOGS_DISABLED'),(9,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":255,\"name\":\"com_gantry5\",\"extension_name\":\"com_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,255,'COM_ACTIONLOGS_DISABLED'),(10,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":256,\"name\":\"pkg_gantry5\",\"extension_name\":\"pkg_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:29','com_installer',44,256,'COM_ACTIONLOGS_DISABLED'),(11,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_TEMPLATE\",\"id\":257,\"name\":\"g5_helium\",\"extension_name\":\"g5_helium\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 13:11:52','com_installer',44,257,'COM_ACTIONLOGS_DISABLED'),(12,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":101,\"title\":\"Home\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=101\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 14:19:44','com_menus.item',44,101,'COM_ACTIONLOGS_DISABLED'),(13,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2024-10-17 14:19:44','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(14,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":101,\"title\":\"Home\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=101\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 14:21:42','com_menus.item',44,101,'COM_ACTIONLOGS_DISABLED'),(15,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":101,\"title\":\"Home\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=101\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 14:22:05','com_menus.item',44,101,'COM_ACTIONLOGS_DISABLED'),(16,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2024-10-17 14:22:05','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(17,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-10-17 14:53:44','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(18,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":258,\"name\":\"com_djimageslider\",\"extension_name\":\"com_djimageslider\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:05:17','com_installer',44,258,'COM_ACTIONLOGS_DISABLED'),(19,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":259,\"name\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:05:17','com_installer',44,259,'COM_ACTIONLOGS_DISABLED'),(20,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":260,\"name\":\"DJ-ImageSlider Package\",\"extension_name\":\"DJ-ImageSlider Package\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:05:17','com_installer',44,260,'COM_ACTIONLOGS_DISABLED'),(21,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_CATEGORY\",\"id\":8,\"title\":\"slider\",\"itemlink\":\"index.php?option=com_categories&task=category.edit&id=8\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:06:22','com_categories.category',44,8,'COM_ACTIONLOGS_DISABLED'),(22,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__categories\"}','2024-10-17 15:06:25','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(23,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2024-10-17 15:07:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(24,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:08:06','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(25,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:08:06','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(26,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:08:21','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(27,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:08:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(28,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:08:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(29,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:09:28','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(30,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:09:28','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(31,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:10:00','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(32,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:10:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(33,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:10:26','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(34,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":261,\"name\":\"Content - Simple Tabs\",\"extension_name\":\"Content - Simple Tabs\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:15:14','com_installer',44,261,'COM_ACTIONLOGS_DISABLED'),(35,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":262,\"name\":\"Content - Simple Sliders\",\"extension_name\":\"Content - Simple Sliders\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:15:59','com_installer',44,262,'COM_ACTIONLOGS_DISABLED'),(36,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":263,\"name\":\"plg_actionlog_dpcalendar\",\"extension_name\":\"plg_actionlog_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,263,'COM_ACTIONLOGS_DISABLED'),(37,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":264,\"name\":\"plg_content_dpcalendar\",\"extension_name\":\"plg_content_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,264,'COM_ACTIONLOGS_DISABLED'),(38,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":265,\"name\":\"plg_fields_dpcalendar\",\"extension_name\":\"plg_fields_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,265,'COM_ACTIONLOGS_DISABLED'),(39,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":266,\"name\":\"plg_installer_dpcalendar\",\"extension_name\":\"plg_installer_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,266,'COM_ACTIONLOGS_DISABLED'),(40,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":267,\"name\":\"plg_privacy_dpcalendar\",\"extension_name\":\"plg_privacy_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,267,'COM_ACTIONLOGS_DISABLED'),(41,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":268,\"name\":\"plg_user_dpcalendar\",\"extension_name\":\"plg_user_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,268,'COM_ACTIONLOGS_DISABLED'),(42,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":269,\"name\":\"com_dpcalendar\",\"extension_name\":\"com_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,269,'COM_ACTIONLOGS_DISABLED'),(43,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":270,\"name\":\"DPCalendar\",\"extension_name\":\"DPCalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:27:54','com_installer',44,270,'COM_ACTIONLOGS_DISABLED'),(44,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":271,\"name\":\"mod_dpcalendar_mini\",\"extension_name\":\"mod_dpcalendar_mini\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:28:29','com_installer',44,271,'COM_ACTIONLOGS_DISABLED'),(45,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:28:49','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(46,'PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED','{\"action\":\"publish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":112,\"title\":\"DPCalendar Mini\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=112\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:28:49','com_modules.module',44,112,'COM_ACTIONLOGS_DISABLED'),(47,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":273,\"name\":\"Image Effect CK\",\"extension_name\":\"Image Effect CK\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:38:07','com_installer',44,273,'COM_ACTIONLOGS_DISABLED'),(48,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":272,\"name\":\"com_imageeffectck\",\"extension_name\":\"com_imageeffectck\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:38:07','com_installer',44,272,'COM_ACTIONLOGS_DISABLED'),(49,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:46:03','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(50,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:46:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(51,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:46:48','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(52,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:46:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(53,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:47:08','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(54,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:47:08','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(55,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:47:26','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(56,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":101,\"title\":\"Inicio\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=101\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:55:19','com_menus.item',44,101,'COM_ACTIONLOGS_DISABLED'),(57,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2024-10-17 15:55:19','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(58,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":1,\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:56:03','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(59,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Prueba\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:56:20','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(60,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":17,\"title\":\"Breadcrumbs\",\"extension_name\":\"Breadcrumbs\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=17\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 15:56:48','com_modules.module',44,17,'COM_ACTIONLOGS_DISABLED'),(61,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:56:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(62,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2024-10-17 15:56:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(63,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":19,\"title\":\"com_content\",\"extension_name\":\"com_content\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=19\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 16:06:06','com_config.component',44,19,'COM_ACTIONLOGS_DISABLED'),(64,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":19,\"title\":\"com_content\",\"extension_name\":\"com_content\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=19\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 16:07:14','com_config.component',44,19,'COM_ACTIONLOGS_DISABLED'),(65,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":19,\"title\":\"com_content\",\"extension_name\":\"com_content\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=19\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 16:07:26','com_config.component',44,19,'COM_ACTIONLOGS_DISABLED'),(66,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2024-10-17 19:41:31','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(67,'PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED','{\"action\":\"publish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":175,\"title\":\"plg_system_accessibility\",\"itemlink\":\"index.php?option=com_plugins&task=plugin.edit&extension_id=175\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 19:41:31','com_plugins.plugin',44,175,'COM_ACTIONLOGS_DISABLED'),(68,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":\"175\",\"title\":\"plg_system_accessibility\",\"extension_name\":\"plg_system_accessibility\",\"itemlink\":\"index.php?option=com_plugins&task=plugin.edit&extension_id=175\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 19:42:02','com_plugins.plugin',44,175,'COM_ACTIONLOGS_DISABLED'),(69,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2024-10-17 19:42:02','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(70,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":\"175\",\"title\":\"plg_system_accessibility\",\"extension_name\":\"plg_system_accessibility\",\"itemlink\":\"index.php?option=com_plugins&task=plugin.edit&extension_id=175\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 19:42:13','com_plugins.plugin',44,175,'COM_ACTIONLOGS_DISABLED'),(71,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2024-10-17 19:42:13','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(72,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":\"175\",\"title\":\"plg_system_accessibility\",\"extension_name\":\"plg_system_accessibility\",\"itemlink\":\"index.php?option=com_plugins&task=plugin.edit&extension_id=175\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-17 19:42:28','com_plugins.plugin',44,175,'COM_ACTIONLOGS_DISABLED'),(73,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2024-10-17 19:42:28','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(74,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2024-10-17 20:01:50','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(75,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-10-23 14:15:47','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(76,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":274,\"name\":\"com_phocadownload\",\"extension_name\":\"com_phocadownload\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 14:33:11','com_installer',44,274,'COM_ACTIONLOGS_DISABLED'),(77,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__phocadownload_categories\"}','2024-10-23 14:36:45','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(78,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__phocadownload\"}','2024-10-23 14:39:29','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(79,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Prueba\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 14:40:41','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(80,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2024-10-23 14:40:41','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(81,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":274,\"title\":\"com_phocadownload\",\"extension_name\":\"com_phocadownload\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=274\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 14:46:23','com_config.component',44,274,'COM_ACTIONLOGS_DISABLED'),(82,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":274,\"title\":\"com_phocadownload\",\"extension_name\":\"com_phocadownload\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=274\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 14:50:13','com_config.component',44,274,'COM_ACTIONLOGS_DISABLED'),(83,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__phocadownload\"}','2024-10-23 14:50:31','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(84,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__phocadownload\"}','2024-10-23 15:07:26','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(85,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"prueba 2\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:07:59','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(86,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:10:33','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(87,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:10:33','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(88,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:12:03','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(89,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:12:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(90,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:13:31','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(91,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:13:31','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(92,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:14:03','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(93,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:14:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(94,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:14:44','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(95,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:14:44','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(96,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2024-10-23 15:15:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(97,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"prueba 2\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:15:27','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(98,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2024-10-23 15:15:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(99,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"prueba 2\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-10-23 15:15:50','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(100,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-10-24 20:33:17','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(101,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-10-28 15:27:00','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(102,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-11-05 15:30:23','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(103,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2024-11-05 15:31:51','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(104,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-12-02 20:01:01','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(105,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2024-12-02 20:01:12','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(106,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-02-24 13:26:48','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(107,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-02-24 13:26:57','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(108,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-02-24 13:27:11','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(109,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-02-24 13:27:26','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(110,'PLG_ACTIONLOG_JOOMLA_USER_UPDATE','{\"action\":\"joomlaupdate\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"version\":\"5.2.4\",\"oldversion\":\"5.2.0\"}','2025-02-24 13:28:24','com_joomlaupdate',44,44,'COM_ACTIONLOGS_DISABLED'),(111,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:29:35','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(112,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:29:35','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(113,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:29:35','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(114,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":248,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:29:35','com_installer',44,248,'COM_ACTIONLOGS_DISABLED'),(115,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_STYLE\",\"id\":14,\"title\":\"Helium - Predeterminado (2)\",\"extension_name\":\"Helium - Predeterminado (2)\",\"itemlink\":\"index.php?option=com_templates&task=style.edit&id=14\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:49:31','com_templates.style',44,14,'COM_ACTIONLOGS_DISABLED'),(116,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Prueba phoca\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:55:25','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(117,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2025-02-24 13:55:25','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(118,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":2,\"title\":\"menu-vertical\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:56:30','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(119,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 13:56:32','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(120,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":132,\"title\":\"prueba menu vertical\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=132\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:56:36','com_menus.item',44,132,'COM_ACTIONLOGS_DISABLED'),(121,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2025-02-24 13:57:54','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(122,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":275,\"name\":\"plg_captcha_hcaptcha\",\"extension_name\":\"plg_captcha_hcaptcha\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:58:49','com_installer',44,275,'COM_ACTIONLOGS_DISABLED'),(123,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":276,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:02','com_installer',44,276,'COM_ACTIONLOGS_DISABLED'),(124,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":278,\"name\":\"Smart Slider 3 Library\",\"extension_name\":\"Smart Slider 3 Library\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:11','com_installer',44,278,'COM_ACTIONLOGS_DISABLED'),(125,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":279,\"name\":\"Smart Slider 3 Module\",\"extension_name\":\"Smart Slider 3 Module\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:11','com_installer',44,279,'COM_ACTIONLOGS_DISABLED'),(126,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":280,\"name\":\"Smart Slider 3 Updater Plugin\",\"extension_name\":\"Smart Slider 3 Updater Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:11','com_installer',44,280,'COM_ACTIONLOGS_DISABLED'),(127,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":281,\"name\":\"Smart Slider 3 System Plugin\",\"extension_name\":\"Smart Slider 3 System Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:11','com_installer',44,281,'COM_ACTIONLOGS_DISABLED'),(128,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":277,\"name\":\"Smart Slider 3\",\"extension_name\":\"Smart Slider 3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:11','com_installer',44,277,'COM_ACTIONLOGS_DISABLED'),(129,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 13:59:48','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(130,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 13:59:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(131,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 13:59:51','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(132,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2025-02-24 13:59:59','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(133,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:00:11','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(134,'PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED','{\"action\":\"publish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":113,\"title\":\"Ol Testimonials\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=113\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:00:11','com_modules.module',44,113,'COM_ACTIONLOGS_DISABLED'),(135,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":113,\"title\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=113\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:02:22','com_modules.module',44,113,'COM_ACTIONLOGS_DISABLED'),(136,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:02:22','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(137,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:02:42','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(138,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:03:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(139,'PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED','{\"action\":\"publish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":114,\"title\":\"Smart Slider 3 Module\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=114\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:03:09','com_modules.module',44,114,'COM_ACTIONLOGS_DISABLED'),(140,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:03:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(141,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:07:44','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(142,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:07:44','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(143,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:09:04','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(144,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:09:04','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(145,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:09:24','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(146,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":112,\"title\":\"DPCalendar Mini\",\"extension_name\":\"DPCalendar Mini\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=112\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:10:08','com_modules.module',44,112,'COM_ACTIONLOGS_DISABLED'),(147,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:10:08','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(148,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:10:17','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(149,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"id\":1,\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_LOCATION\",\"title\":\"Campus Barcelona\",\"itemlink\":\"index.php?option=com_dpcalendar&task=location.edit&l_id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:15:16','com_dpcalendar.location',44,1,'COM_ACTIONLOGS_DISABLED'),(150,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_locations\"}','2025-02-24 14:15:32','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(151,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"id\":2,\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_LOCATION\",\"title\":\"Villavicencio, Meta 500008, 52\",\"itemlink\":\"index.php?option=com_dpcalendar&task=location.edit&l_id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:20:34','com_dpcalendar.location',44,2,'COM_ACTIONLOGS_DISABLED'),(152,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"id\":\"2\",\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_LOCATION\",\"title\":\"Villavicencio, Meta 500008, 52\",\"itemlink\":\"index.php?option=com_dpcalendar&task=location.edit&l_id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:20:48','com_dpcalendar.location',44,2,'COM_ACTIONLOGS_DISABLED'),(153,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_locations\"}','2025-02-24 14:20:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(154,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"id\":3,\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_LOCATION\",\"title\":\"Campus Boquemonte\",\"itemlink\":\"index.php?option=com_dpcalendar&task=location.edit&l_id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:23:17','com_dpcalendar.location',44,3,'COM_ACTIONLOGS_DISABLED'),(155,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_locations\"}','2025-02-24 14:23:24','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(156,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"id\":\"1\",\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_LOCATION\",\"title\":\"Campus Barcelona\",\"itemlink\":\"index.php?option=com_dpcalendar&task=location.edit&l_id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:23:55','com_dpcalendar.location',44,1,'COM_ACTIONLOGS_DISABLED'),(157,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_locations\"}','2025-02-24 14:23:55','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(158,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"id\":1,\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_EVENT\",\"title\":\"Calendario de prueba\",\"itemlink\":\"index.php?option=com_dpcalendar&task=event.edit&e_id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:25:30','com_dpcalendar.event',44,1,'COM_ACTIONLOGS_DISABLED'),(159,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"id\":\"1\",\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_EVENT\",\"title\":\"Calendario de prueba\",\"itemlink\":\"index.php?option=com_dpcalendar&task=event.edit&e_id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:25:50','com_dpcalendar.event',44,1,'COM_ACTIONLOGS_DISABLED'),(160,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_events\"}','2025-02-24 14:25:50','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(161,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_events\"}','2025-02-24 14:26:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(162,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:26:37','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(163,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:26:37','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(164,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:27:39','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(165,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":112,\"title\":\"DPCalendar Mini\",\"extension_name\":\"DPCalendar Mini\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=112\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:28:30','com_modules.module',44,112,'COM_ACTIONLOGS_DISABLED'),(166,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:28:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(167,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:28:54','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(168,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:30:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(169,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:31:00','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(170,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-02-24 14:31:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(171,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":269,\"title\":\"com_dpcalendar\",\"extension_name\":\"com_dpcalendar\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=269\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:38:56','com_config.component',44,269,'COM_ACTIONLOGS_DISABLED'),(172,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"id\":\"1\",\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_DPCALENDAR_TYPE_EVENT\",\"title\":\"Calendario de prueba\",\"itemlink\":\"index.php?option=com_dpcalendar&task=event.edit&e_id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:46:27','com_dpcalendar.event',44,1,'COM_ACTIONLOGS_DISABLED'),(173,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_events\"}','2025-02-24 14:46:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(174,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__dpcalendar_events\"}','2025-02-24 14:48:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(175,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":112,\"title\":\"DPCalendar Mini\",\"extension_name\":\"DPCalendar Mini\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=112\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:52:09','com_modules.module',44,112,'COM_ACTIONLOGS_DISABLED'),(176,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:52:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(177,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":112,\"title\":\"DPCalendar Mini\",\"extension_name\":\"DPCalendar Mini\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=112\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-02-24 14:53:15','com_modules.module',44,112,'COM_ACTIONLOGS_DISABLED'),(178,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-02-24 14:53:15','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(179,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-03-18 13:09:26','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(180,'PLG_ACTIONLOG_JOOMLA_USER_UPDATE','{\"action\":\"joomlaupdate\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"version\":\"5.2.5\",\"oldversion\":\"5.2.4\"}','2025-03-18 13:10:21','com_joomlaupdate',44,44,'COM_ACTIONLOGS_DISABLED'),(181,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-03-21 15:18:18','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(182,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU\",\"id\":2,\"title\":\"menu-vertical\",\"itemlink\":\"index.php?option=com_menus&task=menu.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:24:18','com_menus.menu',44,2,'COM_ACTIONLOGS_DISABLED'),(183,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":134,\"title\":\"Buscar\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=134\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:25:09','com_menus.item',44,134,'COM_ACTIONLOGS_DISABLED'),(184,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2025-03-21 15:25:22','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(185,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":115,\"title\":\"buscar\",\"extension_name\":\"buscar\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=115\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:27:01','com_modules.module',44,115,'COM_ACTIONLOGS_DISABLED'),(186,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":115,\"title\":\"buscador\",\"extension_name\":\"buscador\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=115\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:28:29','com_modules.module',44,115,'COM_ACTIONLOGS_DISABLED'),(187,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-03-21 15:28:29','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(188,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":115,\"title\":\"buscador\",\"extension_name\":\"buscador\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=115\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:30:09','com_modules.module',44,115,'COM_ACTIONLOGS_DISABLED'),(189,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-03-21 15:30:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(190,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-03-21 15:34:22','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(191,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":282,\"name\":\"plg_finder_phocadownload\",\"extension_name\":\"plg_finder_phocadownload\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:34:34','com_installer',44,282,'COM_ACTIONLOGS_DISABLED'),(192,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-03-21 15:40:46','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(193,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":115,\"title\":\"buscador\",\"extension_name\":\"buscador\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=115\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-03-21 15:41:40','com_modules.module',44,115,'COM_ACTIONLOGS_DISABLED'),(194,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-03-21 15:41:40','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(195,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-03-29 13:09:49','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(196,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-02 21:02:13','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(197,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-02 21:19:22','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(198,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-02 21:20:14','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(199,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-04-02 21:20:14','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(200,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-02 21:22:52','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(201,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-04-02 21:22:52','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(202,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"prueba\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-02 21:23:12','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(203,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-04-02 21:23:12','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(204,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-09 21:03:19','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(205,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":45,\"userid\":45,\"username\":\"pts\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=45\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:17:20','com_users',45,45,'COM_ACTIONLOGS_DISABLED'),(206,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":45,\"userid\":45,\"username\":\"pts\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=45\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:17:30','com_users',45,45,'COM_ACTIONLOGS_DISABLED'),(207,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":45,\"userid\":45,\"username\":\"pts\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=45\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:19:10','com_users',45,45,'COM_ACTIONLOGS_DISABLED'),(208,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:19:21','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(209,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":45,\"title\":\"pts\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=45\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-11 22:21:04','com_users',44,45,'COM_ACTIONLOGS_DISABLED'),(210,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_OUT','{\"action\":\"logout\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:21:56','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(211,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":45,\"username\":\"pts\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=45\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-11 22:22:04','com_users',45,0,'COM_ACTIONLOGS_DISABLED'),(212,'PLG_ACTIONLOG_JOOMLA_GUIDEDTOURS_TOURDELAYED','{\"id\":12,\"title\":\"Bienvenido a Joomla!\",\"state\":\"delayed\",\"step\":1,\"userid\":45,\"username\":\"pts\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=45\"}','2025-04-11 22:22:08','com_guidedtours.state',45,12,'COM_ACTIONLOGS_DISABLED'),(213,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-21 14:02:04','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(214,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__extensions\"}','2025-04-21 14:02:14','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(215,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UNPUBLISHED','{\"action\":\"unpublish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":206,\"title\":\"plg_task_updatenotification\",\"itemlink\":\"index.php?option=com_plugins&task=plugin.edit&extension_id=206\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:02:14','com_plugins.plugin',44,206,'COM_ACTIONLOGS_DISABLED'),(216,'PLG_ACTIONLOG_JOOMLA_USER_UPDATE','{\"action\":\"joomlaupdate\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"version\":\"5.3.0\",\"oldversion\":\"5.2.5\"}','2025-04-21 14:04:17','com_joomlaupdate',44,44,'COM_ACTIONLOGS_DISABLED'),(217,'PLG_ACTIONLOG_JOOMLA_GUIDEDTOURS_TOURCOMPLETED','{\"id\":13,\"title\":\"What\\u2019s New in Joomla 5.3!\",\"state\":\"completed\",\"step\":2,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:10:53','com_guidedtours.state',44,13,'COM_ACTIONLOGS_DISABLED'),(218,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":263,\"name\":\"plg_actionlog_dpcalendar\",\"extension_name\":\"plg_actionlog_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,263,'COM_ACTIONLOGS_DISABLED'),(219,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":264,\"name\":\"plg_content_dpcalendar\",\"extension_name\":\"plg_content_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,264,'COM_ACTIONLOGS_DISABLED'),(220,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":265,\"name\":\"plg_fields_dpcalendar\",\"extension_name\":\"plg_fields_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,265,'COM_ACTIONLOGS_DISABLED'),(221,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":266,\"name\":\"plg_installer_dpcalendar\",\"extension_name\":\"plg_installer_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,266,'COM_ACTIONLOGS_DISABLED'),(222,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":267,\"name\":\"plg_privacy_dpcalendar\",\"extension_name\":\"plg_privacy_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,267,'COM_ACTIONLOGS_DISABLED'),(223,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":268,\"name\":\"plg_user_dpcalendar\",\"extension_name\":\"plg_user_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,268,'COM_ACTIONLOGS_DISABLED'),(224,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":269,\"name\":\"com_dpcalendar\",\"extension_name\":\"com_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,269,'COM_ACTIONLOGS_DISABLED'),(225,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":270,\"name\":\"DPCalendar\",\"extension_name\":\"DPCalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,270,'COM_ACTIONLOGS_DISABLED'),(226,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":271,\"name\":\"mod_dpcalendar_mini\",\"extension_name\":\"mod_dpcalendar_mini\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,271,'COM_ACTIONLOGS_DISABLED'),(227,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":284,\"name\":\"Smart Slider 3 Library\",\"extension_name\":\"Smart Slider 3 Library\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,284,'COM_ACTIONLOGS_DISABLED'),(228,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":279,\"name\":\"Smart Slider 3 Module\",\"extension_name\":\"Smart Slider 3 Module\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,279,'COM_ACTIONLOGS_DISABLED'),(229,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":280,\"name\":\"Smart Slider 3 Updater Plugin\",\"extension_name\":\"Smart Slider 3 Updater Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,280,'COM_ACTIONLOGS_DISABLED'),(230,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":281,\"name\":\"Smart Slider 3 System Plugin\",\"extension_name\":\"Smart Slider 3 System Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,281,'COM_ACTIONLOGS_DISABLED'),(231,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":277,\"name\":\"Smart Slider 3\",\"extension_name\":\"Smart Slider 3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:12:22','com_installer',44,277,'COM_ACTIONLOGS_DISABLED'),(232,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2025-04-21 14:16:17','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(233,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-04-21 14:16:17','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(234,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:38:05','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(235,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:38:05','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(236,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:38:05','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(237,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":248,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:38:05','com_installer',44,248,'COM_ACTIONLOGS_DISABLED'),(238,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":276,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-04-21 14:38:30','com_installer',44,276,'COM_ACTIONLOGS_DISABLED'),(239,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-24 21:47:20','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(240,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-04-24 21:58:45','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(241,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-04-25 13:27:38','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(242,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-06-24 15:50:11','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(243,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-06-24 15:50:16','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(244,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":274,\"name\":\"com_phocadownload\",\"extension_name\":\"com_phocadownload\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,274,'COM_ACTIONLOGS_DISABLED'),(245,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":263,\"name\":\"plg_actionlog_dpcalendar\",\"extension_name\":\"plg_actionlog_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,263,'COM_ACTIONLOGS_DISABLED'),(246,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":264,\"name\":\"plg_content_dpcalendar\",\"extension_name\":\"plg_content_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,264,'COM_ACTIONLOGS_DISABLED'),(247,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":265,\"name\":\"plg_fields_dpcalendar\",\"extension_name\":\"plg_fields_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,265,'COM_ACTIONLOGS_DISABLED'),(248,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":266,\"name\":\"plg_installer_dpcalendar\",\"extension_name\":\"plg_installer_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,266,'COM_ACTIONLOGS_DISABLED'),(249,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":267,\"name\":\"plg_privacy_dpcalendar\",\"extension_name\":\"plg_privacy_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,267,'COM_ACTIONLOGS_DISABLED'),(250,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":268,\"name\":\"plg_user_dpcalendar\",\"extension_name\":\"plg_user_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,268,'COM_ACTIONLOGS_DISABLED'),(251,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":269,\"name\":\"com_dpcalendar\",\"extension_name\":\"com_dpcalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,269,'COM_ACTIONLOGS_DISABLED'),(252,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":270,\"name\":\"DPCalendar\",\"extension_name\":\"DPCalendar\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,270,'COM_ACTIONLOGS_DISABLED'),(253,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":271,\"name\":\"mod_dpcalendar_mini\",\"extension_name\":\"mod_dpcalendar_mini\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,271,'COM_ACTIONLOGS_DISABLED'),(254,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":285,\"name\":\"Smart Slider 3 Library\",\"extension_name\":\"Smart Slider 3 Library\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,285,'COM_ACTIONLOGS_DISABLED'),(255,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":279,\"name\":\"Smart Slider 3 Module\",\"extension_name\":\"Smart Slider 3 Module\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,279,'COM_ACTIONLOGS_DISABLED'),(256,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":280,\"name\":\"Smart Slider 3 Updater Plugin\",\"extension_name\":\"Smart Slider 3 Updater Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,280,'COM_ACTIONLOGS_DISABLED'),(257,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":281,\"name\":\"Smart Slider 3 System Plugin\",\"extension_name\":\"Smart Slider 3 System Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,281,'COM_ACTIONLOGS_DISABLED'),(258,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":277,\"name\":\"Smart Slider 3\",\"extension_name\":\"Smart Slider 3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,277,'COM_ACTIONLOGS_DISABLED'),(259,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(260,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(261,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(262,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":false,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,0,'COM_ACTIONLOGS_DISABLED'),(263,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":false,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:02:07','com_installer',44,0,'COM_ACTIONLOGS_DISABLED'),(264,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:03:04','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(265,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:03:04','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(266,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:03:04','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(267,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":286,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:03:04','com_installer',44,286,'COM_ACTIONLOGS_DISABLED'),(268,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":276,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-06-24 16:03:15','com_installer',44,276,'COM_ACTIONLOGS_DISABLED'),(269,'PLG_ACTIONLOG_JOOMLA_USER_UPDATE','{\"action\":\"joomlaupdate\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"version\":\"5.3.1\",\"oldversion\":\"5.3.0\"}','2025-06-24 16:04:27','com_joomlaupdate',44,44,'COM_ACTIONLOGS_DISABLED'),(270,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2025-06-24 16:05:37','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(271,'PLG_ACTIONLOG_JOOMLA_USER_CACHE','{\"action\":\"cache\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"group\":\"all\"}','2025-06-24 16:05:49','com_cache',44,44,'COM_ACTIONLOGS_DISABLED'),(272,'PLG_ACTIONLOG_JOOMLA_USER_CACHE','{\"action\":\"cache\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"group\":\"all\"}','2025-06-24 16:05:51','com_cache',44,44,'COM_ACTIONLOGS_DISABLED'),(273,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-08-07 18:58:31','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(274,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":287,\"name\":\"MOD_JM_IMG_CAROUSEL\",\"extension_name\":\"MOD_JM_IMG_CAROUSEL\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 18:59:38','com_installer',44,287,'COM_ACTIONLOGS_DISABLED'),(275,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:00:15','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(276,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:00:18','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(277,'PLG_SYSTEM_ACTIONLOGS_CONTENT_PUBLISHED','{\"action\":\"publish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:00:18','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(278,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"extension_name\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:01:25','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(279,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:01:25','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(280,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"extension_name\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:01:47','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(281,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:01:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(282,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:02:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(283,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"extension_name\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:03:09','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(284,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:03:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(285,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"extension_name\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:03:46','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(286,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:03:46','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(287,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"extension_name\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-08-07 19:04:08','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(288,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-08-07 19:04:08','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(289,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2025-10-21 12:47:51','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(290,'PLG_ACTIONLOG_JOOMLA_USER_UPDATE','{\"action\":\"joomlaupdate\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"version\":\"5.4.0\",\"oldversion\":\"5.3.1\"}','2025-10-21 12:50:52','com_joomlaupdate',44,44,'COM_ACTIONLOGS_DISABLED'),(291,'PLG_ACTIONLOG_JOOMLA_COMPONENT_CONFIG_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT_CONFIG\",\"id\":19,\"title\":\"com_content\",\"extension_name\":\"com_content\",\"itemlink\":\"index.php?option=com_config&task=component.edit&extension_id=19\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:56:42','com_config.component',44,19,'COM_ACTIONLOGS_DISABLED'),(292,'PLG_ACTIONLOG_JOOMLA_GUIDEDTOURS_TOURCOMPLETED','{\"id\":14,\"title\":\"What\\u2019s New in Joomla 5.4!\",\"state\":\"completed\",\"step\":2,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:56:55','com_guidedtours.state',44,14,'COM_ACTIONLOGS_DISABLED'),(293,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":274,\"name\":\"com_phocadownload\",\"extension_name\":\"com_phocadownload\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,274,'COM_ACTIONLOGS_DISABLED'),(294,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":271,\"name\":\"mod_dpcalendar_mini\",\"extension_name\":\"mod_dpcalendar_mini\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,271,'COM_ACTIONLOGS_DISABLED'),(295,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":249,\"name\":\"plg_system_gantry5\",\"extension_name\":\"plg_system_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,249,'COM_ACTIONLOGS_DISABLED'),(296,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":250,\"name\":\"plg_quickicon_gantry5\",\"extension_name\":\"plg_quickicon_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,250,'COM_ACTIONLOGS_DISABLED'),(297,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":251,\"name\":\"plg_gantry5_preset\",\"extension_name\":\"plg_gantry5_preset\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,251,'COM_ACTIONLOGS_DISABLED'),(298,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":252,\"name\":\"mod_gantry5_particle\",\"extension_name\":\"mod_gantry5_particle\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,252,'COM_ACTIONLOGS_DISABLED'),(299,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":291,\"name\":\"Gantry 5 Framework\",\"extension_name\":\"Gantry 5 Framework\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,291,'COM_ACTIONLOGS_DISABLED'),(300,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_FILE\",\"id\":254,\"name\":\"gantry5_nucleus\",\"extension_name\":\"gantry5_nucleus\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,254,'COM_ACTIONLOGS_DISABLED'),(301,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":255,\"name\":\"com_gantry5\",\"extension_name\":\"com_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,255,'COM_ACTIONLOGS_DISABLED'),(302,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":256,\"name\":\"pkg_gantry5\",\"extension_name\":\"pkg_gantry5\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,256,'COM_ACTIONLOGS_DISABLED'),(303,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LIBRARY\",\"id\":292,\"name\":\"Smart Slider 3 Library\",\"extension_name\":\"Smart Slider 3 Library\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,292,'COM_ACTIONLOGS_DISABLED'),(304,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":279,\"name\":\"Smart Slider 3 Module\",\"extension_name\":\"Smart Slider 3 Module\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,279,'COM_ACTIONLOGS_DISABLED'),(305,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":280,\"name\":\"Smart Slider 3 Updater Plugin\",\"extension_name\":\"Smart Slider 3 Updater Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,280,'COM_ACTIONLOGS_DISABLED'),(306,'PLG_ACTIONLOG_JOOMLA_PLUGIN_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PLUGIN\",\"id\":281,\"name\":\"Smart Slider 3 System Plugin\",\"extension_name\":\"Smart Slider 3 System Plugin\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,281,'COM_ACTIONLOGS_DISABLED'),(307,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_COMPONENT\",\"id\":277,\"name\":\"Smart Slider 3\",\"extension_name\":\"Smart Slider 3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,277,'COM_ACTIONLOGS_DISABLED'),(308,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(309,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(310,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(311,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":false,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,0,'COM_ACTIONLOGS_DISABLED'),(312,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":false,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 12:58:59','com_installer',44,0,'COM_ACTIONLOGS_DISABLED'),(313,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":245,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:00:08','com_installer',44,245,'COM_ACTIONLOGS_DISABLED'),(314,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":246,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:00:08','com_installer',44,246,'COM_ACTIONLOGS_DISABLED'),(315,'PLG_ACTIONLOG_JOOMLA_EXTENSION_INSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_LANGUAGE\",\"id\":247,\"name\":\"Spanish (es-ES)\",\"extension_name\":\"Spanish (es-ES)\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:00:08','com_installer',44,247,'COM_ACTIONLOGS_DISABLED'),(316,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_PACKAGE\",\"id\":293,\"name\":\"Spanish (es-ES) Language Pack\",\"extension_name\":\"Spanish (es-ES) Language Pack\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:00:08','com_installer',44,293,'COM_ACTIONLOGS_DISABLED'),(317,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":276,\"name\":\"Ol Testimonials\",\"extension_name\":\"Ol Testimonials\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:00:08','com_installer',44,276,'COM_ACTIONLOGS_DISABLED'),(318,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-10-21 13:02:16','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(319,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UNPUBLISHED','{\"action\":\"unpublish\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":116,\"title\":\"JM Image Carousel\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=116\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:02:16','com_modules.module',44,116,'COM_ACTIONLOGS_DISABLED'),(320,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2025-10-21 13:02:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(321,'PLG_ACTIONLOG_JOOMLA_EXTENSION_UNINSTALLED','{\"action\":\"install\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":287,\"name\":\"MOD_JM_IMG_CAROUSEL\",\"extension_name\":\"MOD_JM_IMG_CAROUSEL\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2025-10-21 13:03:33','com_installer',44,287,'COM_ACTIONLOGS_DISABLED'),(322,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-06 13:49:54','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(323,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tematicos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:54:13','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(324,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 13:54:13','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(325,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:54:39','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(326,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 13:54:39','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(327,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":132,\"title\":\"Gu\\u00eda Ponencias\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=132\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:55:06','com_menus.item',44,132,'COM_ACTIONLOGS_DISABLED'),(328,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 13:55:06','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(329,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":132,\"title\":\"Gu\\u00eda Ponencias\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=132\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:55:13','com_menus.item',44,132,'COM_ACTIONLOGS_DISABLED'),(330,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 13:55:13','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(331,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":3,\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:56:48','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(332,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":183,\"title\":\"Memorias \",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=183\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:56:54','com_menus.item',44,183,'COM_ACTIONLOGS_DISABLED'),(333,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 13:58:42','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(334,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 13:58:42','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(335,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:05:11','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(336,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:05:19','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(337,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:29:21','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(338,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:29:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(339,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":184,\"title\":\"Programa\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=184\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:30:22','com_menus.item',44,184,'COM_ACTIONLOGS_DISABLED'),(340,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":184,\"title\":\"Programa\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=184\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:30:35','com_menus.item',44,184,'COM_ACTIONLOGS_DISABLED'),(341,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:30:35','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(342,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:30:56','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(343,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:30:56','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(344,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":132,\"title\":\"Gu\\u00eda Ponencias\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=132\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:31:06','com_menus.item',44,132,'COM_ACTIONLOGS_DISABLED'),(345,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:31:06','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(346,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":185,\"title\":\"Informaci\\u00f3n\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=185\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:33:02','com_menus.item',44,185,'COM_ACTIONLOGS_DISABLED'),(347,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":183,\"title\":\"Memorias \",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=183\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:33:32','com_menus.item',44,183,'COM_ACTIONLOGS_DISABLED'),(348,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:33:32','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(349,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":186,\"title\":\"contacto\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=186\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:34:58','com_menus.item',44,186,'COM_ACTIONLOGS_DISABLED'),(350,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":186,\"title\":\"contacto\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=186\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:35:28','com_menus.item',44,186,'COM_ACTIONLOGS_DISABLED'),(351,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_STYLE\",\"id\":15,\"title\":\"Helium - Home - Inicio (2)\",\"extension_name\":\"Helium - Home - Inicio (2)\",\"itemlink\":\"index.php?option=com_templates&task=style.edit&id=15\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:43:17','com_templates.style',44,15,'COM_ACTIONLOGS_DISABLED'),(352,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":186,\"title\":\"contacto\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=186\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 14:45:29','com_menus.item',44,186,'COM_ACTIONLOGS_DISABLED'),(353,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-06 14:45:29','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(354,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 15:40:43','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(355,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-06 15:40:43','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(356,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-06 15:41:10','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(357,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__categories\"}','2026-04-06 15:56:51','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(358,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 15:57:00','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(359,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-06 15:57:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(360,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 16:34:52','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(361,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:37:02','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(362,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:37:02','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(363,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:37:40','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(364,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:37:40','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(365,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:38:11','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(366,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:38:11','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(367,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:38:39','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(368,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:38:39','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(369,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:39:51','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(370,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 16:40:15','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(371,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 16:40:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(372,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:40:40','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(373,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:40:53','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(374,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:40:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(375,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:41:07','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(376,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:41:07','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(377,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:41:23','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(378,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:41:23','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(379,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 16:41:35','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(380,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 16:41:35','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(381,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:24:53','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(382,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:24:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(383,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:25:55','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(384,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:33:09','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(385,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:33:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(386,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:34:03','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(387,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:34:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(388,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:34:27','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(389,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:34:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(390,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:34:31','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(391,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 19:35:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(392,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 19:38:10','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(393,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:40:23','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(394,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:40:23','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(395,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:45:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(396,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__djimageslider\"}','2026-04-06 19:45:56','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(397,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:47:04','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(398,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:47:04','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(399,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-06 19:47:24','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(400,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-06 19:47:24','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(401,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-07 14:15:31','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(402,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-07 14:15:45','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(403,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-07 14:36:57','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(404,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":4,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=4\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:13:38','com_content.article',44,4,'COM_ACTIONLOGS_DISABLED'),(405,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"4\",\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=4\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:13:59','com_content.article',44,4,'COM_ACTIONLOGS_DISABLED'),(406,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:13:59','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(407,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:14:07','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(408,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:16:27','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(409,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 15:16:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(410,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:22:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(411,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_STYLE\",\"id\":16,\"title\":\"Helium - Predeterminado (2)\",\"extension_name\":\"Helium - Predeterminado (2)\",\"itemlink\":\"index.php?option=com_templates&task=style.edit&id=16\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:48:38','com_templates.style',44,16,'COM_ACTIONLOGS_DISABLED'),(412,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"4\",\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=4\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:49:25','com_content.article',44,4,'COM_ACTIONLOGS_DISABLED'),(413,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:49:25','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(414,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":117,\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=117\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:52:06','com_menus.item',44,117,'COM_ACTIONLOGS_DISABLED'),(415,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 15:52:06','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(416,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"4\",\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=4\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:55:49','com_content.article',44,4,'COM_ACTIONLOGS_DISABLED'),(417,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:55:49','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(418,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"4\",\"title\":\"Ejes tem\\u00e1ticos\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=4\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 15:56:03','com_content.article',44,4,'COM_ACTIONLOGS_DISABLED'),(419,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 15:56:03','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(420,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 16:18:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(421,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:18:52','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(422,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:18:52','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(423,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:19:19','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(424,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:19:19','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(425,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:20:40','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(426,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:20:40','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(427,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:22:12','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(428,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:22:12','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(429,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:26:43','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(430,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:26:43','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(431,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:27:20','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(432,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:27:20','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(433,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:28:34','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(434,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:28:34','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(435,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:28:53','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(436,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:28:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(437,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:29:28','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(438,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:29:28','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(439,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:29:47','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(440,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:29:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(441,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:30:04','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(442,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:30:04','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(443,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 16:31:16','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(444,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:31:16','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(445,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 16:34:14','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(446,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-07 20:47:47','com_users',44,0,'COM_ACTIONLOGS_DISABLED'),(447,'PLG_SYSTEM_ACTIONLOGS_CONTENT_ADDED','{\"action\":\"add\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_STYLE\",\"id\":17,\"title\":\"Helium - Helium - Ejes tematicos (2)\",\"extension_name\":\"Helium - Helium - Ejes tematicos (2)\",\"itemlink\":\"index.php?option=com_templates&task=style.edit&id=17\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 20:48:13','com_templates.style',44,17,'COM_ACTIONLOGS_DISABLED'),(448,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 20:49:17','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(449,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":131,\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=131\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 20:49:30','com_menus.item',44,131,'COM_ACTIONLOGS_DISABLED'),(450,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 20:49:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(451,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 20:50:32','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(452,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 20:50:32','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(453,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 20:53:24','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(454,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 20:53:24','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(455,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 20:53:44','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(456,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 20:53:44','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(457,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 20:58:29','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(458,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 21:23:13','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(459,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:39:01','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(460,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:39:01','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(461,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MENU_ITEM\",\"id\":132,\"title\":\"Gu\\u00eda Ponencias\",\"itemlink\":\"index.php?option=com_menus&task=item.edit&id=132\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:39:30','com_menus.item',44,132,'COM_ACTIONLOGS_DISABLED'),(462,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 21:39:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(463,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:40:16','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(464,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:40:16','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(465,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:43:27','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(466,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:43:27','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(467,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:44:02','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(468,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:44:02','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(469,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:48:18','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(470,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:48:18','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(471,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:48:51','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(472,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:48:51','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(473,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:49:13','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(474,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:49:13','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(475,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:51:24','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(476,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:51:24','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(477,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:51:45','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(478,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:51:45','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(479,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:53:18','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(480,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:53:18','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(481,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:53:42','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(482,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:53:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(483,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:54:47','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(484,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:54:47','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(485,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:55:56','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(486,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:55:56','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(487,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 21:56:38','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(488,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 21:56:38','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(489,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:11:00','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(490,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:11:00','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(491,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:11:42','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(492,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:11:42','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(493,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:12:16','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(494,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:12:16','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(495,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:12:55','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(496,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:12:55','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(497,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:13:17','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(498,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:13:17','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(499,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:15:36','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(500,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:15:36','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(501,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:18:39','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(502,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:18:39','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(503,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:19:58','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(504,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:19:58','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(505,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:23:06','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(506,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:23:06','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(507,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:23:19','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(508,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"3\",\"title\":\"Memorias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=3\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:23:31','com_content.article',44,3,'COM_ACTIONLOGS_DISABLED'),(509,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:23:31','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(510,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"1\",\"title\":\"Cronograma\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=1\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:23:43','com_content.article',44,1,'COM_ACTIONLOGS_DISABLED'),(511,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:23:43','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(512,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_ARTICLE\",\"id\":\"2\",\"title\":\"Gu\\u00eda para ponencias\",\"itemlink\":\"index.php?option=com_content&task=article.edit&id=2\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:26:11','com_content.article',44,2,'COM_ACTIONLOGS_DISABLED'),(513,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:26:11','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(514,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__menu\"}','2026-04-07 22:27:09','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(515,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:37:07','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(516,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:37:07','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(517,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:37:19','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(518,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:37:19','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(519,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:37:39','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(520,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:37:39','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(521,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:37:53','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(522,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:37:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(523,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__content\"}','2026-04-07 22:38:07','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(524,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:41:14','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(525,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:41:14','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(526,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:41:48','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(527,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:41:48','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(528,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:42:04','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(529,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:42:04','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(530,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:42:21','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(531,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:42:21','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(532,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:42:34','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(533,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:42:34','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(534,'PLG_SYSTEM_ACTIONLOGS_CONTENT_UPDATED','{\"action\":\"update\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_MODULE\",\"id\":111,\"title\":\"DJ-ImageSlider\",\"extension_name\":\"DJ-ImageSlider\",\"itemlink\":\"index.php?option=com_modules&task=module.edit&id=111\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\"}','2026-04-07 22:42:53','com_modules.module',44,111,'COM_ACTIONLOGS_DISABLED'),(535,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-07 22:42:53','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(536,'PLG_ACTIONLOG_JOOMLA_USER_CHECKIN','{\"action\":\"checkin\",\"type\":\"PLG_ACTIONLOG_JOOMLA_TYPE_USER\",\"id\":44,\"title\":\"admin\",\"itemlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"table\":\"#__modules\"}','2026-04-08 19:48:30','com_checkin',44,44,'COM_ACTIONLOGS_DISABLED'),(537,'PLG_ACTIONLOG_JOOMLA_USER_LOGIN_FAILED','{\"action\":\"login\",\"id\":44,\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-22 14:17:42','com_users',44,44,'COM_ACTIONLOGS_DISABLED'),(538,'PLG_ACTIONLOG_JOOMLA_USER_LOGGED_IN','{\"action\":\"login\",\"userid\":44,\"username\":\"admin\",\"accountlink\":\"index.php?option=com_users&task=user.edit&id=44\",\"app\":\"PLG_ACTIONLOG_JOOMLA_APPLICATION_ADMINISTRATOR\"}','2026-04-22 14:17:48','com_users',44,0,'COM_ACTIONLOGS_DISABLED');
/*!40000 ALTER TABLE `jnx5e_action_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_action_logs_extensions`
--
DROP TABLE IF EXISTS `jnx5e_action_logs_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_action_logs_extensions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_action_logs_extensions`
--
LOCK TABLES `jnx5e_action_logs_extensions` WRITE;
/*!40000 ALTER TABLE `jnx5e_action_logs_extensions` DISABLE KEYS */;
INSERT INTO `jnx5e_action_logs_extensions` VALUES (1,'com_banners'),(2,'com_cache'),(3,'com_categories'),(4,'com_config'),(5,'com_contact'),(6,'com_content'),(7,'com_installer'),(8,'com_media'),(9,'com_menus'),(10,'com_messages'),(11,'com_modules'),(12,'com_newsfeeds'),(13,'com_plugins'),(14,'com_redirect'),(15,'com_tags'),(16,'com_templates'),(17,'com_users'),(18,'com_checkin'),(19,'com_scheduler'),(20,'com_fields'),(21,'com_guidedtours');
/*!40000 ALTER TABLE `jnx5e_action_logs_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_action_logs_users`
--
DROP TABLE IF EXISTS `jnx5e_action_logs_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_action_logs_users` (
`user_id` int unsigned NOT NULL,
`notify` tinyint unsigned NOT NULL,
`extensions` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`user_id`),
KEY `idx_notify` (`notify`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_action_logs_users`
--
LOCK TABLES `jnx5e_action_logs_users` WRITE;
/*!40000 ALTER TABLE `jnx5e_action_logs_users` DISABLE KEYS */;
INSERT INTO `jnx5e_action_logs_users` VALUES (44,0,'[\"com_content\"]');
/*!40000 ALTER TABLE `jnx5e_action_logs_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_assets`
--
DROP TABLE IF EXISTS `jnx5e_assets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_assets` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int NOT NULL DEFAULT '0' COMMENT 'Nested set parent.',
`lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
`rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
`level` int unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
`name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The unique name for the asset.',
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The descriptive title for the asset.',
`rules` varchar(5120) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_asset_name` (`name`),
KEY `idx_lft_rgt` (`lft`,`rgt`),
KEY `idx_parent_id` (`parent_id`)
) ENGINE=InnoDB AUTO_INCREMENT=121 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_assets`
--
LOCK TABLES `jnx5e_assets` WRITE;
/*!40000 ALTER TABLE `jnx5e_assets` DISABLE KEYS */;
INSERT INTO `jnx5e_assets` VALUES (1,0,0,223,0,'root.1','Root Asset','{\"core.login.site\":{\"6\":1,\"2\":1},\"core.login.admin\":{\"6\":1},\"core.login.api\":{\"8\":1},\"core.login.offline\":{\"6\":1},\"core.admin\":{\"8\":1},\"core.manage\":{\"7\":1},\"core.create\":{\"6\":1,\"3\":1},\"core.delete\":{\"6\":1},\"core.edit\":{\"6\":1,\"4\":1},\"core.edit.state\":{\"6\":1,\"5\":1},\"core.edit.own\":{\"6\":1,\"3\":1}}'),(2,1,1,2,1,'com_admin','com_admin','{}'),(3,1,3,6,1,'com_banners','com_banners','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(4,1,7,8,1,'com_cache','com_cache','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(5,1,9,10,1,'com_checkin','com_checkin','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(6,1,11,12,1,'com_config','com_config','{}'),(7,1,13,16,1,'com_contact','com_contact','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(8,1,17,46,1,'com_content','com_content','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.edit\":{\"4\":1},\"core.edit.state\":{\"5\":1},\"core.execute.transition\":{\"6\":1,\"5\":1}}'),(9,1,47,48,1,'com_cpanel','com_cpanel','{}'),(10,1,49,50,1,'com_installer','com_installer','{\"core.manage\":{\"7\":0},\"core.delete\":{\"7\":0},\"core.edit.state\":{\"7\":0}}'),(11,1,51,56,1,'com_languages','com_languages','{\"core.admin\":{\"7\":1}}'),(12,11,52,53,2,'com_languages.language.1','English (en-GB)','{}'),(13,1,57,58,1,'com_login','com_login','{}'),(14,1,59,60,1,'com_mails','com_mails','{}'),(15,1,61,62,1,'com_media','com_media','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1},\"core.create\":{\"3\":1},\"core.delete\":{\"5\":1}}'),(16,1,63,68,1,'com_menus','com_menus','{\"core.admin\":{\"7\":1}}'),(17,1,69,70,1,'com_messages','com_messages','{\"core.admin\":{\"7\":1},\"core.manage\":{\"7\":1}}'),(18,1,71,156,1,'com_modules','com_modules','{\"core.admin\":{\"7\":1}}'),(19,1,157,160,1,'com_newsfeeds','com_newsfeeds','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(20,1,161,162,1,'com_plugins','com_plugins','{\"core.admin\":{\"7\":1}}'),(21,1,163,164,1,'com_redirect','com_redirect','{\"core.admin\":{\"7\":1}}'),(23,1,165,166,1,'com_templates','com_templates','{\"core.admin\":{\"7\":1}}'),(24,1,171,174,1,'com_users','com_users','{\"core.admin\":{\"7\":1}}'),(26,1,175,176,1,'com_wrapper','com_wrapper','{}'),(27,8,18,27,2,'com_content.category.2','Uncategorised','{}'),(28,3,4,5,2,'com_banners.category.3','Uncategorised','{}'),(29,7,14,15,2,'com_contact.category.4','Uncategorised','{}'),(30,19,158,159,2,'com_newsfeeds.category.5','Uncategorised','{}'),(32,24,172,173,2,'com_users.category.7','Uncategorised','{}'),(33,1,177,178,1,'com_finder','com_finder','{\"core.admin\":{\"7\":1},\"core.manage\":{\"6\":1}}'),(34,1,179,180,1,'com_joomlaupdate','com_joomlaupdate','{}'),(35,1,181,182,1,'com_tags','com_tags','{}'),(36,1,183,184,1,'com_contenthistory','com_contenthistory','{}'),(37,1,185,186,1,'com_ajax','com_ajax','{}'),(38,1,187,188,1,'com_postinstall','com_postinstall','{}'),(39,18,72,73,2,'com_modules.module.1','Main Menu','{}'),(40,18,74,75,2,'com_modules.module.2','Login','{}'),(41,18,76,77,2,'com_modules.module.3','Popular Articles','{}'),(42,18,78,79,2,'com_modules.module.4','Recently Added Articles','{}'),(43,18,80,81,2,'com_modules.module.8','Toolbar','{}'),(44,18,82,83,2,'com_modules.module.9','Notifications','{}'),(45,18,84,85,2,'com_modules.module.10','Logged-in Users','{}'),(46,18,86,87,2,'com_modules.module.12','Admin Menu','{}'),(49,18,92,93,2,'com_modules.module.15','Title','{}'),(50,18,94,95,2,'com_modules.module.16','Login Form','{}'),(51,18,96,97,2,'com_modules.module.17','Breadcrumbs','{}'),(52,18,98,99,2,'com_modules.module.79','Multilanguage status','{}'),(53,18,102,103,2,'com_modules.module.86','Joomla Version','{}'),(54,16,64,65,2,'com_menus.menu.1','Main Menu','{}'),(55,18,106,107,2,'com_modules.module.87','Sample Data','{}'),(56,8,28,45,2,'com_content.workflow.1','COM_WORKFLOW_BASIC_WORKFLOW','{}'),(57,56,29,30,3,'com_content.stage.1','COM_WORKFLOW_BASIC_STAGE','{}'),(58,56,31,32,3,'com_content.transition.1','UNPUBLISH','{}'),(59,56,33,34,3,'com_content.transition.2','PUBLISH','{}'),(60,56,35,36,3,'com_content.transition.3','TRASH','{}'),(61,56,37,38,3,'com_content.transition.4','ARCHIVE','{}'),(62,56,39,40,3,'com_content.transition.5','FEATURE','{}'),(63,56,41,42,3,'com_content.transition.6','UNFEATURE','{}'),(64,56,43,44,3,'com_content.transition.7','PUBLISH_AND_FEATURE','{}'),(65,1,167,168,1,'com_privacy','com_privacy','{}'),(66,1,169,170,1,'com_actionlogs','com_actionlogs','{}'),(67,18,88,89,2,'com_modules.module.88','Latest Actions','{}'),(68,18,90,91,2,'com_modules.module.89','Privacy Dashboard','{}'),(70,18,100,101,2,'com_modules.module.103','Site','{}'),(71,18,104,105,2,'com_modules.module.104','System','{}'),(72,18,108,109,2,'com_modules.module.91','System Dashboard','{}'),(73,18,110,111,2,'com_modules.module.92','Content Dashboard','{}'),(74,18,112,113,2,'com_modules.module.93','Menus Dashboard','{}'),(75,18,114,115,2,'com_modules.module.94','Components Dashboard','{}'),(76,18,116,117,2,'com_modules.module.95','Users Dashboard','{}'),(77,18,118,119,2,'com_modules.module.99','Frontend Link','{}'),(78,18,120,121,2,'com_modules.module.100','Messages','{}'),(79,18,122,123,2,'com_modules.module.101','Post Install Messages','{}'),(80,18,124,125,2,'com_modules.module.102','User Status','{}'),(82,18,126,127,2,'com_modules.module.105','3rd Party','{}'),(83,18,128,129,2,'com_modules.module.106','Help Dashboard','{}'),(84,18,130,131,2,'com_modules.module.107','Privacy Requests','{}'),(85,18,132,133,2,'com_modules.module.108','Privacy Status','{}'),(86,18,134,135,2,'com_modules.module.96','Popular Articles','{}'),(87,18,136,137,2,'com_modules.module.97','Recently Added Articles','{}'),(88,18,138,139,2,'com_modules.module.98','Logged-in Users','{}'),(89,18,140,141,2,'com_modules.module.90','Login Support','{}'),(90,1,189,190,1,'com_scheduler','com_scheduler','{}'),(91,1,191,192,1,'com_associations','com_associations','{}'),(92,1,193,194,1,'com_categories','com_categories','{}'),(93,1,195,196,1,'com_fields','com_fields','{}'),(94,1,197,198,1,'com_workflow','com_workflow','{}'),(95,1,199,200,1,'com_guidedtours','com_guidedtours','{}'),(96,18,142,143,2,'com_modules.module.109','Guided Tours','{}'),(97,1,201,202,1,'com_scheduler.task.1','com_scheduler.task.1','{}'),(98,1,203,204,1,'com_scheduler.task.2','com_scheduler.task.2','{}'),(99,1,205,206,1,'com_scheduler.task.3','com_scheduler.task.3','{}'),(100,11,54,55,2,'com_languages.language.2','Spanish (es-ES)','{}'),(101,18,144,145,2,'com_modules.module.110','Gantry 5 Particle','{}'),(102,1,207,208,1,'com_gantry5','com_gantry5','{}'),(103,1,209,212,1,'com_djimageslider','com_djimageslider','{}'),(104,18,146,147,2,'com_modules.module.111','DJ-ImageSlider','{}'),(105,103,210,211,2,'com_djimageslider.category.8','slider','{}'),(106,1,213,216,1,'com_dpcalendar','com_dpcalendar','{}'),(107,106,214,215,2,'com_dpcalendar.category.9','Uncategorised','{}'),(108,18,148,149,2,'com_modules.module.112','DPCalendar Mini','{}'),(109,1,217,218,1,'com_imageeffectck','com_imageeffectck','{}'),(110,27,19,20,3,'com_content.article.1','Cronograma','{}'),(111,1,219,220,1,'com_phocadownload','com_phocadownload','{}'),(112,27,21,22,3,'com_content.article.2','Guía para ponencias','{}'),(113,18,150,151,2,'com_modules.module.113','Ol Testimonials','{}'),(114,18,152,153,2,'com_modules.module.114','Smart Slider 3 Module','{}'),(115,1,221,222,1,'com_smartslider3','Smart Slider 3','{}'),(116,16,66,67,2,'com_menus.menu.2','menu-vertical','{}'),(117,18,154,155,2,'com_modules.module.115','buscador','{}'),(119,27,23,24,3,'com_content.article.3','Memorias','{}'),(120,27,25,26,3,'com_content.article.4','Ejes temáticos','{}');
/*!40000 ALTER TABLE `jnx5e_assets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_associations`
--
DROP TABLE IF EXISTS `jnx5e_associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_associations` (
`id` int NOT NULL COMMENT 'A reference to the associated item.',
`context` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The context of the associated item.',
`key` char(32) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.',
PRIMARY KEY (`context`,`id`),
KEY `idx_key` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_associations`
--
LOCK TABLES `jnx5e_associations` WRITE;
/*!40000 ALTER TABLE `jnx5e_associations` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_banner_clients`
--
DROP TABLE IF EXISTS `jnx5e_banner_clients`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_banner_clients` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`contact` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extrainfo` text COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`metakey` text COLLATE utf8mb4_unicode_ci,
`own_prefix` tinyint NOT NULL DEFAULT '0',
`metakey_prefix` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`purchase_type` tinyint NOT NULL DEFAULT '-1',
`track_clicks` tinyint NOT NULL DEFAULT '-1',
`track_impressions` tinyint NOT NULL DEFAULT '-1',
PRIMARY KEY (`id`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_metakey_prefix` (`metakey_prefix`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_banner_clients`
--
LOCK TABLES `jnx5e_banner_clients` WRITE;
/*!40000 ALTER TABLE `jnx5e_banner_clients` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_banner_clients` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_banner_tracks`
--
DROP TABLE IF EXISTS `jnx5e_banner_tracks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_banner_tracks` (
`track_date` datetime NOT NULL,
`track_type` int unsigned NOT NULL,
`banner_id` int unsigned NOT NULL,
`count` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`track_date`,`track_type`,`banner_id`),
KEY `idx_track_date` (`track_date`),
KEY `idx_track_type` (`track_type`),
KEY `idx_banner_id` (`banner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_banner_tracks`
--
LOCK TABLES `jnx5e_banner_tracks` WRITE;
/*!40000 ALTER TABLE `jnx5e_banner_tracks` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_banner_tracks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_banners`
--
DROP TABLE IF EXISTS `jnx5e_banners`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_banners` (
`id` int NOT NULL AUTO_INCREMENT,
`cid` int NOT NULL DEFAULT '0',
`type` int NOT NULL DEFAULT '0',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`imptotal` int NOT NULL DEFAULT '0',
`impmade` int NOT NULL DEFAULT '0',
`clicks` int NOT NULL DEFAULT '0',
`clickurl` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` tinyint NOT NULL DEFAULT '0',
`catid` int unsigned NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`custombannercode` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL,
`sticky` tinyint unsigned NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8mb4_unicode_ci,
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`own_prefix` tinyint NOT NULL DEFAULT '0',
`metakey_prefix` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`purchase_type` tinyint NOT NULL DEFAULT '-1',
`track_clicks` tinyint NOT NULL DEFAULT '-1',
`track_impressions` tinyint NOT NULL DEFAULT '-1',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`reset` datetime DEFAULT NULL,
`created` datetime NOT NULL,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`version` int unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `idx_state` (`state`),
KEY `idx_own_prefix` (`own_prefix`),
KEY `idx_metakey_prefix` (`metakey_prefix`(100)),
KEY `idx_banner_catid` (`catid`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_banners`
--
LOCK TABLES `jnx5e_banners` WRITE;
/*!40000 ALTER TABLE `jnx5e_banners` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_banners` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_categories`
--
DROP TABLE IF EXISTS `jnx5e_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_categories` (
`id` int NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
`parent_id` int unsigned NOT NULL DEFAULT '0',
`lft` int NOT NULL DEFAULT '0',
`rgt` int NOT NULL DEFAULT '0',
`level` int unsigned NOT NULL DEFAULT '0',
`path` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` mediumtext COLLATE utf8mb4_unicode_ci,
`published` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`access` int unsigned NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci,
`metadesc` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'The meta description for the page.',
`metakey` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'The keywords for the page.',
`metadata` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
`created_user_id` int unsigned NOT NULL DEFAULT '0',
`created_time` datetime NOT NULL,
`modified_user_id` int unsigned NOT NULL DEFAULT '0',
`modified_time` datetime NOT NULL,
`hits` int unsigned NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`version` int unsigned NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `cat_idx` (`extension`,`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_path` (`path`(100)),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`(100)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_categories`
--
LOCK TABLES `jnx5e_categories` WRITE;
/*!40000 ALTER TABLE `jnx5e_categories` DISABLE KEYS */;
INSERT INTO `jnx5e_categories` VALUES (1,0,0,0,15,0,'','system','ROOT','root','','',1,NULL,NULL,1,'{}','','','{}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(2,27,1,1,2,1,'uncategorised','com_content','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\",\"workflow_id\":\"use_default\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(3,28,1,3,4,1,'uncategorised','com_banners','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(4,29,1,5,6,1,'uncategorised','com_contact','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(5,30,1,7,8,1,'uncategorised','com_newsfeeds','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(7,32,1,9,10,1,'uncategorised','com_users','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',0,'*',1),(8,105,1,11,12,1,'slider','com_djimageslider','slider','slider','','',1,NULL,NULL,1,'{\"category_layout\":\"\",\"image\":\"\",\"image_alt\":\"\"}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 15:06:22',44,'2024-10-17 15:06:22',0,'*',1),(9,107,1,13,14,1,'uncategorised','com_dpcalendar','Uncategorised','uncategorised','','',1,NULL,NULL,1,'{\"color\":\"3366CC\",\"etag\":4}','','','{\"author\":\"\",\"robots\":\"\"}',44,'2024-10-17 15:27:54',44,'2024-10-17 15:27:54',0,'*',1);
/*!40000 ALTER TABLE `jnx5e_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_contact_details`
--
DROP TABLE IF EXISTS `jnx5e_contact_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_contact_details` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`con_position` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` text COLLATE utf8mb4_unicode_ci,
`suburb` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`postcode` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`fax` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`misc` mediumtext COLLATE utf8mb4_unicode_ci,
`image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_to` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`default_con` tinyint unsigned NOT NULL DEFAULT '0',
`published` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` int NOT NULL DEFAULT '0',
`catid` int NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '0',
`mobile` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`webpage` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sortname1` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sortname2` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`sortname3` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`language` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8mb4_unicode_ci,
`metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
`metadata` text COLLATE utf8mb4_unicode_ci NOT NULL,
`featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if contact is featured.',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`version` int unsigned NOT NULL DEFAULT '1',
`hits` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_contact_details`
--
LOCK TABLES `jnx5e_contact_details` WRITE;
/*!40000 ALTER TABLE `jnx5e_contact_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_contact_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_content`
--
DROP TABLE IF EXISTS `jnx5e_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_content` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`introtext` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`fulltext` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`catid` int unsigned NOT NULL DEFAULT '0',
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`images` text COLLATE utf8mb4_unicode_ci NOT NULL,
`urls` text COLLATE utf8mb4_unicode_ci NOT NULL,
`attribs` varchar(5120) COLLATE utf8mb4_unicode_ci NOT NULL,
`version` int unsigned NOT NULL DEFAULT '1',
`ordering` int NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8mb4_unicode_ci,
`metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
`access` int unsigned NOT NULL DEFAULT '0',
`hits` int unsigned NOT NULL DEFAULT '0',
`metadata` text COLLATE utf8mb4_unicode_ci NOT NULL,
`featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if article is featured.',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The language code for the article.',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_alias` (`alias`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_content`
--
LOCK TABLES `jnx5e_content` WRITE;
/*!40000 ALTER TABLE `jnx5e_content` DISABLE KEYS */;
INSERT INTO `jnx5e_content` VALUES (1,110,'Cronograma','cronograma','<p style=\"text-align: justify;\">Este cronograma reúne las fechas más importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepción de trabajos hasta el desarrollo del evento.</p>','',1,2,'2026-04-07 13:56:30',44,'','2026-04-07 22:23:43',44,NULL,NULL,'2026-04-07 13:56:30',NULL,'{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',18,3,'','',1,166,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'*',''),(2,112,'Guía para ponencias','guia-para-ponencias','<p style=\"text-align: justify;\">El Congreso Internacional de Ciencias Económicas convoca a investigadores, académicos y estudiantes a presentar sus trabajos originales en diversas áreas de la economía y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigación, fomentando la participación activa y la difusión de resultados relevantes para la comunidad científica.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"📌<strong> Bases de Participación</strong>\" class=\"blue\"}</p>\r\n<p style=\"text-align: justify;\">La ponencia debe ser inédita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento teórico o práctico en las Ciencias Económicas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.</p>\r\n<p style=\"text-align: justify;\">La autoría podrá ser individual o en coautoría (máximo tres integrantes si incluye estudiantes). Todas las ponencias serán sometidas a evaluación bajo la modalidad de doble ciego, y las decisiones del comité evaluador serán inapelables.</p>\r\n<p style=\"text-align: justify;\">En caso de ser aceptada, los autores deberán firmar la declaratoria de originalidad y cesión de derechos del trabajo.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"🎤 <strong>Formas de Participación</strong>\" class=\"red\"}</p>\r\n<p style=\"text-align: justify;\"><strong>Ponencia oral:</strong> presentación académica basada en una investigación terminada o en curso.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"<strong>📝 Requisitos para la Evaluación del Resumen</strong>\" class=\"blue\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li>Título conciso (máximo 15 palabras, sin abreviaturas).</li>\r\n<li>Eje temático al que se adscribe la ponencia.</li>\r\n<li>Autores: nombre completo, afiliación institucional, ORCID, CvLAC y correo institucional.</li>\r\n<li>Resumen entre 200 y 500 palabras (incluye problemática, objetivos, metodología, resultados y conclusiones).</li>\r\n<li>Cinco palabras clave en español e inglés.</li>\r\n<li>Códigos JEL.</li>\r\n<li>Alcance esperado.</li>\r\n<li>Formato: letra Times New Roman, tamaño 12, interlineado doble.</li>\r\n<li>Normas de citación: APA (última versión).</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">Los resúmenes aceptados serán incluidos en las Memorias del Congreso Internacional de Ciencias Económicas (ISSN electrónico No. 2357-4631).</p>\r\n<p style=\"text-align: justify;\">{slider title=\"📊 <strong>Evaluación y Aceptación</strong>\" class=\"red\"}</p>\r\n<p style=\"text-align: justify;\">Todas las ponencias serán evaluadas por el Comité Científico.<br>Los conceptos posibles serán:</p>\r\n<ul style=\"text-align: justify;\">\r\n<li><strong>Aprobada para presentación oral</strong></li>\r\n<li><strong>Rechazada</strong> (se devolverá a sus autores)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">{slider title=\"📑 <strong>Requisitos de Contenido de la presentación de Ponencias</strong>\" class=\"blue\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li><strong>Página de título:</strong> título de la investigación, datos completos de los autores (nombre, filiación institucional, grupo de investigación).</li>\r\n<li><strong>Introducción:</strong> planteamiento del problema, objetivos e hipótesis.</li>\r\n<li><strong>Contexto teórico:</strong> antecedentes, justificación y problemática.</li>\r\n<li><strong>Materiales y métodos: </strong>diseño de investigación, población, muestra, instrumentos.</li>\r\n<li><strong>Resultados y discusión:</strong> análisis, tablas y figuras (máx. dos por página).</li>\r\n<li><strong>Conclusiones:</strong> vinculadas a los objetivos.</li>\r\n<li><strong>Referencias: </strong>mínimo 15 fuentes científicas, normas APA (última edición).</li>\r\n</ul>\r\n<p><em>Las ponencias serán presentadas de manera presencial durante las fechas del congreso. </em></p>\r\n<p><em>La programación de las presentaciones será comunicada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación.</em></p>\r\n<p style=\"text-align: justify;\">{slider title=\"📢 <strong>Presentación</strong>\" class=\"red\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li>Las ponencias serán presentadas de manera presencial durante las fechas del congreso.</li>\r\n<li>La programación será enviada al correo institucional del autor de correspondencia.</li>\r\n<li>Al finalizar, se otorgarán constancias de participación.</li>\r\n</ul>\r\n<p>{slider title=\"📚 <strong>Publicación</strong>\" class=\"blue\"}</p>\r\n<p style=\"text-align: justify;\">Los trabajos aceptados y socializados serán publicados en las <strong>Memorias del Congreso Internacional de Ciencias Económicas</strong>, con ISSN electrónico No. 2357-4631.</p>\r\n<p> </p>','',1,2,'2026-04-07 13:56:30',44,'','2026-04-07 22:26:11',44,NULL,NULL,'2026-04-07 13:56:30',NULL,'{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',24,2,'','',1,88,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'*',''),(3,119,'Memorias','memorias','<p style=\"text-align: justify;\">Bienvenidos al repositorio histórico del <strong>Congreso Internacional de Ciencias Económicas</strong>. Rumbo a nuestra <strong>novena edición</strong>, te invitamos a explorar el conocimiento compartido en años anteriores. Haz clic en las imágenes para acceder a los documentos PDF de cada memoria.</p>\r\n<div class=\"fp-features\">\r\n<div class=\"g-grid\">\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/01CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/01CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/02CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/02CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/03CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/03CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/04CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/04CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/05CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/05CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/07CongresoFceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/07CongresoFceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>','',1,2,'2026-04-07 13:56:30',44,'','2026-04-07 22:23:31',44,NULL,NULL,'2026-04-07 13:56:30',NULL,'{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',16,1,'','',1,85,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'*',''),(4,120,'Ejes temáticos','ejes-tematicos','<p style=\"text-align: justify;\">El <strong>Congreso Internacional de Ciencias Económicas</strong> presenta sus <strong>ejes temáticos</strong> como espacios de reflexión, análisis e innovación frente a los retos del entorno global. Cada eje invita a investigadores, académicos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo económico y social sostenible.</p>\r\n<p style=\"text-align: justify;\">En esta edición, los ejes temáticos son:</p>','',1,2,'2026-04-07 15:13:38',44,'','2026-04-07 15:56:03',44,NULL,NULL,'2026-04-07 15:13:38',NULL,'{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}','{\"urla\":\"\",\"urlatext\":\"\",\"targeta\":\"\",\"urlb\":\"\",\"urlbtext\":\"\",\"targetb\":\"\",\"urlc\":\"\",\"urlctext\":\"\",\"targetc\":\"\"}','{\"article_layout\":\"\",\"show_title\":\"\",\"link_titles\":\"\",\"show_tags\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"alternative_readmore\":\"\",\"article_page_title\":\"\",\"show_publishing_options\":\"\",\"show_article_options\":\"\",\"show_urls_images_backend\":\"\",\"show_urls_images_frontend\":\"\"}',5,0,'','',1,78,'{\"robots\":\"\",\"author\":\"\",\"rights\":\"\"}',0,'*','');
/*!40000 ALTER TABLE `jnx5e_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_content_frontpage`
--
DROP TABLE IF EXISTS `jnx5e_content_frontpage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_content_frontpage` (
`content_id` int NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`featured_up` datetime DEFAULT NULL,
`featured_down` datetime DEFAULT NULL,
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_content_frontpage`
--
LOCK TABLES `jnx5e_content_frontpage` WRITE;
/*!40000 ALTER TABLE `jnx5e_content_frontpage` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_content_frontpage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_content_rating`
--
DROP TABLE IF EXISTS `jnx5e_content_rating`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_content_rating` (
`content_id` int NOT NULL DEFAULT '0',
`rating_sum` int unsigned NOT NULL DEFAULT '0',
`rating_count` int unsigned NOT NULL DEFAULT '0',
`lastip` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_content_rating`
--
LOCK TABLES `jnx5e_content_rating` WRITE;
/*!40000 ALTER TABLE `jnx5e_content_rating` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_content_rating` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_content_types`
--
DROP TABLE IF EXISTS `jnx5e_content_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_content_types` (
`type_id` int unsigned NOT NULL AUTO_INCREMENT,
`type_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type_alias` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`table` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`rules` text COLLATE utf8mb4_unicode_ci NOT NULL,
`field_mappings` text COLLATE utf8mb4_unicode_ci NOT NULL,
`router` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`content_history_options` varchar(5120) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'JSON string for com_contenthistory options',
PRIMARY KEY (`type_id`),
KEY `idx_alias` (`type_alias`(100))
) ENGINE=InnoDB AUTO_INCREMENT=10003 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_content_types`
--
LOCK TABLES `jnx5e_content_types` WRITE;
/*!40000 ALTER TABLE `jnx5e_content_types` DISABLE KEYS */;
INSERT INTO `jnx5e_content_types` VALUES (1,'Article','com_content.article','{\"special\":{\"dbtable\":\"#__content\",\"key\":\"id\",\"type\":\"ArticleTable\",\"prefix\":\"Joomla\\\\Component\\\\Content\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\": {\"core_content_item_id\": \"id\", \"core_title\": \"title\", \"core_state\": \"state\", \"core_alias\": \"alias\", \"core_created_time\": \"created\", \"core_modified_time\": \"modified\", \"core_body\": \"introtext\", \"core_hits\": \"hits\", \"core_publish_up\": \"publish_up\", \"core_publish_down\": \"publish_down\", \"core_access\": \"access\", \"core_params\": \"attribs\", \"core_featured\": \"featured\", \"core_metadata\": \"metadata\", \"core_language\": \"language\", \"core_images\": \"images\", \"core_urls\": \"urls\", \"core_version\": \"version\", \"core_ordering\": \"ordering\", \"core_metakey\": \"metakey\", \"core_metadesc\": \"metadesc\", \"core_catid\": \"catid\", \"asset_id\": \"asset_id\", \"note\": \"note\", \"core_created_user_id\": \"created_by\", \"core_created_by_alias\": \"created_by_alias\"}, \"special\": {\"fulltext\": \"fulltext\"}}','ContentHelperRoute::getArticleRoute','{\"formFile\":\"administrator\\/components\\/com_content\\/forms\\/article.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"ordering\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(2,'Contact','com_contact.contact','{\"special\":{\"dbtable\":\"#__contact_details\",\"key\":\"id\",\"type\":\"ContactTable\",\"prefix\":\"Joomla\\\\Component\\\\Contact\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"address\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"image\", \"core_urls\":\"webpage\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"asset_id\":\"null\"}, \"special\":{\"con_position\":\"con_position\",\"suburb\":\"suburb\",\"state\":\"state\",\"country\":\"country\",\"postcode\":\"postcode\",\"telephone\":\"telephone\",\"fax\":\"fax\",\"misc\":\"misc\",\"email_to\":\"email_to\",\"default_con\":\"default_con\",\"user_id\":\"user_id\",\"mobile\":\"mobile\",\"sortname1\":\"sortname1\",\"sortname2\":\"sortname2\",\"sortname3\":\"sortname3\"}}','ContactHelperRoute::getContactRoute','{\"formFile\":\"administrator\\/components\\/com_contact\\/forms\\/contact.xml\",\"hideFields\":[\"default_con\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"], \"displayLookup\":[ {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ] }'),(3,'Newsfeed','com_newsfeeds.newsfeed','{\"special\":{\"dbtable\":\"#__newsfeeds\",\"key\":\"id\",\"type\":\"NewsfeedTable\",\"prefix\":\"Joomla\\\\Component\\\\Newsfeeds\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"asset_id\":\"null\"}, \"special\":{\"numarticles\":\"numarticles\",\"cache_time\":\"cache_time\",\"rtl\":\"rtl\"}}','NewsfeedsHelperRoute::getNewsfeedRoute','{\"formFile\":\"administrator\\/components\\/com_newsfeeds\\/forms\\/newsfeed.xml\",\"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\", \"ordering\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(4,'User','com_users.user','{\"special\":{\"dbtable\":\"#__users\",\"key\":\"id\",\"type\":\"User\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"null\",\"core_alias\":\"username\",\"core_created_time\":\"registerDate\",\"core_modified_time\":\"lastvisitDate\",\"core_body\":\"null\", \"core_hits\":\"null\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"access\":\"null\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"null\", \"core_language\":\"null\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"null\", \"core_ordering\":\"null\", \"core_metakey\":\"null\", \"core_metadesc\":\"null\", \"core_catid\":\"null\", \"asset_id\":\"null\"}, \"special\":{}}','',''),(5,'Article Category','com_content.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"CategoryTable\",\"prefix\":\"Joomla\\\\Component\\\\Categories\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContentHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(6,'Contact Category','com_contact.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"CategoryTable\",\"prefix\":\"Joomla\\\\Component\\\\Categories\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','ContactHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(7,'Newsfeeds Category','com_newsfeeds.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"CategoryTable\",\"prefix\":\"Joomla\\\\Component\\\\Categories\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','NewsfeedsHelperRoute::getCategoryRoute','{\"formFile\":\"administrator\\/components\\/com_categories\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(8,'Tag','com_tags.tag','{\"special\":{\"dbtable\":\"#__tags\",\"key\":\"tag_id\",\"type\":\"TagTable\",\"prefix\":\"Joomla\\\\Component\\\\Tags\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"urls\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"null\", \"asset_id\":\"null\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\"}}','TagsHelperRoute::getTagRoute','{\"formFile\":\"administrator\\/components\\/com_tags\\/forms\\/tag.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"lft\", \"rgt\", \"level\", \"path\", \"urls\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"],\"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(9,'Banner','com_banners.banner','{\"special\":{\"dbtable\":\"#__banners\",\"key\":\"id\",\"type\":\"BannerTable\",\"prefix\":\"Joomla\\\\Component\\\\Banners\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"name\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"null\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"link\", \"core_version\":\"version\", \"core_ordering\":\"ordering\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\", \"asset_id\":\"null\"}, \"special\":{\"imptotal\":\"imptotal\", \"impmade\":\"impmade\", \"clicks\":\"clicks\", \"clickurl\":\"clickurl\", \"custombannercode\":\"custombannercode\", \"cid\":\"cid\", \"purchase_type\":\"purchase_type\", \"track_impressions\":\"track_impressions\", \"track_clicks\":\"track_clicks\"}}','','{\"formFile\":\"administrator\\/components\\/com_banners\\/forms\\/banner.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\", \"reset\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"version\", \"imptotal\", \"impmade\", \"reset\"], \"convertToInt\":[\"publish_up\", \"publish_down\", \"ordering\"], \"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"cid\",\"targetTable\":\"#__banner_clients\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(10,'Banners Category','com_banners.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"CategoryTable\",\"prefix\":\"Joomla\\\\Component\\\\Categories\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/forms\\/category.xml\", \"hideFields\":[\"asset_id\",\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(11,'Banner Client','com_banners.client','{\"special\":{\"dbtable\":\"#__banner_clients\",\"key\":\"id\",\"type\":\"ClientTable\",\"prefix\":\"Joomla\\\\Component\\\\Banners\\\\Administrator\\\\Table\\\\\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_banners\\/forms\\/client.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\"], \"ignoreChanges\":[\"checked_out\", \"checked_out_time\"], \"convertToInt\":[], \"displayLookup\":[]}'),(12,'User Notes','com_users.note','{\"special\":{\"dbtable\":\"#__user_notes\",\"key\":\"id\",\"type\":\"NoteTable\",\"prefix\":\"Joomla\\\\Component\\\\Users\\\\Administrator\\\\Table\\\\\"}}','','','','{\"formFile\":\"administrator\\/components\\/com_users\\/forms\\/note.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\", \"publish_up\", \"publish_down\"],\"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\"], \"convertToInt\":[\"publish_up\", \"publish_down\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}, {\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}]}'),(13,'User Notes Category','com_users.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"CategoryTable\",\"prefix\":\"Joomla\\\\Component\\\\Categories\\\\Administrator\\\\Table\\\\\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"Joomla\\\\CMS\\\\Table\\\\\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\", \"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\", \"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\", \"asset_id\":\"asset_id\"}, \"special\":{\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','','{\"formFile\":\"administrator\\/components\\/com_categories\\/forms\\/category.xml\", \"hideFields\":[\"checked_out\",\"checked_out_time\",\"version\",\"lft\",\"rgt\",\"level\",\"path\",\"extension\"], \"ignoreChanges\":[\"modified_user_id\", \"modified_time\", \"checked_out\", \"checked_out_time\", \"version\", \"hits\", \"path\"], \"convertToInt\":[\"publish_up\", \"publish_down\"], \"displayLookup\":[{\"sourceColumn\":\"created_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"}, {\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_user_id\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"parent_id\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"}]}'),(10000,'Event','com_dpcalendar.event','{\"special\":{\"dbtable\":\"#__dpcalendar_events\",\"key\":\"id\",\"type\":\"Event\",\"prefix\":\"Administrator\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Event\",\"prefix\":\"Administrator\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\", \"core_hits\":\"hits\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\",\"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"images\", \"core_urls\":\"url\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"catid\",\"core_xreference\":\"xreference\", \"asset_id\":\"asset_id\"}, \"special\":{}}','DPCalendarHelperRoute::getEventRoute','{\"formFile\":\"administrator\\/components\\/com_dpcalendar\\/models\\/forms\\/event.xml\", \"hideFields\":[\"asset_id\",\"checked_out\", \"date\",\"checked_out_time\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\"],\"displayLookup\":[{\"sourceColumn\":\"catid\",\"targetTable\":\"#__categories\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}'),(10001,'DPCalendar Category','com_dpcalendar.category','{\"special\":{\"dbtable\":\"#__categories\",\"key\":\"id\",\"type\":\"Category\",\"prefix\":\"JTable\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Corecontent\",\"prefix\":\"JTable\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"published\",\"core_alias\":\"alias\",\"core_created_time\":\"created_time\",\"core_modified_time\":\"modified_time\",\"core_body\":\"description\",\"core_hits\":\"hits\",\"core_publish_up\":\"null\",\"core_publish_down\":\"null\",\"core_access\":\"access\", \"core_params\":\"params\",\"core_featured\":\"null\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_images\":\"null\", \"core_urls\":\"null\",\"core_version\":\"version\", \"core_ordering\":\"null\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\", \"core_catid\":\"parent_id\",\"core_xreference\":\"null\", \"asset_id\":\"asset_id\"}, \"special\": {\"parent_id\":\"parent_id\",\"lft\":\"lft\",\"rgt\":\"rgt\",\"level\":\"level\",\"path\":\"path\",\"extension\":\"extension\",\"note\":\"note\"}}','DPCalendarHelperRoute::getCalendarRoute',''),(10002,'Location','com_dpcalendar.location','{\"special\":{\"dbtable\":\"#__dpcalendar_locations\",\"key\":\"id\",\"type\":\"Location\",\"prefix\":\"Administrator\",\"config\":\"array()\"},\"common\":{\"dbtable\":\"#__ucm_content\",\"key\":\"ucm_id\",\"type\":\"Location\",\"prefix\":\"Administrator\",\"config\":\"array()\"}}','','{\"common\":{\"core_content_item_id\":\"id\",\"core_title\":\"title\",\"core_state\":\"state\",\"core_alias\":\"alias\",\"core_created_time\":\"created\",\"core_modified_time\":\"modified\",\"core_body\":\"description\",\"core_publish_up\":\"publish_up\",\"core_publish_down\":\"publish_down\",\"core_access\":\"access\", \"core_params\":\"attribs\",\"core_featured\":\"featured\", \"core_metadata\":\"metadata\", \"core_language\":\"language\", \"core_metakey\":\"metakey\", \"core_metadesc\":\"metadesc\"}, \"special\":{}}','DPCalendarHelperRoute::getLocationRoute','{\"formFile\":\"administrator\\/components\\/com_dpcalendar\\/models\\/forms\\/location.xml\", \"hideFields\":[\"checked_out\"],\"ignoreChanges\":[\"modified_by\", \"modified\", \"checked_out\", \"checked_out_time\", \"hits\"],\"convertToInt\":[\"publish_up\", \"publish_down\", \"featured\"],\"displayLookup\":[{\"sourceColumn\":\"created_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"},{\"sourceColumn\":\"access\",\"targetTable\":\"#__viewlevels\",\"targetColumn\":\"id\",\"displayColumn\":\"title\"},{\"sourceColumn\":\"modified_by\",\"targetTable\":\"#__users\",\"targetColumn\":\"id\",\"displayColumn\":\"name\"} ]}');
/*!40000 ALTER TABLE `jnx5e_content_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_contentitem_tag_map`
--
DROP TABLE IF EXISTS `jnx5e_contentitem_tag_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_contentitem_tag_map` (
`type_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`core_content_id` int unsigned NOT NULL COMMENT 'PK from the core content table',
`content_item_id` int NOT NULL COMMENT 'PK from the content type table',
`tag_id` int unsigned NOT NULL COMMENT 'PK from the tag table',
`tag_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Date of most recent save for this tag-item',
`type_id` mediumint NOT NULL COMMENT 'PK from the content_type table',
UNIQUE KEY `uc_ItemnameTagid` (`type_id`,`content_item_id`,`tag_id`),
KEY `idx_tag_type` (`tag_id`,`type_id`),
KEY `idx_date_id` (`tag_date`,`tag_id`),
KEY `idx_core_content_id` (`core_content_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Maps items from content tables to tags';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_contentitem_tag_map`
--
LOCK TABLES `jnx5e_contentitem_tag_map` WRITE;
/*!40000 ALTER TABLE `jnx5e_contentitem_tag_map` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_contentitem_tag_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_djimageslider`
--
DROP TABLE IF EXISTS `jnx5e_djimageslider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_djimageslider` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`catid` int unsigned NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL,
`alias` varchar(255) NOT NULL DEFAULT '',
`image` varchar(255) NOT NULL,
`description` text,
`published` tinyint(1) NOT NULL DEFAULT '0',
`publish_up` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`ordering` int NOT NULL DEFAULT '0',
`params` text,
PRIMARY KEY (`id`),
KEY `catid` (`catid`,`published`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_djimageslider`
--
LOCK TABLES `jnx5e_djimageslider` WRITE;
/*!40000 ALTER TABLE `jnx5e_djimageslider` DISABLE KEYS */;
INSERT INTO `jnx5e_djimageslider` VALUES (1,8,'prueba','prueba','images/slider/baner-congresof.png#joomlaImage://local-images/slider/baner-congresof.png?width=893&height=570','',1,'2024-10-17 15:06:52','0000-00-00 00:00:00',44,'2026-04-08 19:41:37',0,'{\"link_type\":\"\",\"link_menu\":\"101\",\"link_url\":\"\",\"link_article\":\"\",\"link_target\":\"\",\"link_rel\":\"\",\"alt_attr\":\"\",\"title_attr\":\"\"}'),(2,8,'congreso 1','congreso-1','images/slider/congreso1.jpeg#joomlaImage://local-images/slider/congreso1.jpeg?width=1600&height=900','',1,'2026-04-08 19:41:09','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"\",\"link_menu\":\"101\",\"link_url\":\"\",\"link_article\":\"\",\"link_target\":\"\",\"link_rel\":\"\",\"alt_attr\":\"\",\"title_attr\":\"\"}'),(3,8,'congreso 2','congreso-2','images/slider/congreso2.jpeg#joomlaImage://local-images/slider/congreso2.jpeg?width=1600&height=900','',1,'2026-04-08 19:41:34','0000-00-00 00:00:00',0,'0000-00-00 00:00:00',0,'{\"link_type\":\"\",\"link_menu\":\"101\",\"link_url\":\"\",\"link_article\":\"\",\"link_target\":\"\",\"link_rel\":\"\",\"alt_attr\":\"\",\"title_attr\":\"\"}');
/*!40000 ALTER TABLE `jnx5e_djimageslider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_bookings`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_bookings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_bookings` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int NOT NULL DEFAULT '0',
`uid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`province` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`latitude` decimal(12,8) DEFAULT NULL,
`longitude` decimal(12,8) DEFAULT NULL,
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`book_date` datetime DEFAULT NULL,
`options` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`transaction_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`currency` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`invoice` tinyint NOT NULL DEFAULT '0',
`tax` decimal(10,2) NOT NULL DEFAULT '0.00',
`tax_rate` decimal(10,5) DEFAULT NULL,
`coupon_id` int DEFAULT NULL,
`coupon_rate` decimal(10,2) NOT NULL DEFAULT '0.00',
`events_discount` decimal(10,5) DEFAULT NULL,
`tickets_discount` decimal(10,5) DEFAULT NULL,
`payment_provider` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`net_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`tax_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`gross_amount` decimal(10,2) NOT NULL DEFAULT '0.00',
`payment_fee` decimal(10,2) NOT NULL DEFAULT '0.00',
`tax_percent` float DEFAULT NULL,
`txn_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`txn_currency` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payer_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payer_email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`raw_data` text COLLATE utf8mb4_unicode_ci,
`token` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`payment_provider_fee` decimal(10,5) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `user_id` (`user_id`),
KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_bookings`
--
LOCK TABLES `jnx5e_dpcalendar_bookings` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_bookings` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_bookings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_calendarchanges`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_calendarchanges`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_calendarchanges` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(200) NOT NULL,
`synctoken` int unsigned NOT NULL,
`calendarid` int unsigned NOT NULL,
`operation` tinyint NOT NULL,
PRIMARY KEY (`id`),
KEY `calendarid_synctoken` (`calendarid`,`synctoken`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_calendarchanges`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_calendarchanges` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarchanges` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarchanges` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_calendarinstances`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_calendarinstances`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_calendarinstances` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`calendarid` int unsigned NOT NULL,
`principaluri` varbinary(100) DEFAULT NULL,
`access` tinyint NOT NULL DEFAULT '1' COMMENT '1 = owner, 2 = read, 3 = readwrite',
`displayname` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`uri` varbinary(200) DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`calendarorder` int unsigned NOT NULL DEFAULT '0',
`calendarcolor` varbinary(10) DEFAULT NULL,
`timezone` text COLLATE utf8mb4_unicode_ci,
`transparent` tinyint NOT NULL DEFAULT '0',
`share_href` varbinary(100) DEFAULT NULL,
`share_displayname` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`share_invitestatus` tinyint NOT NULL DEFAULT '2' COMMENT '1 = noresponse, 2 = accepted, 3 = declined, 4 = invalid',
PRIMARY KEY (`id`),
UNIQUE KEY `principaluri` (`principaluri`,`uri`),
UNIQUE KEY `calendarid` (`calendarid`,`principaluri`),
UNIQUE KEY `calendarid_2` (`calendarid`,`share_href`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_calendarinstances`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_calendarinstances` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarinstances` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarinstances` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_calendarobjects`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_calendarobjects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_calendarobjects` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`calendardata` mediumblob,
`uri` varbinary(200) DEFAULT NULL,
`calendarid` int unsigned NOT NULL,
`lastmodified` int unsigned DEFAULT NULL,
`etag` varbinary(32) DEFAULT NULL,
`size` int unsigned NOT NULL,
`componenttype` varbinary(8) DEFAULT NULL,
`firstoccurence` int unsigned DEFAULT NULL,
`lastoccurence` int unsigned DEFAULT NULL,
`uid` varbinary(200) DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `calendarid` (`calendarid`,`uri`),
KEY `calendarid_time` (`calendarid`,`firstoccurence`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_calendarobjects`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_calendarobjects` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarobjects` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarobjects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_calendars`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_calendars`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_calendars` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`synctoken` int unsigned NOT NULL DEFAULT '1',
`components` varbinary(21) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_calendars`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_calendars` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendars` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendars` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_calendarsubscriptions`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_calendarsubscriptions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_calendarsubscriptions` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(200) NOT NULL,
`principaluri` varbinary(100) NOT NULL,
`source` text COLLATE utf8mb4_unicode_ci,
`displayname` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`refreshrate` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`calendarorder` int unsigned NOT NULL DEFAULT '0',
`calendarcolor` varbinary(10) DEFAULT NULL,
`striptodos` tinyint DEFAULT NULL,
`stripalarms` tinyint DEFAULT NULL,
`stripattachments` tinyint DEFAULT NULL,
`lastmodified` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `principaluri` (`principaluri`,`uri`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_calendarsubscriptions`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_calendarsubscriptions` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarsubscriptions` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_calendarsubscriptions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_groupmembers`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_groupmembers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_groupmembers` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`principal_id` int unsigned NOT NULL,
`member_id` int unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `principal_id` (`principal_id`,`member_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_groupmembers`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_groupmembers` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_groupmembers` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_groupmembers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_principals`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_principals`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_principals` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`uri` varbinary(200) NOT NULL,
`email` varbinary(80) DEFAULT NULL,
`displayname` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`external_id` int unsigned NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `uri` (`uri`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_principals`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_principals` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_principals` DISABLE KEYS */;
INSERT INTO `jnx5e_dpcalendar_caldav_principals` VALUES (1,_binary 'principals/admin',_binary '[email protected]','admin',44),(2,_binary 'principals/admin/calendar-proxy-read',_binary '[email protected]','admin',44),(3,_binary 'principals/admin/calendar-proxy-write',_binary '[email protected]','admin',44);
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_principals` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_propertystorage`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_propertystorage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_propertystorage` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`path` varbinary(1024) NOT NULL,
`name` varbinary(100) NOT NULL,
`valuetype` int unsigned DEFAULT NULL,
`value` mediumblob,
PRIMARY KEY (`id`),
UNIQUE KEY `path_property` (`path`(600),`name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_propertystorage`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_propertystorage` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_propertystorage` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_propertystorage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_caldav_schedulingobjects`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_caldav_schedulingobjects`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_caldav_schedulingobjects` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`principaluri` varbinary(255) DEFAULT NULL,
`calendardata` mediumblob,
`uri` varbinary(200) DEFAULT NULL,
`lastmodified` int unsigned DEFAULT NULL,
`etag` varbinary(32) DEFAULT NULL,
`size` int unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_caldav_schedulingobjects`
--
LOCK TABLES `jnx5e_dpcalendar_caldav_schedulingobjects` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_schedulingobjects` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_caldav_schedulingobjects` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_countries`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_countries` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`short_code` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`version` int unsigned NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_short_code` (`short_code`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_createdby` (`created_by`)
) ENGINE=InnoDB AUTO_INCREMENT=256 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_countries`
--
LOCK TABLES `jnx5e_dpcalendar_countries` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_countries` DISABLE KEYS */;
INSERT INTO `jnx5e_dpcalendar_countries` VALUES (1,'AF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(2,'AX',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(3,'AL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(4,'DZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(5,'AS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(6,'AD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(7,'AO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(8,'AI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(9,'AQ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(10,'AG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(11,'AR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(12,'AM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(13,'AW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(14,'AC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(15,'AU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(16,'AT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(17,'AZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(18,'BS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(19,'BH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(20,'BD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(21,'BB',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(22,'BY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(23,'BE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(24,'BZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(25,'BJ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(26,'BM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(27,'BT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(28,'BO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(29,'BA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(30,'BW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(31,'BR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(32,'IO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(33,'VG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(34,'BN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(35,'BG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(36,'BF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(37,'BI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(38,'KH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(39,'CM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(40,'CA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(41,'IC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(42,'CV',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(43,'BQ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(44,'KY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(45,'CF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(46,'EA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(47,'TD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(48,'CL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(49,'CN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(50,'CX',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(51,'CC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(52,'CO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(53,'KM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(54,'CG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(55,'CD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(56,'CK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(57,'CR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(58,'CI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(59,'HR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(60,'CU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(61,'CW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(62,'CY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(63,'CZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(64,'DK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(65,'DG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(66,'DJ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(67,'DM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(68,'DO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(69,'EC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(70,'EG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(71,'SV',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(72,'GQ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(73,'ER',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(74,'EE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(75,'SZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(76,'ET',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(77,'FK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(78,'FO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(79,'FJ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(80,'FI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(81,'FR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(82,'GF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(83,'PF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(84,'TF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(85,'GA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(86,'GM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(87,'GE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(88,'DE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(89,'GH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(90,'GI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(91,'GR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(92,'GL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(93,'GD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(94,'GP',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(95,'GU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(96,'GT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(97,'GG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(98,'GN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(99,'GW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(100,'GY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(101,'HT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(102,'HN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(103,'HK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(104,'HU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(105,'IS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(106,'IN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(107,'ID',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(108,'IR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(109,'IQ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(110,'IE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(111,'IM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(112,'IL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(113,'IT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(114,'JM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(115,'JP',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(116,'JE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(117,'JO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(118,'KZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(119,'KE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(120,'KI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(121,'XK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(122,'KW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(123,'KG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(124,'LA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(125,'LV',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(126,'LB',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(127,'LS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(128,'LR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(129,'LY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(130,'LI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(131,'LT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(132,'LU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(133,'MO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(134,'MG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(135,'MW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(136,'MY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(137,'MV',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(138,'ML',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(139,'MT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(140,'MH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(141,'MQ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(142,'MR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(143,'MU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(144,'YT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(145,'MX',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(146,'FM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(147,'MD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(148,'MC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(149,'MN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(150,'ME',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(151,'MS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(152,'MA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(153,'MZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(154,'MM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(155,'NA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(156,'NR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(157,'NP',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(158,'NL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(159,'NC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(160,'NZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(161,'NI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(162,'NE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(163,'NG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(164,'NU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(165,'NF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(166,'KP',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(167,'MK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(168,'MP',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(169,'NO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(170,'OM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(171,'PK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(172,'PW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(173,'PS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(174,'PA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(175,'PG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(176,'PY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(177,'PE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(178,'PH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(179,'PN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(180,'PL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(181,'PT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(182,'XA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(183,'XB',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(184,'PR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(185,'QA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(186,'RE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(187,'RO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(188,'RU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(189,'RW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(190,'WS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(191,'SM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(192,'ST',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(193,'SA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(194,'SN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(195,'RS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(196,'SC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(197,'SL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(198,'SG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(199,'SX',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(200,'SK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(201,'SI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(202,'SB',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(203,'SO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(204,'ZA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(205,'GS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(206,'KR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(207,'SS',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(208,'ES',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(209,'LK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(210,'BL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(211,'SH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(212,'KN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(213,'LC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(214,'MF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(215,'PM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(216,'VC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(217,'SD',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(218,'SR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(219,'SJ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(220,'SE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(221,'CH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(222,'SY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(223,'TW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(224,'TJ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(225,'TZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(226,'TH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(227,'TL',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(228,'TG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(229,'TK',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(230,'TO',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(231,'TT',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(232,'TA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(233,'TN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(234,'TR',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(235,'TM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(236,'TC',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(237,'TV',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(238,'UG',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(239,'UA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(240,'AE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(241,'GB',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(242,'US',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(243,'UY',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(244,'UM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(245,'VI',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(246,'UZ',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(247,'VU',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(248,'VA',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(249,'VE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(250,'VN',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(251,'WF',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(252,'EH',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(253,'YE',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(254,'ZM',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL),(255,'ZW',1,0,NULL,0,NULL,0,0,NULL,0,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_dpcalendar_countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_coupons`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_coupons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_coupons` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`code` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`value` int NOT NULL DEFAULT '0',
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'percentage',
`area` int NOT NULL DEFAULT '1',
`calendars` text COLLATE utf8mb4_unicode_ci,
`users` text COLLATE utf8mb4_unicode_ci,
`emails` text COLLATE utf8mb4_unicode_ci,
`limit` int DEFAULT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`access` int NOT NULL DEFAULT '1',
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci,
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_createdby` (`created_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_coupons`
--
LOCK TABLES `jnx5e_dpcalendar_coupons` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_coupons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_events`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_events`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_events` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`catid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`uid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`original_id` int DEFAULT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`rrule` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`exdates` text COLLATE utf8mb4_unicode_ci,
`recurrence_id` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`show_end_time` tinyint unsigned NOT NULL DEFAULT '1',
`all_day` tinyint unsigned NOT NULL DEFAULT '0',
`color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`images` text COLLATE utf8mb4_unicode_ci,
`description` text COLLATE utf8mb4_unicode_ci,
`schedule` text COLLATE utf8mb4_unicode_ci,
`hits` int NOT NULL DEFAULT '0',
`capacity` int DEFAULT NULL,
`capacity_used` int DEFAULT '0',
`max_tickets` int DEFAULT '1',
`booking_waiting_list` int DEFAULT '0',
`booking_series` tinyint unsigned NOT NULL DEFAULT '2',
`booking_opening_date` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`booking_closing_date` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`booking_cancel_closing_date` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`prices` text COLLATE utf8mb4_unicode_ci,
`earlybird_discount` text COLLATE utf8mb4_unicode_ci,
`user_discount` text COLLATE utf8mb4_unicode_ci,
`events_discount` text COLLATE utf8mb4_unicode_ci,
`tickets_discount` text COLLATE utf8mb4_unicode_ci,
`booking_information` text COLLATE utf8mb4_unicode_ci,
`booking_options` text COLLATE utf8mb4_unicode_ci,
`booking_assign_user_groups` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`terms` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`rooms` text COLLATE utf8mb4_unicode_ci,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`access` int NOT NULL DEFAULT '1',
`access_content` int NOT NULL DEFAULT '1',
`params` text COLLATE utf8mb4_unicode_ci,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8mb4_unicode_ci,
`metadesc` text COLLATE utf8mb4_unicode_ci,
`metadata` text COLLATE utf8mb4_unicode_ci,
`featured` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Set if link is featured.',
`xreference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'A reference to enable linkages to external data sets.',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`payment_provider` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_start_date` (`start_date`),
KEY `idx_end_date` (`end_date`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_featured_catid` (`featured`,`catid`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`),
KEY `idx_original_id` (`original_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_events`
--
LOCK TABLES `jnx5e_dpcalendar_events` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events` DISABLE KEYS */;
INSERT INTO `jnx5e_dpcalendar_events` VALUES (1,'9','A420B6A3-9632-4374-AF91-45157B386801',0,'Calendario de prueba','calendario-de-prueba',NULL,NULL,NULL,'2025-02-24 14:00:00','2025-02-24 15:00:00',1,0,'eb9494','','{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"image_intro_caption\":\"\",\"image_full\":\"\",\"image_full_alt\":\"\",\"image_full_caption\":\"\"}','<p>Calendario de prueba</p>','',3,0,0,1,0,2,'',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,'0000-00-00 00:00:00',1,1,'{\"event_date_format\":\"\",\"event_time_format\":\"\",\"event_show_calendar\":\"\",\"event_show_date\":\"\",\"event_show_location\":\"\",\"event_show_url\":\"\",\"event_show_author\":\"\",\"event_show_hosts\":\"\",\"event_show_booking_form\":\"1\",\"event_show_bookings\":\"\",\"event_show_price\":\"\",\"event_show_capacity\":\"\",\"event_show_capacity_used\":\"\",\"event_show_tickets\":\"\",\"event_show_print\":\"\",\"event_show_mail\":\"\",\"event_show_copy\":\"\",\"event_show_series\":\"\",\"event_series_max\":\"\",\"event_show_map\":\"\",\"event_map_zoom\":\"\",\"event_map_lat\":\"\",\"event_map_long\":\"\",\"event_textbefore\":\"\",\"event_textafter\":\"\",\"event_count_clicks\":\"\",\"event_show_page_heading\":\"\",\"event_prefix_meta_description\":\"\",\"event_custom_css\":\"\"}','*','2025-02-24 14:25:30',44,'','2025-02-24 14:46:27',44,NULL,NULL,'{\"metakey\":\"\",\"metadesc\":\"\",\"robots\":\"\",\"rights\":\"\"}',0,'',NULL,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_events_hosts`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_events_hosts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_events_hosts` (
`event_id` int NOT NULL DEFAULT '0',
`user_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`event_id`,`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_events_hosts`
--
LOCK TABLES `jnx5e_dpcalendar_events_hosts` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events_hosts` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events_hosts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_events_location`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_events_location`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_events_location` (
`event_id` int NOT NULL DEFAULT '0',
`location_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`event_id`,`location_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_events_location`
--
LOCK TABLES `jnx5e_dpcalendar_events_location` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events_location` DISABLE KEYS */;
INSERT INTO `jnx5e_dpcalendar_events_location` VALUES (1,1);
/*!40000 ALTER TABLE `jnx5e_dpcalendar_events_location` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_extcalendars`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_extcalendars`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_extcalendars` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`plugin` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci,
`color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`color_force` tinyint NOT NULL DEFAULT '0',
`state` tinyint NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`version` int unsigned NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`access` int NOT NULL DEFAULT '1',
`access_content` int NOT NULL DEFAULT '1',
`sync_token` text COLLATE utf8mb4_unicode_ci,
`sync_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_plugin` (`plugin`),
KEY `idx_state` (`state`),
KEY `idx_createdby` (`created_by`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_extcalendars`
--
LOCK TABLES `jnx5e_dpcalendar_extcalendars` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_extcalendars` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_extcalendars` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_locations`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_locations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_locations` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`country` int NOT NULL DEFAULT '0',
`province` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`rooms` text COLLATE utf8mb4_unicode_ci,
`latitude` decimal(12,8) DEFAULT NULL,
`longitude` decimal(12,8) DEFAULT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci,
`color` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`version` int unsigned NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`metadata` text COLLATE utf8mb4_unicode_ci,
`xreference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_createdby` (`created_by`),
KEY `idx_language` (`language`),
KEY `idx_xreference` (`xreference`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_locations`
--
LOCK TABLES `jnx5e_dpcalendar_locations` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_locations` DISABLE KEYS */;
INSERT INTO `jnx5e_dpcalendar_locations` VALUES (1,'Campus Barcelona','campus-barcelona',52,'Meta','Villavicencio','500004','Kilometro 12 Vía Puerto López - Vereda Barcelona','','{}',4.07514275,-73.58540793,'','','ff0000',1,0,'0000-00-00 00:00:00',1,NULL,'*',NULL,0,'',1,'2025-02-24 14:23:55',44,NULL,NULL,'{\"metadesc\":\"\",\"metakey\":\"\",\"robots\":\"\",\"rights\":\"\",\"xreference\":\"\"}',NULL),(2,'Villavicencio, Meta 500008, 52','villavicencio-meta-500008-52',52,'Meta','Perímetro Urbano Villavicencio','500004','37','41-02 Barzal','{}',4.14577648,-73.64289172,'','','d11b49',1,0,'0000-00-00 00:00:00',2,NULL,'*',NULL,0,'',1,'2025-02-24 14:20:48',44,NULL,NULL,'{\"metadesc\":\"\",\"metakey\":\"\",\"robots\":\"\",\"rights\":\"\",\"xreference\":\"\"}',NULL),(3,'Campus Boquemonte','campus-boquemonte',52,'Meta','Granada','504001',' KM 2 Via San Juan de Arama','','{}',3.56860113,-73.72043990,'','','f5182e',1,0,'0000-00-00 00:00:00',3,NULL,'*',NULL,0,'',1,'2025-02-24 14:23:17',44,NULL,NULL,'{\"metadesc\":\"\",\"metakey\":\"\",\"robots\":\"\",\"rights\":\"\",\"xreference\":\"\"}',NULL);
/*!40000 ALTER TABLE `jnx5e_dpcalendar_locations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_taxrates`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_taxrates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_taxrates` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`rate` decimal(10,5) DEFAULT NULL,
`countries` text COLLATE utf8mb4_unicode_ci,
`inclusive` tinyint NOT NULL DEFAULT '0',
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`created` datetime DEFAULT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`version` int unsigned NOT NULL DEFAULT '0',
`modified` datetime DEFAULT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_createdby` (`created_by`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_taxrates`
--
LOCK TABLES `jnx5e_dpcalendar_taxrates` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_taxrates` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_taxrates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_dpcalendar_tickets`
--
DROP TABLE IF EXISTS `jnx5e_dpcalendar_tickets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_dpcalendar_tickets` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`booking_id` int NOT NULL DEFAULT '0',
`event_id` int NOT NULL DEFAULT '0',
`user_id` int NOT NULL DEFAULT '0',
`uid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`first_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`telephone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`province` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`city` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`zip` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`street` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`latitude` decimal(12,8) DEFAULT NULL,
`longitude` decimal(12,8) DEFAULT NULL,
`created` datetime DEFAULT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`public` tinyint NOT NULL DEFAULT '1',
`price` decimal(10,2) NOT NULL DEFAULT '0.00',
`type` int NOT NULL DEFAULT '0',
`certificate_send_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `uid` (`uid`),
KEY `booking_id` (`booking_id`),
KEY `event_id` (`event_id`),
KEY `user_id` (`user_id`),
KEY `state` (`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_dpcalendar_tickets`
--
LOCK TABLES `jnx5e_dpcalendar_tickets` WRITE;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_tickets` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_dpcalendar_tickets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_extensions`
--
DROP TABLE IF EXISTS `jnx5e_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_extensions` (
`extension_id` int NOT NULL AUTO_INCREMENT,
`package_id` int NOT NULL DEFAULT '0' COMMENT 'Parent package ID for extensions installed as a package.',
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`element` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`changelogurl` text COLLATE utf8mb4_unicode_ci,
`folder` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`client_id` tinyint NOT NULL,
`enabled` tinyint NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '1',
`protected` tinyint NOT NULL DEFAULT '0' COMMENT 'Flag to indicate if the extension is protected. Protected extensions cannot be disabled.',
`locked` tinyint NOT NULL DEFAULT '0' COMMENT 'Flag to indicate if the extension is locked. Locked extensions cannot be uninstalled.',
`manifest_cache` text COLLATE utf8mb4_unicode_ci NOT NULL,
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`custom_data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`ordering` int DEFAULT '0',
`state` int DEFAULT '0',
`note` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`extension_id`),
KEY `element_clientid` (`element`,`client_id`),
KEY `element_folder_clientid` (`element`,`folder`,`client_id`),
KEY `extension` (`type`,`element`,`folder`,`client_id`)
) ENGINE=InnoDB AUTO_INCREMENT=294 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_extensions`
--
LOCK TABLES `jnx5e_extensions` WRITE;
/*!40000 ALTER TABLE `jnx5e_extensions` DISABLE KEYS */;
INSERT INTO `jnx5e_extensions` VALUES (1,0,'com_wrapper','component','com_wrapper','','',1,1,1,0,1,'{\"name\":\"com_wrapper\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\\n\\t\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Wrapper\",\"filename\":\"wrapper\"}','','',NULL,NULL,0,0,NULL),(2,0,'com_admin','component','com_admin','','',1,1,1,1,1,'{\"name\":\"com_admin\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_ADMIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Admin\"}','','',NULL,NULL,0,0,NULL),(3,0,'com_banners','component','com_banners','','',1,1,1,0,1,'{\"name\":\"com_banners\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Banners\",\"filename\":\"banners\"}','{\"purchase_type\":\"3\",\"track_impressions\":\"0\",\"track_clicks\":\"0\",\"metakey_prefix\":\"\",\"save_history\":\"1\",\"history_limit\":10}','',NULL,NULL,0,0,NULL),(4,0,'com_cache','component','com_cache','','',1,1,1,1,1,'{\"name\":\"com_cache\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Cache\"}','','',NULL,NULL,0,0,NULL),(5,0,'com_categories','component','com_categories','','',1,1,1,1,1,'{\"name\":\"com_categories\",\"type\":\"component\",\"creationDate\":\"2007-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Categories\"}','','',NULL,NULL,0,0,NULL),(6,0,'com_checkin','component','com_checkin','','',1,1,1,1,1,'{\"name\":\"com_checkin\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CHECKIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Checkin\"}','','',NULL,NULL,0,0,NULL),(7,0,'com_contact','component','com_contact','','',1,1,1,0,1,'{\"name\":\"com_contact\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Contact\",\"filename\":\"contact\"}','{\"contact_layout\":\"_:default\",\"show_contact_category\":\"hide\",\"save_history\":\"1\",\"history_limit\":10,\"show_contact_list\":\"0\",\"presentation_style\":\"sliders\",\"show_tags\":\"1\",\"show_info\":\"1\",\"show_name\":\"1\",\"show_position\":\"1\",\"show_email\":\"0\",\"show_street_address\":\"1\",\"show_suburb\":\"1\",\"show_state\":\"1\",\"show_postcode\":\"1\",\"show_country\":\"1\",\"show_telephone\":\"1\",\"show_mobile\":\"1\",\"show_fax\":\"1\",\"show_webpage\":\"1\",\"show_image\":\"1\",\"show_misc\":\"1\",\"image\":\"\",\"allow_vcard\":\"0\",\"show_articles\":\"0\",\"articles_display_num\":\"10\",\"show_profile\":\"0\",\"show_user_custom_fields\":[\"-1\"],\"show_links\":\"0\",\"linka_name\":\"\",\"linkb_name\":\"\",\"linkc_name\":\"\",\"linkd_name\":\"\",\"linke_name\":\"\",\"contact_icons\":\"0\",\"icon_address\":\"\",\"icon_email\":\"\",\"icon_telephone\":\"\",\"icon_mobile\":\"\",\"icon_fax\":\"\",\"icon_misc\":\"\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"0\",\"maxLevel\":\"-1\",\"show_subcat_desc\":\"1\",\"show_empty_categories\":\"0\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_subcat_desc_cat\":\"1\",\"show_empty_categories_cat\":\"0\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"0\",\"show_pagination_limit\":\"0\",\"show_headings\":\"1\",\"show_image_heading\":\"0\",\"show_position_headings\":\"1\",\"show_email_headings\":\"0\",\"show_telephone_headings\":\"1\",\"show_mobile_headings\":\"0\",\"show_fax_headings\":\"0\",\"show_suburb_headings\":\"1\",\"show_state_headings\":\"1\",\"show_country_headings\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"initial_sort\":\"ordering\",\"captcha\":\"\",\"show_email_form\":\"1\",\"show_email_copy\":\"0\",\"banned_email\":\"\",\"banned_subject\":\"\",\"banned_text\":\"\",\"validate_session\":\"1\",\"custom_reply\":\"0\",\"redirect\":\"\",\"show_feed_link\":\"1\",\"sef_ids\":1,\"custom_fields_enable\":\"1\"}','',NULL,NULL,0,0,NULL),(8,0,'com_cpanel','component','com_cpanel','','',1,1,1,1,1,'{\"name\":\"com_cpanel\",\"type\":\"component\",\"creationDate\":\"2007-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CPANEL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Cpanel\"}','','',NULL,NULL,0,0,NULL),(9,0,'com_installer','component','com_installer','','',1,1,1,1,1,'{\"name\":\"com_installer\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_INSTALLER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Installer\"}','{\"cachetimeout\":\"6\",\"minimum_stability\":\"4\"}','',NULL,NULL,0,0,NULL),(10,0,'com_languages','component','com_languages','','',1,1,1,1,1,'{\"name\":\"com_languages\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Languages\"}','{\"administrator\":\"es-ES\",\"site\":\"es-ES\"}','',NULL,NULL,0,0,NULL),(11,0,'com_login','component','com_login','','',1,1,1,1,1,'{\"name\":\"com_login\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Login\"}','','',NULL,NULL,0,0,NULL),(12,0,'com_media','component','com_media','','',1,1,0,1,1,'{\"name\":\"com_media\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"COM_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Media\",\"filename\":\"media\"}','{\"upload_maxsize\":\"10\",\"file_path\":\"images\",\"image_path\":\"images\",\"restrict_uploads\":\"1\",\"allowed_media_usergroup\":\"3\",\"restrict_uploads_extensions\":\"bmp,gif,jpg,jpeg,png,webp,avif,ico,mp3,m4a,mp4a,ogg,mp4,mp4v,mpeg,mov,odg,odp,ods,odt,pdf,ppt,txt,xcf,xls,csv\",\"check_mime\":\"1\",\"image_extensions\":\"bmp,gif,jpg,png,jpeg,webp,avif\",\"audio_extensions\":\"mp3,m4a,mp4a,ogg\",\"video_extensions\":\"mp4,mp4v,mpeg,mov,webm\",\"doc_extensions\":\"odg,odp,ods,odt,pdf,ppt,txt,xcf,xls,csv\",\"ignore_extensions\":\"\",\"upload_mime\":\"image\\/jpeg,image\\/gif,image\\/png,image\\/bmp,image\\/webp,image\\/avif,audio\\/ogg,audio\\/mpeg,audio\\/mp4,video\\/mp4,video\\/webm,video\\/mpeg,video\\/quicktime,application\\/msword,application\\/excel,application\\/pdf,application\\/powerpoint,text\\/plain,application\\/x-zip\"}','',NULL,NULL,0,0,NULL),(13,0,'com_menus','component','com_menus','','',1,1,1,1,1,'{\"name\":\"com_menus\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_MENUS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Menus\",\"filename\":\"menus\"}','{\"page_title\":\"\",\"show_page_heading\":0,\"page_heading\":\"\",\"pageclass_sfx\":\"\"}','',NULL,NULL,0,0,NULL),(14,0,'com_messages','component','com_messages','','',1,1,1,1,1,'{\"name\":\"com_messages\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_MESSAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Messages\"}','','',NULL,NULL,0,0,NULL),(15,0,'com_modules','component','com_modules','','',1,1,1,1,1,'{\"name\":\"com_modules\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_MODULES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Modules\",\"filename\":\"modules\"}','','',NULL,NULL,0,0,NULL),(16,0,'com_newsfeeds','component','com_newsfeeds','','',1,1,1,0,1,'{\"name\":\"com_newsfeeds\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Newsfeeds\",\"filename\":\"newsfeeds\"}','{\"newsfeed_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_feed_image\":\"1\",\"show_feed_description\":\"1\",\"show_item_description\":\"1\",\"feed_character_count\":\"0\",\"feed_display_order\":\"des\",\"float_first\":\"right\",\"float_second\":\"right\",\"show_tags\":\"1\",\"category_layout\":\"_:default\",\"show_category_title\":\"1\",\"show_description\":\"1\",\"show_description_image\":\"1\",\"maxLevel\":\"-1\",\"show_empty_categories\":\"0\",\"show_subcat_desc\":\"1\",\"show_cat_items\":\"1\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_items_cat\":\"1\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_headings\":\"1\",\"show_articles\":\"0\",\"show_link\":\"1\",\"show_pagination\":\"1\",\"show_pagination_results\":\"1\",\"sef_ids\":1}','',NULL,NULL,0,0,NULL),(17,0,'com_plugins','component','com_plugins','','',1,1,1,1,1,'{\"name\":\"com_plugins\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_PLUGINS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Plugins\"}','','',NULL,NULL,0,0,NULL),(18,0,'com_templates','component','com_templates','','',1,1,1,1,1,'{\"name\":\"com_templates\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Templates\"}','{\"template_positions_display\":\"0\",\"upload_limit\":\"10\",\"image_formats\":\"gif,bmp,jpg,jpeg,png,webp\",\"source_formats\":\"txt,less,ini,xml,js,php,css,scss,sass,json,yaml,twig\",\"font_formats\":\"woff,woff2,ttf,otf,eot,svg\",\"compressed_formats\":\"zip\",\"difference\":\"SideBySide\"}','',NULL,NULL,0,0,NULL),(19,0,'com_content','component','com_content','','',1,1,0,1,1,'{\"name\":\"com_content\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Content\",\"filename\":\"content\"}','{\"article_layout\":\"_:default\",\"show_title\":\"1\",\"link_titles\":\"1\",\"show_intro\":\"1\",\"info_block_position\":\"0\",\"info_block_show_title\":\"1\",\"show_category\":\"0\",\"link_category\":\"1\",\"show_parent_category\":\"0\",\"link_parent_category\":\"0\",\"show_associations\":\"0\",\"flags\":\"1\",\"show_author\":\"1\",\"link_author\":\"0\",\"show_create_date\":\"1\",\"show_modify_date\":\"0\",\"show_publish_date\":\"0\",\"show_item_navigation\":\"0\",\"show_readmore\":\"1\",\"show_readmore_title\":\"1\",\"readmore_limit\":100,\"show_tags\":\"1\",\"record_hits\":\"1\",\"show_hits\":\"1\",\"show_noauth\":\"0\",\"urls_position\":0,\"captcha\":\"\",\"show_publishing_options\":\"1\",\"show_article_options\":\"1\",\"show_configure_edit_options\":\"1\",\"show_permissions\":\"1\",\"show_associations_edit\":\"1\",\"save_history\":\"1\",\"history_limit\":10,\"show_urls_images_frontend\":\"0\",\"show_urls_images_backend\":\"1\",\"targeta\":0,\"targetb\":0,\"targetc\":0,\"float_intro\":\"left\",\"float_fulltext\":\"left\",\"category_layout\":\"_:blog\",\"show_category_title\":\"0\",\"show_description\":\"0\",\"show_description_image\":\"0\",\"maxLevel\":\"1\",\"show_empty_categories\":\"0\",\"show_no_articles\":\"1\",\"show_category_heading_title_text\":\"1\",\"show_subcat_desc\":\"1\",\"show_cat_num_articles\":\"0\",\"show_cat_tags\":\"1\",\"show_base_description\":\"1\",\"maxLevelcat\":\"-1\",\"show_empty_categories_cat\":\"0\",\"show_subcat_desc_cat\":\"1\",\"show_cat_num_articles_cat\":\"1\",\"num_leading_articles\":1,\"blog_class_leading\":\"\",\"num_intro_articles\":4,\"blog_class\":\"\",\"num_columns\":1,\"multi_column_order\":\"0\",\"num_links\":4,\"show_subcategory_content\":\"0\",\"link_intro_image\":\"0\",\"show_pagination_limit\":\"1\",\"filter_field\":\"hide\",\"show_headings\":\"1\",\"list_show_date\":\"0\",\"date_format\":\"\",\"list_show_hits\":\"1\",\"list_show_author\":\"1\",\"display_num\":\"10\",\"orderby_pri\":\"order\",\"orderby_sec\":\"rdate\",\"order_date\":\"published\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"show_featured\":\"show\",\"show_feed_link\":\"1\",\"feed_summary\":\"0\",\"feed_show_readmore\":\"0\",\"sef_ids\":1,\"custom_fields_enable\":\"1\",\"workflow_enabled\":\"0\"}','',NULL,NULL,0,0,NULL),(20,0,'com_config','component','com_config','','',1,1,0,1,1,'{\"name\":\"com_config\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CONFIG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Config\",\"filename\":\"config\"}','{\"filters\":{\"1\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"9\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"6\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"7\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"2\":{\"filter_type\":\"NH\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"3\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"4\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"5\":{\"filter_type\":\"BL\",\"filter_tags\":\"\",\"filter_attributes\":\"\"},\"8\":{\"filter_type\":\"NONE\",\"filter_tags\":\"\",\"filter_attributes\":\"\"}}}','',NULL,NULL,0,0,NULL),(21,0,'com_redirect','component','com_redirect','','',1,1,0,0,1,'{\"name\":\"com_redirect\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Redirect\"}','','',NULL,NULL,0,0,NULL),(22,0,'com_users','component','com_users','','',1,1,0,1,1,'{\"name\":\"com_users\",\"type\":\"component\",\"creationDate\":\"2006-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_USERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Users\",\"filename\":\"users\"}','{\"allowUserRegistration\":\"0\",\"new_usertype\":\"2\",\"guest_usergroup\":\"9\",\"sendpassword\":\"0\",\"useractivation\":\"2\",\"mail_to_admin\":\"1\",\"captcha\":\"\",\"frontend_userparams\":\"1\",\"site_language\":\"0\",\"change_login_name\":\"0\",\"reset_count\":\"10\",\"reset_time\":\"1\",\"minimum_length\":\"12\",\"minimum_integers\":\"0\",\"minimum_symbols\":\"0\",\"minimum_uppercase\":\"0\",\"save_history\":\"1\",\"history_limit\":5,\"mailSubjectPrefix\":\"\",\"mailBodySuffix\":\"\"}','',NULL,NULL,0,0,NULL),(23,0,'com_finder','component','com_finder','','',1,1,0,0,1,'{\"name\":\"com_finder\",\"type\":\"component\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Finder\",\"filename\":\"finder\"}','{\"enabled\":\"0\",\"show_description\":\"1\",\"description_length\":255,\"allow_empty_query\":\"0\",\"show_url\":\"1\",\"show_autosuggest\":\"1\",\"show_suggested_query\":\"1\",\"show_explained_query\":\"1\",\"show_advanced\":\"1\",\"show_advanced_tips\":\"1\",\"expand_advanced\":\"0\",\"show_date_filters\":\"0\",\"sort_order\":\"relevance\",\"sort_direction\":\"desc\",\"highlight_terms\":\"1\",\"opensearch_name\":\"\",\"opensearch_description\":\"\",\"batch_size\":\"50\",\"title_multiplier\":\"1.7\",\"text_multiplier\":\"0.7\",\"meta_multiplier\":\"1.2\",\"path_multiplier\":\"2.0\",\"misc_multiplier\":\"0.3\",\"stem\":\"1\",\"stemmer\":\"snowball\",\"enable_logging\":\"0\"}','',NULL,NULL,0,0,NULL),(24,0,'com_joomlaupdate','component','com_joomlaupdate','','',1,1,0,1,1,'{\"name\":\"com_joomlaupdate\",\"type\":\"component\",\"creationDate\":\"2021-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.3\",\"description\":\"COM_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Joomlaupdate\"}','{\"updatesource\":\"default\",\"customurl\":\"\"}','',NULL,NULL,0,0,NULL),(25,0,'com_tags','component','com_tags','','',1,1,1,0,1,'{\"name\":\"com_tags\",\"type\":\"component\",\"creationDate\":\"2013-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Tags\",\"filename\":\"tags\"}','{\"tag_layout\":\"_:default\",\"save_history\":\"1\",\"history_limit\":5,\"show_tag_title\":\"0\",\"tag_list_show_tag_image\":\"0\",\"tag_list_show_tag_description\":\"0\",\"tag_list_image\":\"\",\"tag_list_orderby\":\"title\",\"tag_list_orderby_direction\":\"ASC\",\"show_headings\":\"0\",\"tag_list_show_date\":\"0\",\"tag_list_show_item_image\":\"0\",\"tag_list_show_item_description\":\"0\",\"tag_list_item_maximum_characters\":0,\"return_any_or_all\":\"1\",\"include_children\":\"0\",\"maximum\":200,\"tag_list_language_filter\":\"all\",\"tags_layout\":\"_:default\",\"all_tags_orderby\":\"title\",\"all_tags_orderby_direction\":\"ASC\",\"all_tags_show_tag_image\":\"0\",\"all_tags_show_tag_description\":\"0\",\"all_tags_tag_maximum_characters\":20,\"all_tags_show_tag_hits\":\"0\",\"filter_field\":\"1\",\"show_pagination_limit\":\"1\",\"show_pagination\":\"2\",\"show_pagination_results\":\"1\",\"tag_field_ajax_mode\":\"1\",\"show_feed_link\":\"1\"}','',NULL,NULL,0,0,NULL),(26,0,'com_contenthistory','component','com_contenthistory','','',1,1,1,0,1,'{\"name\":\"com_contenthistory\",\"type\":\"component\",\"creationDate\":\"2013-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_CONTENTHISTORY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Contenthistory\",\"filename\":\"contenthistory\"}','','',NULL,NULL,0,0,NULL),(27,0,'com_ajax','component','com_ajax','','',1,1,1,1,1,'{\"name\":\"com_ajax\",\"type\":\"component\",\"creationDate\":\"2013-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_AJAX_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"ajax\"}','','',NULL,NULL,0,0,NULL),(28,0,'com_postinstall','component','com_postinstall','','',1,1,1,1,1,'{\"name\":\"com_postinstall\",\"type\":\"component\",\"creationDate\":\"2013-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_POSTINSTALL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Postinstall\"}','','',NULL,NULL,0,0,NULL),(29,0,'com_fields','component','com_fields','','',1,1,1,0,1,'{\"name\":\"com_fields\",\"type\":\"component\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Fields\",\"filename\":\"fields\"}','','',NULL,NULL,0,0,NULL),(30,0,'com_associations','component','com_associations','','',1,1,1,0,1,'{\"name\":\"com_associations\",\"type\":\"component\",\"creationDate\":\"2017-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_ASSOCIATIONS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Associations\"}','','',NULL,NULL,0,0,NULL),(31,0,'com_privacy','component','com_privacy','','',1,1,1,0,1,'{\"name\":\"com_privacy\",\"type\":\"component\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_PRIVACY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Privacy\",\"filename\":\"privacy\"}','','',NULL,NULL,0,0,NULL),(32,0,'com_actionlogs','component','com_actionlogs','','',1,1,1,0,1,'{\"name\":\"com_actionlogs\",\"type\":\"component\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"COM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Actionlogs\"}','{\"ip_logging\":0,\"csv_delimiter\":\",\",\"loggable_extensions\":[\"com_banners\",\"com_cache\",\"com_categories\",\"com_checkin\",\"com_config\",\"com_contact\",\"com_content\",\"com_fields\",\"com_guidedtours\",\"com_installer\",\"com_media\",\"com_menus\",\"com_messages\",\"com_modules\",\"com_newsfeeds\",\"com_plugins\",\"com_redirect\",\"com_scheduler\",\"com_tags\",\"com_templates\",\"com_users\"]}','',NULL,NULL,0,0,NULL),(33,0,'com_workflow','component','com_workflow','','',1,1,0,1,1,'{\"name\":\"com_workflow\",\"type\":\"component\",\"creationDate\":\"2017-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_WORKFLOW_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Workflow\"}','{}','',NULL,NULL,0,0,NULL),(34,0,'com_mails','component','com_mails','','',1,1,1,1,1,'{\"name\":\"com_mails\",\"type\":\"component\",\"creationDate\":\"2019-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"COM_MAILS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Mails\"}','','',NULL,NULL,0,0,NULL),(35,0,'com_scheduler','component','com_scheduler','','',1,1,1,0,1,'{\"name\":\"com_scheduler\",\"type\":\"component\",\"creationDate\":\"2021-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1.0\",\"description\":\"COM_SCHEDULER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Scheduler\"}','{}','',NULL,NULL,0,0,NULL),(36,0,'com_guidedtours','component','com_guidedtours','','',1,1,0,0,1,'{\"name\":\"com_guidedtours\",\"type\":\"component\",\"creationDate\":\"2023-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.3.0\",\"description\":\"COM_GUIDEDTOURS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Component\\\\Guidedtours\"}','{}','',NULL,NULL,0,0,NULL),(37,0,'lib_joomla','library','joomla','','',0,1,1,1,1,'{\"name\":\"lib_joomla\",\"type\":\"library\",\"creationDate\":\"2008-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2008 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/www.joomla.org\",\"version\":\"13.1\",\"description\":\"LIB_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"joomla\"}','','',NULL,NULL,0,0,NULL),(38,0,'lib_phpass','library','phpass','','',0,1,1,1,1,'{\"name\":\"lib_phpass\",\"type\":\"library\",\"creationDate\":\"2004-01\",\"author\":\"Solar Designer\",\"copyright\":\"\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/www.openwall.com\\/phpass\\/\",\"version\":\"0.5.1\",\"description\":\"LIB_PHPASS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"phpass\"}','','',NULL,NULL,0,0,NULL),(39,0,'mod_articles_archive','module','mod_articles_archive','','',0,1,1,0,1,'{\"name\":\"mod_articles_archive\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_ARCHIVE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesArchive\",\"filename\":\"mod_articles_archive\"}','','',NULL,NULL,0,0,NULL),(40,0,'mod_articles_latest','module','mod_articles_latest','','',0,1,1,0,1,'{\"name\":\"mod_articles_latest\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesLatest\",\"filename\":\"mod_articles_latest\"}','','',NULL,NULL,0,0,NULL),(41,0,'mod_articles_popular','module','mod_articles_popular','','',0,1,1,0,1,'{\"name\":\"mod_articles_popular\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesPopular\",\"filename\":\"mod_articles_popular\"}','','',NULL,NULL,0,0,NULL),(42,0,'mod_banners','module','mod_banners','','',0,1,1,0,1,'{\"name\":\"mod_banners\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Banners\",\"filename\":\"mod_banners\"}','','',NULL,NULL,0,0,NULL),(43,0,'mod_breadcrumbs','module','mod_breadcrumbs','','',0,1,1,0,1,'{\"name\":\"mod_breadcrumbs\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_BREADCRUMBS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Breadcrumbs\",\"filename\":\"mod_breadcrumbs\"}','','',NULL,NULL,0,0,NULL),(44,0,'mod_custom','module','mod_custom','','',0,1,1,0,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Custom\",\"filename\":\"mod_custom\"}','','',NULL,NULL,0,0,NULL),(45,0,'mod_feed','module','mod_feed','','',0,1,1,0,1,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"2005-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Feed\",\"filename\":\"mod_feed\"}','','',NULL,NULL,0,0,NULL),(46,0,'mod_footer','module','mod_footer','','',0,1,1,0,1,'{\"name\":\"mod_footer\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FOOTER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Footer\",\"filename\":\"mod_footer\"}','','',NULL,NULL,0,0,NULL),(47,0,'mod_login','module','mod_login','','',0,1,1,0,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Login\",\"filename\":\"mod_login\"}','','',NULL,NULL,0,0,NULL),(48,0,'mod_menu','module','mod_menu','','',0,1,1,0,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Menu\",\"filename\":\"mod_menu\"}','','',NULL,NULL,0,0,NULL),(49,0,'mod_articles_news','module','mod_articles_news','','',0,1,1,0,1,'{\"name\":\"mod_articles_news\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_NEWS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesNews\",\"filename\":\"mod_articles_news\"}','','',NULL,NULL,0,0,NULL),(50,0,'mod_random_image','module','mod_random_image','','',0,1,1,0,1,'{\"name\":\"mod_random_image\",\"type\":\"module\",\"creationDate\":\"2006-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RANDOM_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\RandomImage\",\"filename\":\"mod_random_image\"}','','',NULL,NULL,0,0,NULL),(51,0,'mod_related_items','module','mod_related_items','','',0,1,1,0,1,'{\"name\":\"mod_related_items\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_RELATED_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\RelatedItems\",\"filename\":\"mod_related_items\"}','','',NULL,NULL,0,0,NULL),(52,0,'mod_stats','module','mod_stats','','',0,1,1,0,1,'{\"name\":\"mod_stats\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Stats\",\"filename\":\"mod_stats\"}','','',NULL,NULL,0,0,NULL),(53,0,'mod_syndicate','module','mod_syndicate','','',0,1,1,0,1,'{\"name\":\"mod_syndicate\",\"type\":\"module\",\"creationDate\":\"2006-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SYNDICATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Syndicate\",\"filename\":\"mod_syndicate\"}','','',NULL,NULL,0,0,NULL),(54,0,'mod_users_latest','module','mod_users_latest','','',0,1,1,0,1,'{\"name\":\"mod_users_latest\",\"type\":\"module\",\"creationDate\":\"2009-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_USERS_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\UsersLatest\",\"filename\":\"mod_users_latest\"}','','',NULL,NULL,0,0,NULL),(55,0,'mod_whosonline','module','mod_whosonline','','',0,1,1,0,1,'{\"name\":\"mod_whosonline\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WHOSONLINE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Whosonline\",\"filename\":\"mod_whosonline\"}','','',NULL,NULL,0,0,NULL),(56,0,'mod_wrapper','module','mod_wrapper','','',0,1,1,0,1,'{\"name\":\"mod_wrapper\",\"type\":\"module\",\"creationDate\":\"2004-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_WRAPPER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Wrapper\",\"filename\":\"mod_wrapper\"}','','',NULL,NULL,0,0,NULL),(57,0,'mod_articles_category','module','mod_articles_category','','',0,1,1,0,1,'{\"name\":\"mod_articles_category\",\"type\":\"module\",\"creationDate\":\"2010-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesCategory\",\"filename\":\"mod_articles_category\"}','','',NULL,NULL,0,0,NULL),(58,0,'mod_articles_categories','module','mod_articles_categories','','',0,1,1,0,1,'{\"name\":\"mod_articles_categories\",\"type\":\"module\",\"creationDate\":\"2010-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_ARTICLES_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\ArticlesCategories\",\"filename\":\"mod_articles_categories\"}','','',NULL,NULL,0,0,NULL),(59,0,'mod_languages','module','mod_languages','','',0,1,1,0,1,'{\"name\":\"mod_languages\",\"type\":\"module\",\"creationDate\":\"2010-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"MOD_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Languages\",\"filename\":\"mod_languages\"}','','',NULL,NULL,0,0,NULL),(60,0,'mod_finder','module','mod_finder','','',0,1,0,0,1,'{\"name\":\"mod_finder\",\"type\":\"module\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Finder\",\"filename\":\"mod_finder\"}','','',NULL,NULL,0,0,NULL),(61,0,'MOD_ARTICLES','module','mod_articles','','',0,1,0,0,1,'{\"name\":\"MOD_ARTICLES\",\"type\":\"module\",\"creationDate\":\"2024-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2024 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.2.0\",\"description\":\"MOD_ARTICLES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Articles\",\"filename\":\"mod_articles\"}','','',NULL,NULL,0,0,NULL),(62,0,'mod_custom','module','mod_custom','','',1,1,1,0,1,'{\"name\":\"mod_custom\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Custom\",\"filename\":\"mod_custom\"}','','',NULL,NULL,0,0,NULL),(63,0,'mod_feed','module','mod_feed','','',1,1,1,0,1,'{\"name\":\"mod_feed\",\"type\":\"module\",\"creationDate\":\"2005-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_FEED_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Feed\",\"filename\":\"mod_feed\"}','','',NULL,NULL,0,0,NULL),(64,0,'mod_latest','module','mod_latest','','',1,1,1,0,1,'{\"name\":\"mod_latest\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LATEST_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Latest\",\"filename\":\"mod_latest\"}','','',NULL,NULL,0,0,NULL),(65,0,'mod_logged','module','mod_logged','','',1,1,1,0,1,'{\"name\":\"mod_logged\",\"type\":\"module\",\"creationDate\":\"2005-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGGED_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Logged\",\"filename\":\"mod_logged\"}','','',NULL,NULL,0,0,NULL),(66,0,'mod_login','module','mod_login','','',1,1,1,0,1,'{\"name\":\"mod_login\",\"type\":\"module\",\"creationDate\":\"2005-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_LOGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Login\",\"filename\":\"mod_login\"}','','',NULL,NULL,0,0,NULL),(67,0,'mod_loginsupport','module','mod_loginsupport','','',1,1,1,0,1,'{\"name\":\"mod_loginsupport\",\"type\":\"module\",\"creationDate\":\"2019-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_LOGINSUPPORT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Loginsupport\",\"filename\":\"mod_loginsupport\"}','','',NULL,NULL,0,0,NULL),(68,0,'mod_menu','module','mod_menu','','',1,1,1,0,1,'{\"name\":\"mod_menu\",\"type\":\"module\",\"creationDate\":\"2006-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Menu\",\"filename\":\"mod_menu\"}','','',NULL,NULL,0,0,NULL),(69,0,'mod_popular','module','mod_popular','','',1,1,1,0,1,'{\"name\":\"mod_popular\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Popular\",\"filename\":\"mod_popular\"}','','',NULL,NULL,0,0,NULL),(70,0,'mod_quickicon','module','mod_quickicon','','',1,1,1,0,1,'{\"name\":\"mod_quickicon\",\"type\":\"module\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_QUICKICON_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Quickicon\",\"filename\":\"mod_quickicon\"}','','',NULL,NULL,0,0,NULL),(71,0,'mod_frontend','module','mod_frontend','','',1,1,1,0,1,'{\"name\":\"mod_frontend\",\"type\":\"module\",\"creationDate\":\"2019-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_FRONTEND_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Frontend\",\"filename\":\"mod_frontend\"}','','',NULL,NULL,0,0,NULL),(72,0,'mod_messages','module','mod_messages','','',1,1,1,0,1,'{\"name\":\"mod_messages\",\"type\":\"module\",\"creationDate\":\"2019-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_MESSAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Messages\",\"filename\":\"mod_messages\"}','','',NULL,NULL,0,0,NULL),(73,0,'mod_post_installation_messages','module','mod_post_installation_messages','','',1,1,1,0,1,'{\"name\":\"mod_post_installation_messages\",\"type\":\"module\",\"creationDate\":\"2019-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_POST_INSTALLATION_MESSAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\PostInstallationMessages\",\"filename\":\"mod_post_installation_messages\"}','','',NULL,NULL,0,0,NULL),(74,0,'mod_user','module','mod_user','','',1,1,1,0,1,'{\"name\":\"mod_user\",\"type\":\"module\",\"creationDate\":\"2019-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_USER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\User\",\"filename\":\"mod_user\"}','','',NULL,NULL,0,0,NULL),(75,0,'mod_title','module','mod_title','','',1,1,1,0,1,'{\"name\":\"mod_title\",\"type\":\"module\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TITLE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Title\",\"filename\":\"mod_title\"}','','',NULL,NULL,0,0,NULL),(76,0,'mod_toolbar','module','mod_toolbar','','',1,1,1,0,1,'{\"name\":\"mod_toolbar\",\"type\":\"module\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_TOOLBAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Toolbar\",\"filename\":\"mod_toolbar\"}','','',NULL,NULL,0,0,NULL),(77,0,'mod_multilangstatus','module','mod_multilangstatus','','',1,1,1,0,1,'{\"name\":\"mod_multilangstatus\",\"type\":\"module\",\"creationDate\":\"2011-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_MULTILANGSTATUS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\MultilangStatus\",\"filename\":\"mod_multilangstatus\"}','{\"cache\":\"0\"}','',NULL,NULL,0,0,NULL),(78,0,'mod_version','module','mod_version','','',1,1,1,0,1,'{\"name\":\"mod_version\",\"type\":\"module\",\"creationDate\":\"2012-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2012 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_VERSION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Version\",\"filename\":\"mod_version\"}','{\"cache\":\"0\"}','',NULL,NULL,0,0,NULL),(79,0,'mod_stats_admin','module','mod_stats_admin','','',1,1,1,0,1,'{\"name\":\"mod_stats_admin\",\"type\":\"module\",\"creationDate\":\"2004-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_STATS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\StatsAdmin\",\"filename\":\"mod_stats_admin\"}','{\"serverinfo\":\"0\",\"siteinfo\":\"0\",\"counter\":\"0\",\"increase\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','',NULL,NULL,0,0,NULL),(80,0,'mod_tags_popular','module','mod_tags_popular','','',0,1,1,0,1,'{\"name\":\"mod_tags_popular\",\"type\":\"module\",\"creationDate\":\"2013-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_POPULAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\TagsPopular\",\"filename\":\"mod_tags_popular\"}','{\"maximum\":\"5\",\"timeframe\":\"alltime\",\"owncache\":\"1\"}','',NULL,NULL,0,0,NULL),(81,0,'mod_tags_similar','module','mod_tags_similar','','',0,1,1,0,1,'{\"name\":\"mod_tags_similar\",\"type\":\"module\",\"creationDate\":\"2013-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.1.0\",\"description\":\"MOD_TAGS_SIMILAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\TagsSimilar\",\"filename\":\"mod_tags_similar\"}','{\"maximum\":\"5\",\"matchtype\":\"any\",\"owncache\":\"1\"}','',NULL,NULL,0,0,NULL),(82,0,'mod_sampledata','module','mod_sampledata','','',1,1,1,0,1,'{\"name\":\"mod_sampledata\",\"type\":\"module\",\"creationDate\":\"2017-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"MOD_SAMPLEDATA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Sampledata\",\"filename\":\"mod_sampledata\"}','{}','',NULL,NULL,0,0,NULL),(83,0,'mod_latestactions','module','mod_latestactions','','',1,1,1,0,1,'{\"name\":\"mod_latestactions\",\"type\":\"module\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_LATESTACTIONS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\LatestActions\",\"filename\":\"mod_latestactions\"}','{}','',NULL,NULL,0,0,NULL),(84,0,'mod_privacy_dashboard','module','mod_privacy_dashboard','','',1,1,1,0,1,'{\"name\":\"mod_privacy_dashboard\",\"type\":\"module\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"MOD_PRIVACY_DASHBOARD_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\PrivacyDashboard\",\"filename\":\"mod_privacy_dashboard\"}','{}','',NULL,NULL,0,0,NULL),(85,0,'mod_submenu','module','mod_submenu','','',1,1,1,0,1,'{\"name\":\"mod_submenu\",\"type\":\"module\",\"creationDate\":\"2006-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"MOD_SUBMENU_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\Submenu\",\"filename\":\"mod_submenu\"}','{}','',NULL,NULL,0,0,NULL),(86,0,'mod_privacy_status','module','mod_privacy_status','','',1,1,1,0,1,'{\"name\":\"mod_privacy_status\",\"type\":\"module\",\"creationDate\":\"2019-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"MOD_PRIVACY_STATUS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\PrivacyStatus\",\"filename\":\"mod_privacy_status\"}','{}','',NULL,NULL,0,0,NULL),(87,0,'mod_guidedtours','module','mod_guidedtours','','',1,1,1,0,1,'{\"name\":\"mod_guidedtours\",\"type\":\"module\",\"creationDate\":\"2023-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.3.0\",\"description\":\"MOD_GUIDEDTOURS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Module\\\\GuidedTours\",\"filename\":\"mod_guidedtours\"}','{}','',NULL,NULL,0,0,NULL),(88,0,'plg_actionlog_joomla','plugin','joomla','','actionlog',0,1,1,0,1,'{\"name\":\"plg_actionlog_joomla\",\"type\":\"plugin\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_ACTIONLOG_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Actionlog\\\\Joomla\",\"filename\":\"joomla\"}','{}','',NULL,NULL,1,0,NULL),(89,0,'plg_api-authentication_basic','plugin','basic','','api-authentication',0,0,1,0,1,'{\"name\":\"plg_api-authentication_basic\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_API-AUTHENTICATION_BASIC_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\ApiAuthentication\\\\Basic\",\"filename\":\"basic\"}','{}','',NULL,NULL,1,0,NULL),(90,0,'plg_api-authentication_token','plugin','token','','api-authentication',0,1,1,0,1,'{\"name\":\"plg_api-authentication_token\",\"type\":\"plugin\",\"creationDate\":\"2019-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_API-AUTHENTICATION_TOKEN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\ApiAuthentication\\\\Token\",\"filename\":\"token\"}','{}','',NULL,NULL,2,0,NULL),(91,0,'plg_authentication_cookie','plugin','cookie','','authentication',0,1,1,0,1,'{\"name\":\"plg_authentication_cookie\",\"type\":\"plugin\",\"creationDate\":\"2013-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTHENTICATION_COOKIE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Authentication\\\\Cookie\",\"filename\":\"cookie\"}','','',NULL,NULL,1,0,NULL),(92,0,'plg_authentication_joomla','plugin','joomla','','authentication',0,1,1,1,1,'{\"name\":\"plg_authentication_joomla\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_AUTHENTICATION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Authentication\\\\Joomla\",\"filename\":\"joomla\"}','','',NULL,NULL,2,0,NULL),(93,0,'plg_authentication_ldap','plugin','ldap','','authentication',0,0,1,0,1,'{\"name\":\"plg_authentication_ldap\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LDAP_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Authentication\\\\Ldap\",\"filename\":\"ldap\"}','{\"host\":\"\",\"port\":\"389\",\"use_ldapV3\":\"0\",\"negotiate_tls\":\"0\",\"no_referrals\":\"0\",\"auth_method\":\"bind\",\"base_dn\":\"\",\"search_string\":\"\",\"users_dn\":\"\",\"username\":\"admin\",\"password\":\"bobby7\",\"ldap_fullname\":\"fullName\",\"ldap_email\":\"mail\",\"ldap_uid\":\"uid\"}','',NULL,NULL,3,0,NULL),(94,0,'plg_behaviour_compat','plugin','compat','','behaviour',0,1,1,0,1,'{\"name\":\"plg_behaviour_compat\",\"type\":\"plugin\",\"creationDate\":\"2023-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_COMPAT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Behaviour\\\\Compat\",\"filename\":\"compat\"}','{\"classes_aliases\":\"1\",\"es5_assets\":\"1\"}','',NULL,NULL,1,0,NULL),(95,0,'plg_behaviour_taggable','plugin','taggable','','behaviour',0,1,1,0,1,'{\"name\":\"plg_behaviour_taggable\",\"type\":\"plugin\",\"creationDate\":\"2015-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_BEHAVIOUR_TAGGABLE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Behaviour\\\\Taggable\",\"filename\":\"taggable\"}','{}','',NULL,NULL,2,0,NULL),(96,0,'plg_behaviour_versionable','plugin','versionable','','behaviour',0,1,1,0,1,'{\"name\":\"plg_behaviour_versionable\",\"type\":\"plugin\",\"creationDate\":\"2015-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_BEHAVIOUR_VERSIONABLE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Behaviour\\\\Versionable\",\"filename\":\"versionable\"}','{}','',NULL,NULL,3,0,NULL),(97,0,'plg_content_confirmconsent','plugin','confirmconsent','','content',0,0,1,0,1,'{\"name\":\"plg_content_confirmconsent\",\"type\":\"plugin\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_CONTENT_CONFIRMCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\ConfirmConsent\",\"filename\":\"confirmconsent\"}','{}','',NULL,NULL,1,0,NULL),(98,0,'plg_content_contact','plugin','contact','','content',0,1,1,0,1,'{\"name\":\"plg_content_contact\",\"type\":\"plugin\",\"creationDate\":\"2014-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2014 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.2\",\"description\":\"PLG_CONTENT_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\Contact\",\"filename\":\"contact\"}','','',NULL,NULL,2,0,NULL),(99,0,'plg_content_emailcloak','plugin','emailcloak','','content',0,1,1,0,1,'{\"name\":\"plg_content_emailcloak\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_EMAILCLOAK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\EmailCloak\",\"filename\":\"emailcloak\"}','{\"mode\":\"1\"}','',NULL,NULL,3,0,NULL),(100,0,'plg_content_fields','plugin','fields','','content',0,1,1,0,1,'{\"name\":\"plg_content_fields\",\"type\":\"plugin\",\"creationDate\":\"2017-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_CONTENT_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\Fields\",\"filename\":\"fields\"}','','',NULL,NULL,4,0,NULL),(101,0,'plg_content_finder','plugin','finder','','content',0,1,1,0,1,'{\"name\":\"plg_content_finder\",\"type\":\"plugin\",\"creationDate\":\"2011-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\Finder\",\"filename\":\"finder\"}','','',NULL,NULL,5,0,NULL),(102,0,'plg_content_joomla','plugin','joomla','','content',0,1,1,0,1,'{\"name\":\"plg_content_joomla\",\"type\":\"plugin\",\"creationDate\":\"2010-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\Joomla\",\"filename\":\"joomla\"}','','',NULL,NULL,6,0,NULL),(103,0,'plg_content_loadmodule','plugin','loadmodule','','content',0,1,1,0,1,'{\"name\":\"plg_content_loadmodule\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOADMODULE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\LoadModule\",\"filename\":\"loadmodule\"}','{\"style\":\"xhtml\"}','',NULL,NULL,7,0,NULL),(104,0,'plg_content_pagebreak','plugin','pagebreak','','content',0,1,1,0,1,'{\"name\":\"plg_content_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTENT_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\PageBreak\",\"filename\":\"pagebreak\"}','{\"title\":\"1\",\"multipage_toc\":\"1\",\"showall\":\"1\"}','',NULL,NULL,8,0,NULL),(105,0,'plg_content_pagenavigation','plugin','pagenavigation','','content',0,1,1,0,1,'{\"name\":\"plg_content_pagenavigation\",\"type\":\"plugin\",\"creationDate\":\"2006-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_PAGENAVIGATION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\PageNavigation\",\"filename\":\"pagenavigation\"}','{\"position\":\"1\"}','',NULL,NULL,9,0,NULL),(106,0,'plg_content_vote','plugin','vote','','content',0,0,1,0,1,'{\"name\":\"plg_content_vote\",\"type\":\"plugin\",\"creationDate\":\"2005-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_VOTE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Content\\\\Vote\",\"filename\":\"vote\"}','','',NULL,NULL,10,0,NULL),(107,0,'plg_editors-xtd_article','plugin','article','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_article\",\"type\":\"plugin\",\"creationDate\":\"2009-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Article\",\"filename\":\"article\"}','','',NULL,NULL,1,0,NULL),(108,0,'plg_editors-xtd_contact','plugin','contact','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_contact\",\"type\":\"plugin\",\"creationDate\":\"2016-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Contact\",\"filename\":\"contact\"}','','',NULL,NULL,2,0,NULL),(109,0,'plg_editors-xtd_fields','plugin','fields','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_fields\",\"type\":\"plugin\",\"creationDate\":\"2017-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Fields\",\"filename\":\"fields\"}','','',NULL,NULL,3,0,NULL),(110,0,'plg_editors-xtd_image','plugin','image','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_image\",\"type\":\"plugin\",\"creationDate\":\"2004-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_IMAGE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Image\",\"filename\":\"image\"}','','',NULL,NULL,4,0,NULL),(111,0,'plg_editors-xtd_menu','plugin','menu','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_menu\",\"type\":\"plugin\",\"creationDate\":\"2016-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_EDITORS-XTD_MENU_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Menu\",\"filename\":\"menu\"}','','',NULL,NULL,5,0,NULL),(112,0,'plg_editors-xtd_module','plugin','module','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_module\",\"type\":\"plugin\",\"creationDate\":\"2015-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2015 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_MODULE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\Module\",\"filename\":\"module\"}','','',NULL,NULL,6,0,NULL),(113,0,'plg_editors-xtd_pagebreak','plugin','pagebreak','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_pagebreak\",\"type\":\"plugin\",\"creationDate\":\"2004-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EDITORSXTD_PAGEBREAK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\PageBreak\",\"filename\":\"pagebreak\"}','','',NULL,NULL,7,0,NULL),(114,0,'plg_editors-xtd_readmore','plugin','readmore','','editors-xtd',0,1,1,0,1,'{\"name\":\"plg_editors-xtd_readmore\",\"type\":\"plugin\",\"creationDate\":\"2006-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_READMORE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\EditorsXtd\\\\ReadMore\",\"filename\":\"readmore\"}','','',NULL,NULL,8,0,NULL),(115,0,'plg_editors_codemirror','plugin','codemirror','','editors',0,1,1,0,1,'{\"name\":\"plg_editors_codemirror\",\"type\":\"plugin\",\"creationDate\":\"28 March 2011\",\"author\":\"Marijn Haverbeke\",\"copyright\":\"Copyright (C) 2014 - 2021 by Marijn Haverbeke <[email protected]> and others\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/codemirror.net\\/\",\"version\":\"6.0.0\",\"description\":\"PLG_CODEMIRROR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Editors\\\\CodeMirror\",\"filename\":\"codemirror\"}','{\"lineNumbers\":\"1\",\"lineWrapping\":\"1\",\"matchTags\":\"1\",\"matchBrackets\":\"1\",\"marker-gutter\":\"1\",\"autoCloseTags\":\"1\",\"autoCloseBrackets\":\"1\",\"autoFocus\":\"1\",\"theme\":\"default\",\"tabmode\":\"indent\"}','',NULL,NULL,1,0,NULL),(116,0,'plg_editors_none','plugin','none','','editors',0,1,1,1,1,'{\"name\":\"plg_editors_none\",\"type\":\"plugin\",\"creationDate\":\"2005-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_NONE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Editors\\\\None\",\"filename\":\"none\"}','','',NULL,NULL,2,0,NULL),(117,0,'plg_editors_tinymce','plugin','tinymce','','editors',0,1,1,0,1,'{\"name\":\"plg_editors_tinymce\",\"type\":\"plugin\",\"creationDate\":\"2005-08\",\"author\":\"Tiny Technologies, Inc\",\"copyright\":\"Tiny Technologies, Inc\",\"authorEmail\":\"N\\/A\",\"authorUrl\":\"https:\\/\\/www.tiny.cloud\",\"version\":\"6.8.6\",\"description\":\"PLG_TINY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Editors\\\\TinyMCE\",\"filename\":\"tinymce\"}','{\"configuration\":{\"toolbars\":{\"2\":{\"toolbar1\":[\"bold\",\"underline\",\"strikethrough\",\"|\",\"undo\",\"redo\",\"|\",\"bullist\",\"numlist\",\"|\",\"pastetext\"]},\"1\":{\"menu\":[\"edit\",\"insert\",\"view\",\"format\",\"table\",\"tools\"],\"toolbar1\":[\"bold\",\"italic\",\"underline\",\"strikethrough\",\"|\",\"alignleft\",\"aligncenter\",\"alignright\",\"alignjustify\",\"|\",\"blocks\",\"|\",\"bullist\",\"numlist\",\"|\",\"outdent\",\"indent\",\"|\",\"undo\",\"redo\",\"|\",\"link\",\"unlink\",\"anchor\",\"code\",\"|\",\"hr\",\"table\",\"|\",\"subscript\",\"superscript\",\"|\",\"charmap\",\"pastetext\",\"preview\"]},\"0\":{\"menu\":[\"edit\",\"insert\",\"view\",\"format\",\"table\",\"tools\"],\"toolbar1\":[\"bold\",\"italic\",\"underline\",\"strikethrough\",\"|\",\"alignleft\",\"aligncenter\",\"alignright\",\"alignjustify\",\"|\",\"styles\",\"|\",\"blocks\",\"fontfamily\",\"fontsize\",\"|\",\"searchreplace\",\"|\",\"bullist\",\"numlist\",\"|\",\"outdent\",\"indent\",\"|\",\"undo\",\"redo\",\"|\",\"link\",\"unlink\",\"anchor\",\"image\",\"|\",\"code\",\"|\",\"forecolor\",\"backcolor\",\"|\",\"fullscreen\",\"|\",\"table\",\"|\",\"subscript\",\"superscript\",\"|\",\"charmap\",\"emoticons\",\"media\",\"hr\",\"ltr\",\"rtl\",\"|\",\"cut\",\"copy\",\"paste\",\"pastetext\",\"|\",\"visualchars\",\"visualblocks\",\"nonbreaking\",\"blockquote\",\"jtemplate\",\"|\",\"print\",\"preview\",\"codesample\",\"insertdatetime\",\"removeformat\"]}},\"setoptions\":{\"2\":{\"access\":[\"1\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"0\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"},\"1\":{\"access\":[\"6\",\"2\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"0\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"},\"0\":{\"access\":[\"7\",\"4\",\"8\"],\"skin\":\"0\",\"skin_admin\":\"0\",\"mobile\":\"0\",\"drag_drop\":\"1\",\"path\":\"\",\"entity_encoding\":\"raw\",\"lang_mode\":\"1\",\"text_direction\":\"ltr\",\"content_css\":\"1\",\"content_css_custom\":\"\",\"relative_urls\":\"1\",\"newlines\":\"0\",\"use_config_textfilters\":\"0\",\"invalid_elements\":\"script,applet,iframe\",\"valid_elements\":\"\",\"extended_elements\":\"\",\"resizing\":\"1\",\"resize_horizontal\":\"1\",\"element_path\":\"1\",\"wordcount\":\"1\",\"image_advtab\":\"1\",\"advlist\":\"1\",\"autosave\":\"1\",\"contextmenu\":\"1\",\"custom_plugin\":\"\",\"custom_button\":\"\"}}},\"sets_amount\":3,\"html_height\":\"550\",\"html_width\":\"750\"}','',NULL,NULL,3,0,NULL),(118,0,'plg_extension_finder','plugin','finder','','extension',0,1,1,0,1,'{\"name\":\"plg_extension_finder\",\"type\":\"plugin\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_EXTENSION_FINDER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Extension\\\\Finder\",\"filename\":\"finder\"}','','',NULL,NULL,1,0,NULL),(119,0,'plg_extension_joomla','plugin','joomla','','extension',0,1,1,0,1,'{\"name\":\"plg_extension_joomla\",\"type\":\"plugin\",\"creationDate\":\"2010-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_EXTENSION_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Extension\\\\Joomla\",\"filename\":\"joomla\"}','','',NULL,NULL,2,0,NULL),(120,0,'plg_extension_namespacemap','plugin','namespacemap','','extension',0,1,1,1,1,'{\"name\":\"plg_extension_namespacemap\",\"type\":\"plugin\",\"creationDate\":\"2017-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_EXTENSION_NAMESPACEMAP_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Extension\\\\NamespaceMap\",\"filename\":\"namespacemap\"}','{}','',NULL,NULL,3,0,NULL),(121,0,'plg_fields_calendar','plugin','calendar','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_calendar\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Calendar\",\"filename\":\"calendar\"}','','',NULL,NULL,1,0,NULL),(122,0,'plg_fields_checkboxes','plugin','checkboxes','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_checkboxes\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_CHECKBOXES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Checkboxes\",\"filename\":\"checkboxes\"}','','',NULL,NULL,2,0,NULL),(123,0,'plg_fields_color','plugin','color','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_color\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_COLOR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Color\",\"filename\":\"color\"}','','',NULL,NULL,3,0,NULL),(124,0,'plg_fields_editor','plugin','editor','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_editor\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_EDITOR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Editor\",\"filename\":\"editor\"}','{\"buttons\":0,\"width\":\"100%\",\"height\":\"250px\",\"filter\":\"\\\\Joomla\\\\CMS\\\\Component\\\\ComponentHelper::filterText\"}','',NULL,NULL,4,0,NULL),(125,0,'plg_fields_imagelist','plugin','imagelist','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_imagelist\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_IMAGELIST_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Imagelist\",\"filename\":\"imagelist\"}','','',NULL,NULL,5,0,NULL),(126,0,'plg_fields_integer','plugin','integer','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_integer\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_INTEGER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Integer\",\"filename\":\"integer\"}','{\"multiple\":\"0\",\"first\":\"1\",\"last\":\"100\",\"step\":\"1\"}','',NULL,NULL,6,0,NULL),(127,0,'plg_fields_list','plugin','list','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_list\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_LIST_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\ListField\",\"filename\":\"list\"}','','',NULL,NULL,7,0,NULL),(128,0,'plg_fields_media','plugin','media','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_media\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Media\",\"filename\":\"media\"}','','',NULL,NULL,8,0,NULL),(129,0,'plg_fields_radio','plugin','radio','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_radio\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_RADIO_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Radio\",\"filename\":\"radio\"}','','',NULL,NULL,9,0,NULL),(130,0,'plg_fields_sql','plugin','sql','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_sql\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_SQL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\SQL\",\"filename\":\"sql\"}','','',NULL,NULL,10,0,NULL),(131,0,'plg_fields_subform','plugin','subform','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_subform\",\"type\":\"plugin\",\"creationDate\":\"2017-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_FIELDS_SUBFORM_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Subform\",\"filename\":\"subform\"}','','',NULL,NULL,11,0,NULL),(132,0,'plg_fields_text','plugin','text','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_text\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Text\",\"filename\":\"text\"}','','',NULL,NULL,12,0,NULL),(133,0,'plg_fields_textarea','plugin','textarea','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_textarea\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_TEXTAREA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Textarea\",\"filename\":\"textarea\"}','{\"rows\":10,\"cols\":10,\"maxlength\":\"\",\"filter\":\"\\\\Joomla\\\\CMS\\\\Component\\\\ComponentHelper::filterText\"}','',NULL,NULL,13,0,NULL),(134,0,'plg_fields_url','plugin','url','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_url\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_URL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\Url\",\"filename\":\"url\"}','','',NULL,NULL,14,0,NULL),(135,0,'plg_fields_user','plugin','user','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_user\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\User\",\"filename\":\"user\"}','','',NULL,NULL,15,0,NULL),(136,0,'plg_fields_usergrouplist','plugin','usergrouplist','','fields',0,1,1,0,1,'{\"name\":\"plg_fields_usergrouplist\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_FIELDS_USERGROUPLIST_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Fields\\\\UsergroupList\",\"filename\":\"usergrouplist\"}','','',NULL,NULL,16,0,NULL),(137,0,'plg_filesystem_local','plugin','local','','filesystem',0,1,1,0,1,'{\"name\":\"plg_filesystem_local\",\"type\":\"plugin\",\"creationDate\":\"2017-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_FILESYSTEM_LOCAL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Filesystem\\\\Local\",\"filename\":\"local\"}','{}','',NULL,NULL,1,0,NULL),(138,0,'plg_finder_categories','plugin','categories','','finder',0,1,1,0,1,'{\"name\":\"plg_finder_categories\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CATEGORIES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Finder\\\\Categories\",\"filename\":\"categories\"}','','',NULL,NULL,1,0,NULL),(139,0,'plg_finder_contacts','plugin','contacts','','finder',0,1,1,0,1,'{\"name\":\"plg_finder_contacts\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTACTS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Finder\\\\Contacts\",\"filename\":\"contacts\"}','','',NULL,NULL,2,0,NULL),(140,0,'plg_finder_content','plugin','content','','finder',0,1,1,0,1,'{\"name\":\"plg_finder_content\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Finder\\\\Content\",\"filename\":\"content\"}','','',NULL,NULL,3,0,NULL),(141,0,'plg_finder_newsfeeds','plugin','newsfeeds','','finder',0,1,1,0,1,'{\"name\":\"plg_finder_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Finder\\\\Newsfeeds\",\"filename\":\"newsfeeds\"}','','',NULL,NULL,4,0,NULL),(142,0,'plg_finder_tags','plugin','tags','','finder',0,1,1,0,1,'{\"name\":\"plg_finder_tags\",\"type\":\"plugin\",\"creationDate\":\"2013-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_FINDER_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Finder\\\\Tags\",\"filename\":\"tags\"}','','',NULL,NULL,5,0,NULL),(143,0,'plg_installer_folderinstaller','plugin','folderinstaller','','installer',0,1,1,0,1,'{\"name\":\"plg_installer_folderinstaller\",\"type\":\"plugin\",\"creationDate\":\"2016-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_FOLDERINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Installer\\\\Folder\",\"filename\":\"folderinstaller\"}','','',NULL,NULL,2,0,NULL),(144,0,'plg_installer_override','plugin','override','','installer',0,1,1,0,1,'{\"name\":\"plg_installer_override\",\"type\":\"plugin\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_INSTALLER_OVERRIDE_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Installer\\\\Override\",\"filename\":\"override\"}','','',NULL,NULL,4,0,NULL),(145,0,'plg_installer_packageinstaller','plugin','packageinstaller','','installer',0,1,1,0,1,'{\"name\":\"plg_installer_packageinstaller\",\"type\":\"plugin\",\"creationDate\":\"2016-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_PACKAGEINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Installer\\\\Package\",\"filename\":\"packageinstaller\"}','','',NULL,NULL,1,0,NULL),(146,0,'plg_installer_urlinstaller','plugin','urlinstaller','','installer',0,1,1,0,1,'{\"name\":\"plg_installer_urlinstaller\",\"type\":\"plugin\",\"creationDate\":\"2016-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.6.0\",\"description\":\"PLG_INSTALLER_URLINSTALLER_PLUGIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Installer\\\\Url\",\"filename\":\"urlinstaller\"}','','',NULL,NULL,3,0,NULL),(147,0,'plg_installer_webinstaller','plugin','webinstaller','','installer',0,1,1,0,1,'{\"name\":\"plg_installer_webinstaller\",\"type\":\"plugin\",\"creationDate\":\"2017-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_INSTALLER_WEBINSTALLER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Installer\\\\Web\",\"filename\":\"webinstaller\"}','{\"tab_position\":\"1\"}','',NULL,NULL,5,0,NULL),(148,0,'plg_media-action_crop','plugin','crop','','media-action',0,1,1,0,1,'{\"name\":\"plg_media-action_crop\",\"type\":\"plugin\",\"creationDate\":\"2017-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_MEDIA-ACTION_CROP_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\MediaAction\\\\Crop\",\"filename\":\"crop\"}','{}','',NULL,NULL,1,0,NULL),(149,0,'plg_media-action_resize','plugin','resize','','media-action',0,1,1,0,1,'{\"name\":\"plg_media-action_resize\",\"type\":\"plugin\",\"creationDate\":\"2017-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_MEDIA-ACTION_RESIZE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\MediaAction\\\\Resize\",\"filename\":\"resize\"}','{}','',NULL,NULL,2,0,NULL),(150,0,'plg_media-action_rotate','plugin','rotate','','media-action',0,1,1,0,1,'{\"name\":\"plg_media-action_rotate\",\"type\":\"plugin\",\"creationDate\":\"2017-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_MEDIA-ACTION_ROTATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\MediaAction\\\\Rotate\",\"filename\":\"rotate\"}','{}','',NULL,NULL,3,0,NULL),(151,0,'plg_privacy_actionlogs','plugin','actionlogs','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_actionlogs\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\Actionlogs\",\"filename\":\"actionlogs\"}','{}','',NULL,NULL,1,0,NULL),(152,0,'plg_privacy_consents','plugin','consents','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_consents\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONSENTS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\Consents\",\"filename\":\"consents\"}','{}','',NULL,NULL,2,0,NULL),(153,0,'plg_privacy_contact','plugin','contact','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_contact\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\Contact\",\"filename\":\"contact\"}','{}','',NULL,NULL,3,0,NULL),(154,0,'plg_privacy_content','plugin','content','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_content\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\Content\",\"filename\":\"content\"}','{}','',NULL,NULL,4,0,NULL),(155,0,'plg_privacy_message','plugin','message','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_message\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_MESSAGE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\Message\",\"filename\":\"message\"}','{}','',NULL,NULL,5,0,NULL),(156,0,'plg_privacy_user','plugin','user','','privacy',0,1,1,0,1,'{\"name\":\"plg_privacy_user\",\"type\":\"plugin\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_PRIVACY_USER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Privacy\\\\User\",\"filename\":\"user\"}','{}','',NULL,NULL,6,0,NULL),(157,0,'plg_quickicon_joomlaupdate','plugin','joomlaupdate','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\Joomlaupdate\",\"filename\":\"joomlaupdate\"}','','',NULL,NULL,1,0,NULL),(158,0,'plg_quickicon_extensionupdate','plugin','extensionupdate','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_extensionupdate\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_QUICKICON_EXTENSIONUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\Extensionupdate\",\"filename\":\"extensionupdate\"}','','',NULL,NULL,2,0,NULL),(159,0,'plg_quickicon_overridecheck','plugin','overridecheck','','quickicon',0,0,1,0,1,'{\"name\":\"plg_quickicon_overridecheck\",\"type\":\"plugin\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_QUICKICON_OVERRIDECHECK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\OverrideCheck\",\"filename\":\"overridecheck\"}','','',NULL,NULL,3,0,NULL),(160,0,'plg_quickicon_downloadkey','plugin','downloadkey','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_downloadkey\",\"type\":\"plugin\",\"creationDate\":\"2019-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_QUICKICON_DOWNLOADKEY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\Downloadkey\",\"filename\":\"downloadkey\"}','','',NULL,NULL,4,0,NULL),(161,0,'plg_quickicon_privacycheck','plugin','privacycheck','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_privacycheck\",\"type\":\"plugin\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_QUICKICON_PRIVACYCHECK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\PrivacyCheck\",\"filename\":\"privacycheck\"}','{}','',NULL,NULL,5,0,NULL),(162,0,'plg_quickicon_phpversioncheck','plugin','phpversioncheck','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_phpversioncheck\",\"type\":\"plugin\",\"creationDate\":\"2016-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_QUICKICON_PHPVERSIONCHECK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\PhpVersionCheck\",\"filename\":\"phpversioncheck\"}','','',NULL,NULL,6,0,NULL),(163,0,'plg_quickicon_eos','plugin','eos','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_eos\",\"type\":\"plugin\",\"creationDate\":\"2023-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.4.0\",\"description\":\"PLG_QUICKICON_EOS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\Eos\",\"filename\":\"eos\"}','','',NULL,NULL,7,0,NULL),(164,0,'plg_sampledata_blog','plugin','blog','','sampledata',0,1,1,0,1,'{\"name\":\"plg_sampledata_blog\",\"type\":\"plugin\",\"creationDate\":\"2017-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.8.0\",\"description\":\"PLG_SAMPLEDATA_BLOG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\SampleData\\\\Blog\",\"filename\":\"blog\"}','','',NULL,NULL,1,0,NULL),(165,0,'plg_sampledata_multilang','plugin','multilang','','sampledata',0,1,1,0,1,'{\"name\":\"plg_sampledata_multilang\",\"type\":\"plugin\",\"creationDate\":\"2018-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_SAMPLEDATA_MULTILANG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\SampleData\\\\MultiLanguage\",\"filename\":\"multilang\"}','','',NULL,NULL,2,0,NULL),(166,0,'plg_schemaorg_article','plugin','article','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_article\",\"type\":\"plugin\",\"creationDate\":\"2024-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2024 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.1.0\",\"description\":\"PLG_SCHEMAORG_ARTICLE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Article\",\"filename\":\"article\"}','{}','',NULL,NULL,1,0,NULL),(167,0,'plg_schemaorg_blogposting','plugin','blogposting','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_blogposting\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_BLOGPOSTING_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\BlogPosting\",\"filename\":\"blogposting\"}','{}','',NULL,NULL,2,0,NULL),(168,0,'plg_schemaorg_book','plugin','book','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_book\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_BOOK_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Book\",\"filename\":\"book\"}','{}','',NULL,NULL,3,0,NULL),(169,0,'plg_schemaorg_event','plugin','event','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_event\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_EVENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Event\",\"filename\":\"event\"}','{}','',NULL,NULL,4,0,NULL),(170,0,'plg_schemaorg_jobposting','plugin','jobposting','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_jobposting\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_JOBPOSTING_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\JobPosting\",\"filename\":\"jobposting\"}','{}','',NULL,NULL,5,0,NULL),(171,0,'plg_schemaorg_organization','plugin','organization','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_organization\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_ORGANIZATION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Organization\",\"filename\":\"organization\"}','{}','',NULL,NULL,6,0,NULL),(172,0,'plg_schemaorg_person','plugin','person','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_person\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_PERSON_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Person\",\"filename\":\"person\"}','{}','',NULL,NULL,7,0,NULL),(173,0,'plg_schemaorg_recipe','plugin','recipe','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_recipe\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SCHEMAORG_RECIPE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Recipe\",\"filename\":\"recipe\"}','{}','',NULL,NULL,8,0,NULL),(174,0,'plg_schemaorg_custom','plugin','custom','','schemaorg',0,1,1,0,1,'{\"name\":\"plg_schemaorg_custom\",\"type\":\"plugin\",\"creationDate\":\"2024-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2024 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.1.0\",\"description\":\"PLG_SCHEMAORG_CUSTOM_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Schemaorg\\\\Custom\",\"filename\":\"custom\"}','{}','',NULL,NULL,9,0,NULL),(175,0,'plg_system_accessibility','plugin','accessibility','','system',0,1,1,0,1,'{\"name\":\"plg_system_accessibility\",\"type\":\"plugin\",\"creationDate\":\"2020-02-15\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_SYSTEM_ACCESSIBILITY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Accessibility\",\"filename\":\"accessibility\"}','{\"section\":\"site\",\"useEmojis\":\"true\"}','',NULL,NULL,1,0,''),(176,0,'plg_system_actionlogs','plugin','actionlogs','','system',0,1,1,0,1,'{\"name\":\"plg_system_actionlogs\",\"type\":\"plugin\",\"creationDate\":\"2018-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_ACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\ActionLogs\",\"filename\":\"actionlogs\"}','{}','',NULL,NULL,2,0,NULL),(177,0,'plg_system_cache','plugin','cache','','system',0,0,1,0,1,'{\"name\":\"plg_system_cache\",\"type\":\"plugin\",\"creationDate\":\"2007-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CACHE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Cache\",\"filename\":\"cache\"}','{\"browsercache\":\"0\",\"cachetime\":\"15\"}','',NULL,NULL,3,0,NULL),(178,0,'plg_system_debug','plugin','debug','','system',0,1,1,0,1,'{\"name\":\"plg_system_debug\",\"type\":\"plugin\",\"creationDate\":\"2006-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_DEBUG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Debug\",\"filename\":\"debug\"}','{\"profile\":\"1\",\"queries\":\"1\",\"memory\":\"1\",\"language_files\":\"1\",\"language_strings\":\"1\",\"strip-first\":\"1\",\"strip-prefix\":\"\",\"strip-suffix\":\"\"}','',NULL,NULL,4,0,NULL),(179,0,'plg_system_fields','plugin','fields','','system',0,1,1,0,1,'{\"name\":\"plg_system_fields\",\"type\":\"plugin\",\"creationDate\":\"2016-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.7.0\",\"description\":\"PLG_SYSTEM_FIELDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Fields\",\"filename\":\"fields\"}','','',NULL,NULL,5,0,NULL),(180,0,'plg_system_highlight','plugin','highlight','','system',0,1,1,0,1,'{\"name\":\"plg_system_highlight\",\"type\":\"plugin\",\"creationDate\":\"2011-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_HIGHLIGHT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Highlight\",\"filename\":\"highlight\"}','','',NULL,NULL,6,0,NULL),(181,0,'plg_system_httpheaders','plugin','httpheaders','','system',0,1,1,0,1,'{\"name\":\"plg_system_httpheaders\",\"type\":\"plugin\",\"creationDate\":\"2017-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_SYSTEM_HTTPHEADERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Httpheaders\",\"filename\":\"httpheaders\"}','{}','',NULL,NULL,7,0,NULL),(182,0,'plg_system_jooa11y','plugin','jooa11y','','system',0,1,1,0,1,'{\"name\":\"plg_system_jooa11y\",\"type\":\"plugin\",\"creationDate\":\"2022-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.2.0\",\"description\":\"PLG_SYSTEM_JOOA11Y_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Jooa11y\",\"filename\":\"jooa11y\"}','','',NULL,NULL,8,0,NULL),(183,0,'plg_system_languagecode','plugin','languagecode','','system',0,0,1,0,1,'{\"name\":\"plg_system_languagecode\",\"type\":\"plugin\",\"creationDate\":\"2011-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2011 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGECODE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\LanguageCode\",\"filename\":\"languagecode\"}','','',NULL,NULL,9,0,NULL),(184,0,'plg_system_languagefilter','plugin','languagefilter','','system',0,0,1,0,1,'{\"name\":\"plg_system_languagefilter\",\"type\":\"plugin\",\"creationDate\":\"2010-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2010 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LANGUAGEFILTER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\LanguageFilter\",\"filename\":\"languagefilter\"}','','',NULL,NULL,10,0,NULL),(185,0,'plg_system_log','plugin','log','','system',0,1,1,0,1,'{\"name\":\"plg_system_log\",\"type\":\"plugin\",\"creationDate\":\"2007-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_LOG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Log\",\"filename\":\"log\"}','','',NULL,NULL,11,0,NULL),(186,0,'plg_system_logout','plugin','logout','','system',0,1,1,0,1,'{\"name\":\"plg_system_logout\",\"type\":\"plugin\",\"creationDate\":\"2009-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_LOGOUT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Logout\",\"filename\":\"logout\"}','','',NULL,NULL,12,0,NULL),(187,0,'plg_system_privacyconsent','plugin','privacyconsent','','system',0,0,1,0,1,'{\"name\":\"plg_system_privacyconsent\",\"type\":\"plugin\",\"creationDate\":\"2018-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_SYSTEM_PRIVACYCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\PrivacyConsent\",\"filename\":\"privacyconsent\"}','{}','',NULL,NULL,14,0,NULL),(188,0,'plg_system_redirect','plugin','redirect','','system',0,0,1,0,1,'{\"name\":\"plg_system_redirect\",\"type\":\"plugin\",\"creationDate\":\"2009-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SYSTEM_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Redirect\",\"filename\":\"redirect\"}','','',NULL,NULL,15,0,NULL),(189,0,'plg_system_remember','plugin','remember','','system',0,1,1,0,1,'{\"name\":\"plg_system_remember\",\"type\":\"plugin\",\"creationDate\":\"2007-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_REMEMBER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Remember\",\"filename\":\"remember\"}','','',NULL,NULL,16,0,NULL),(190,0,'plg_system_schedulerunner','plugin','schedulerunner','','system',0,1,1,0,1,'{\"name\":\"plg_system_schedulerunner\",\"type\":\"plugin\",\"creationDate\":\"2021-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1\",\"description\":\"PLG_SYSTEM_SCHEDULERUNNER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\ScheduleRunner\",\"filename\":\"schedulerunner\"}','{}','',NULL,NULL,17,0,NULL),(191,0,'plg_system_schemaorg','plugin','schemaorg','','system',0,1,1,0,1,'{\"name\":\"plg_system_schemaorg\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_SYSTEM_SCHEMAORG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Schemaorg\",\"filename\":\"schemaorg\"}','{}','',NULL,NULL,18,0,NULL),(192,0,'plg_system_sef','plugin','sef','','system',0,1,1,0,1,'{\"name\":\"plg_system_sef\",\"type\":\"plugin\",\"creationDate\":\"2007-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2007 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_SEF_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Sef\",\"filename\":\"sef\"}','{\"domain\":\"\",\"indexphp\":\"1\",\"trailingslash\":\"0\",\"enforcesuffix\":\"1\",\"strictrouting\":\"1\"}','',NULL,NULL,19,0,NULL),(193,0,'plg_system_shortcut','plugin','shortcut','','system',0,1,1,0,1,'{\"name\":\"plg_system_shortcut\",\"type\":\"plugin\",\"creationDate\":\"2022-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2022 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.2.0\",\"description\":\"PLG_SYSTEM_SHORTCUT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Shortcut\",\"filename\":\"shortcut\"}','{}','',NULL,NULL,21,0,NULL),(194,0,'plg_system_skipto','plugin','skipto','','system',0,1,1,0,1,'{\"name\":\"plg_system_skipto\",\"type\":\"plugin\",\"creationDate\":\"2020-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_SYSTEM_SKIPTO_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Skipto\",\"filename\":\"skipto\"}','{}','',NULL,NULL,22,0,NULL),(195,0,'plg_system_stats','plugin','stats','','system',0,0,1,0,1,'{\"name\":\"plg_system_stats\",\"type\":\"plugin\",\"creationDate\":\"2013-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.5.0\",\"description\":\"PLG_SYSTEM_STATS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Stats\",\"filename\":\"stats\"}','{\"mode\":3,\"lastrun\":\"\",\"unique_id\":\"3b6f4b228da443cdf7daebcdb2cddf062dc715ee\",\"interval\":12}','',NULL,NULL,23,0,NULL),(196,0,'plg_system_task_notification','plugin','tasknotification','','system',0,1,1,0,1,'{\"name\":\"plg_system_task_notification\",\"type\":\"plugin\",\"creationDate\":\"2021-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1\",\"description\":\"PLG_SYSTEM_TASK_NOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\TaskNotification\",\"filename\":\"tasknotification\"}','','',NULL,NULL,24,0,NULL),(197,0,'plg_system_webauthn','plugin','webauthn','','system',0,1,1,0,1,'{\"name\":\"plg_system_webauthn\",\"type\":\"plugin\",\"creationDate\":\"2019-07-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_SYSTEM_WEBAUTHN_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\Webauthn\",\"filename\":\"webauthn\"}','{}','',NULL,NULL,26,0,NULL),(198,0,'plg_task_check_files','plugin','checkfiles','','task',0,1,1,0,1,'{\"name\":\"plg_task_check_files\",\"type\":\"plugin\",\"creationDate\":\"2021-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1\",\"description\":\"PLG_TASK_CHECK_FILES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\Checkfiles\",\"filename\":\"checkfiles\"}','{}','',NULL,NULL,1,0,NULL),(199,0,'plg_task_deleteactionlogs','plugin','deleteactionlogs','','task',0,1,1,0,1,'{\"name\":\"plg_task_deleteactionlogs\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_DELETEACTIONLOGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\DeleteActionLogs\",\"filename\":\"deleteactionlogs\"}','{}','',NULL,NULL,2,0,NULL),(200,0,'plg_task_globalcheckin','plugin','globalcheckin','','task',0,1,1,0,1,'{\"name\":\"plg_task_globalcheckin\",\"type\":\"plugin\",\"creationDate\":\"2023-06-22\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_GLOBALCHECKIN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\Globalcheckin\",\"filename\":\"globalcheckin\"}','{}','',NULL,NULL,3,0,NULL),(201,0,'plg_task_requests','plugin','requests','','task',0,1,1,0,1,'{\"name\":\"plg_task_requests\",\"type\":\"plugin\",\"creationDate\":\"2021-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1\",\"description\":\"PLG_TASK_REQUESTS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\Requests\",\"filename\":\"requests\"}','{}','',NULL,NULL,4,0,NULL),(202,0,'plg_task_privacyconsent','plugin','privacyconsent','','task',0,1,1,0,1,'{\"name\":\"plg_task_privacyconsent\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_PRIVACYCONSENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\PrivacyConsent\",\"filename\":\"privacyconsent\"}','{}','',NULL,NULL,5,0,NULL),(203,0,'plg_task_rotatelogs','plugin','rotatelogs','','task',0,1,1,0,1,'{\"name\":\"plg_task_rotatelogs\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_ROTATELOGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\RotateLogs\",\"filename\":\"rotatelogs\"}','{}','',NULL,NULL,6,0,NULL),(204,0,'plg_task_sessiongc','plugin','sessiongc','','task',0,1,1,0,1,'{\"name\":\"plg_task_sessiongc\",\"type\":\"plugin\",\"creationDate\":\"2023-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_SESSIONGC_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\SessionGC\",\"filename\":\"sessiongc\"}','{}','',NULL,NULL,7,0,NULL),(205,0,'plg_task_site_status','plugin','sitestatus','','task',0,1,1,0,1,'{\"name\":\"plg_task_site_status\",\"type\":\"plugin\",\"creationDate\":\"2021-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1\",\"description\":\"PLG_TASK_SITE_STATUS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\SiteStatus\",\"filename\":\"sitestatus\"}','{}','',NULL,NULL,8,0,NULL),(206,0,'plg_task_updatenotification','plugin','updatenotification','','task',0,0,1,0,1,'{\"name\":\"plg_task_updatenotification\",\"type\":\"plugin\",\"creationDate\":\"2023-07\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.0.0\",\"description\":\"PLG_TASK_UPDATENOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Task\\\\UpdateNotification\",\"filename\":\"updatenotification\"}','{}','',NULL,NULL,9,0,NULL),(207,0,'plg_multifactorauth_totp','plugin','totp','','multifactorauth',0,1,1,0,1,'{\"name\":\"plg_multifactorauth_totp\",\"type\":\"plugin\",\"creationDate\":\"2013-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_MULTIFACTORAUTH_TOTP_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Multifactorauth\\\\Totp\",\"filename\":\"totp\"}','','',NULL,NULL,1,0,NULL),(208,0,'plg_multifactorauth_yubikey','plugin','yubikey','','multifactorauth',0,1,1,0,1,'{\"name\":\"plg_multifactorauth_yubikey\",\"type\":\"plugin\",\"creationDate\":\"2013-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2013 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.2.0\",\"description\":\"PLG_MULTIFACTORAUTH_YUBIKEY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Multifactorauth\\\\Yubikey\",\"filename\":\"yubikey\"}','','',NULL,NULL,2,0,NULL),(209,0,'plg_multifactorauth_webauthn','plugin','webauthn','','multifactorauth',0,1,1,0,1,'{\"name\":\"plg_multifactorauth_webauthn\",\"type\":\"plugin\",\"creationDate\":\"2022-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2022 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.2.0\",\"description\":\"PLG_MULTIFACTORAUTH_WEBAUTHN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Multifactorauth\\\\Webauthn\",\"filename\":\"webauthn\"}','','',NULL,NULL,3,0,NULL),(210,0,'plg_multifactorauth_email','plugin','email','','multifactorauth',0,1,1,0,1,'{\"name\":\"plg_multifactorauth_email\",\"type\":\"plugin\",\"creationDate\":\"2022-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2022 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.2.0\",\"description\":\"PLG_MULTIFACTORAUTH_EMAIL_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Multifactorauth\\\\Email\",\"filename\":\"email\"}','','',NULL,NULL,4,0,NULL),(211,0,'plg_multifactorauth_fixed','plugin','fixed','','multifactorauth',0,0,1,0,1,'{\"name\":\"plg_multifactorauth_fixed\",\"type\":\"plugin\",\"creationDate\":\"2022-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2022 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.2.0\",\"description\":\"PLG_MULTIFACTORAUTH_FIXED_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Multifactorauth\\\\Fixed\",\"filename\":\"fixed\"}','','',NULL,NULL,5,0,NULL),(212,0,'plg_user_contactcreator','plugin','contactcreator','','user',0,0,1,0,1,'{\"name\":\"plg_user_contactcreator\",\"type\":\"plugin\",\"creationDate\":\"2009-08\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2009 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_CONTACTCREATOR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\User\\\\ContactCreator\",\"filename\":\"contactcreator\"}','{\"autowebpage\":\"\",\"category\":\"4\",\"autopublish\":\"0\"}','',NULL,NULL,1,0,NULL),(213,0,'plg_user_joomla','plugin','joomla','','user',0,1,1,0,1,'{\"name\":\"plg_user_joomla\",\"type\":\"plugin\",\"creationDate\":\"2006-12\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\User\\\\Joomla\",\"filename\":\"joomla\"}','{\"autoregister\":\"1\",\"mail_to_user\":\"1\",\"forceLogout\":\"1\"}','',NULL,NULL,2,0,NULL),(214,0,'plg_user_profile','plugin','profile','','user',0,0,1,0,1,'{\"name\":\"plg_user_profile\",\"type\":\"plugin\",\"creationDate\":\"2008-01\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2008 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.0.0\",\"description\":\"PLG_USER_PROFILE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\User\\\\Profile\",\"filename\":\"profile\"}','{\"register-require_address1\":\"1\",\"register-require_address2\":\"1\",\"register-require_city\":\"1\",\"register-require_region\":\"1\",\"register-require_country\":\"1\",\"register-require_postal_code\":\"1\",\"register-require_phone\":\"1\",\"register-require_website\":\"1\",\"register-require_favoritebook\":\"1\",\"register-require_aboutme\":\"1\",\"register-require_tos\":\"1\",\"register-require_dob\":\"1\",\"profile-require_address1\":\"1\",\"profile-require_address2\":\"1\",\"profile-require_city\":\"1\",\"profile-require_region\":\"1\",\"profile-require_country\":\"1\",\"profile-require_postal_code\":\"1\",\"profile-require_phone\":\"1\",\"profile-require_website\":\"1\",\"profile-require_favoritebook\":\"1\",\"profile-require_aboutme\":\"1\",\"profile-require_tos\":\"1\",\"profile-require_dob\":\"1\"}','',NULL,NULL,3,0,NULL),(215,0,'plg_user_terms','plugin','terms','','user',0,0,1,0,1,'{\"name\":\"plg_user_terms\",\"type\":\"plugin\",\"creationDate\":\"2018-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2018 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_USER_TERMS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\User\\\\Terms\",\"filename\":\"terms\"}','{}','',NULL,NULL,4,0,NULL),(216,0,'plg_user_token','plugin','token','','user',0,1,1,0,1,'{\"name\":\"plg_user_token\",\"type\":\"plugin\",\"creationDate\":\"2019-11\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"3.9.0\",\"description\":\"PLG_USER_TOKEN_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\User\\\\Token\",\"filename\":\"token\"}','{}','',NULL,NULL,5,0,NULL),(217,0,'plg_webservices_banners','plugin','banners','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_banners\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_BANNERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Banners\",\"filename\":\"banners\"}','{}','',NULL,NULL,1,0,NULL),(218,0,'plg_webservices_config','plugin','config','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_config\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_CONFIG_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Config\",\"filename\":\"config\"}','{}','',NULL,NULL,2,0,NULL),(219,0,'plg_webservices_contact','plugin','contact','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_contact\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_CONTACT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Contact\",\"filename\":\"contact\"}','{}','',NULL,NULL,3,0,NULL),(220,0,'plg_webservices_content','plugin','content','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_content\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_CONTENT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Content\",\"filename\":\"content\"}','{}','',NULL,NULL,4,0,NULL),(221,0,'plg_webservices_installer','plugin','installer','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_installer\",\"type\":\"plugin\",\"creationDate\":\"2020-06\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_INSTALLER_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Installer\",\"filename\":\"installer\"}','{}','',NULL,NULL,5,0,NULL),(222,0,'plg_webservices_languages','plugin','languages','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_languages\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_LANGUAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Languages\",\"filename\":\"languages\"}','{}','',NULL,NULL,6,0,NULL),(223,0,'plg_webservices_media','plugin','media','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_media\",\"type\":\"plugin\",\"creationDate\":\"2021-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2021 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.1.0\",\"description\":\"PLG_WEBSERVICES_MEDIA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Media\",\"filename\":\"media\"}','{}','',NULL,NULL,7,0,NULL),(224,0,'plg_webservices_menus','plugin','menus','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_menus\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_MENUS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Menus\",\"filename\":\"menus\"}','{}','',NULL,NULL,7,0,NULL),(225,0,'plg_webservices_messages','plugin','messages','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_messages\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_MESSAGES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Messages\",\"filename\":\"messages\"}','{}','',NULL,NULL,8,0,NULL),(226,0,'plg_webservices_modules','plugin','modules','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_modules\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_MODULES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Modules\",\"filename\":\"modules\"}','{}','',NULL,NULL,9,0,NULL),(227,0,'plg_webservices_newsfeeds','plugin','newsfeeds','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_newsfeeds\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_NEWSFEEDS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Newsfeeds\",\"filename\":\"newsfeeds\"}','{}','',NULL,NULL,10,0,NULL),(228,0,'plg_webservices_plugins','plugin','plugins','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_plugins\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_PLUGINS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Plugins\",\"filename\":\"plugins\"}','{}','',NULL,NULL,11,0,NULL),(229,0,'plg_webservices_privacy','plugin','privacy','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_privacy\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_PRIVACY_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Privacy\",\"filename\":\"privacy\"}','{}','',NULL,NULL,12,0,NULL),(230,0,'plg_webservices_redirect','plugin','redirect','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_redirect\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_REDIRECT_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Redirect\",\"filename\":\"redirect\"}','{}','',NULL,NULL,13,0,NULL),(231,0,'plg_webservices_tags','plugin','tags','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_tags\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_TAGS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Tags\",\"filename\":\"tags\"}','{}','',NULL,NULL,14,0,NULL),(232,0,'plg_webservices_templates','plugin','templates','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_templates\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_TEMPLATES_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Templates\",\"filename\":\"templates\"}','{}','',NULL,NULL,15,0,NULL),(233,0,'plg_webservices_users','plugin','users','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_users\",\"type\":\"plugin\",\"creationDate\":\"2019-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WEBSERVICES_USERS_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Users\",\"filename\":\"users\"}','{}','',NULL,NULL,16,0,NULL),(234,0,'plg_workflow_featuring','plugin','featuring','','workflow',0,1,1,0,1,'{\"name\":\"plg_workflow_featuring\",\"type\":\"plugin\",\"creationDate\":\"2020-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WORKFLOW_FEATURING_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Workflow\\\\Featuring\",\"filename\":\"featuring\"}','{}','',NULL,NULL,1,0,NULL),(235,0,'plg_workflow_notification','plugin','notification','','workflow',0,1,1,0,1,'{\"name\":\"plg_workflow_notification\",\"type\":\"plugin\",\"creationDate\":\"2020-05\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WORKFLOW_NOTIFICATION_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Workflow\\\\Notification\",\"filename\":\"notification\"}','{}','',NULL,NULL,2,0,NULL),(236,0,'plg_workflow_publishing','plugin','publishing','','workflow',0,1,1,0,1,'{\"name\":\"plg_workflow_publishing\",\"type\":\"plugin\",\"creationDate\":\"2020-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.0.0\",\"description\":\"PLG_WORKFLOW_PUBLISHING_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Workflow\\\\Publishing\",\"filename\":\"publishing\"}','{}','',NULL,NULL,3,0,NULL),(237,0,'plg_system_guidedtours','plugin','guidedtours','','system',0,1,1,0,1,'{\"name\":\"plg_system_guidedtours\",\"type\":\"plugin\",\"creationDate\":\"2023-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2023 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"4.3.0\",\"description\":\"PLG_SYSTEM_GUIDEDTOURS_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\System\\\\GuidedTours\",\"filename\":\"guidedtours\"}','{}','',NULL,NULL,15,0,NULL),(238,0,'atum','template','atum','','',1,1,1,0,1,'{\"name\":\"atum\",\"type\":\"template\",\"creationDate\":\"2016-09\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2016 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_ATUM_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"inheritable\":true,\"filename\":\"templateDetails\"}','','',NULL,NULL,0,0,NULL),(239,0,'cassiopeia','template','cassiopeia','','',0,1,1,0,1,'{\"name\":\"cassiopeia\",\"type\":\"template\",\"creationDate\":\"2017-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2017 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"\",\"version\":\"1.0\",\"description\":\"TPL_CASSIOPEIA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"inheritable\":true,\"filename\":\"templateDetails\"}','{\"brand\":\"1\",\"logoFile\":\"\",\"siteTitle\":\"\",\"siteDescription\":\"\",\"useFontScheme\":\"0\",\"colorName\":\"colors_standard\",\"fluidContainer\":\"0\",\"stickyHeader\":0,\"backTop\":0}','',NULL,NULL,0,0,NULL),(240,0,'files_joomla','file','joomla','','',0,1,1,1,1,'{\"name\":\"files_joomla\",\"type\":\"file\",\"creationDate\":\"2025-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"FILES_JOOMLA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\"}','','',NULL,NULL,0,0,NULL),(241,0,'English (en-GB) Language Pack','package','pkg_en-GB','','',0,1,1,1,1,'{\"name\":\"English (en-GB) Language Pack\",\"type\":\"package\",\"creationDate\":\"2025-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0.1\",\"description\":\"en-GB language pack\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"pkg_en-GB\"}','','',NULL,NULL,0,0,NULL),(242,241,'English (en-GB)','language','en-GB','','',0,1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2006 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"en-GB site language\",\"group\":\"\",\"changelogurl\":\"\"}','','',NULL,NULL,0,0,NULL),(243,241,'English (en-GB)','language','en-GB','','',1,1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2005 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"en-GB administrator language\",\"group\":\"\",\"changelogurl\":\"\"}','','',NULL,NULL,0,0,NULL),(244,241,'English (en-GB)','language','en-GB','','',3,1,1,1,1,'{\"name\":\"English (en-GB)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"en-GB api language\",\"group\":\"\",\"changelogurl\":\"\"}','','',NULL,NULL,0,0,NULL),(245,293,'Spanish (es-ES)','language','es-ES','','',0,1,0,0,0,'{\"name\":\"Spanish (es-ES)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Spanish [es-ES] Translation Team\",\"copyright\":\"Copyright (C) 2005 - 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/joomlaes.org\\/traduccion\",\"version\":\"5.4.0.1\",\"description\":\"<p>Spanish [es-ES] language pack (site) for Joomla!<\\/p><p><\\/p><p>Paquete de idioma espa\\u00f1ol [es-ES] (sitio) para Joomla!<\\/p>\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"install\"}','{}','',NULL,NULL,0,0,NULL),(246,293,'Spanish (es-ES)','language','es-ES','','',1,1,0,0,0,'{\"name\":\"Spanish (es-ES)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Spanish [es-ES] Translation Team\",\"copyright\":\"Copyright (C) 2005 - 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/joomlaes.org\\/traduccion\",\"version\":\"5.4.0.1\",\"description\":\"<p>Spanish [es-ES] language pack (administrator) for Joomla!<\\/p><p><\\/p><p>Paquete de idioma espa\\u00f1ol [es-ES] (administrador) para Joomla!<\\/p>\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"install\"}','{}','',NULL,NULL,0,0,NULL),(247,293,'Spanish (es-ES)','language','es-ES','','',3,1,0,0,0,'{\"name\":\"Spanish (es-ES)\",\"type\":\"language\",\"creationDate\":\"2025-10\",\"author\":\"Spanish [es-ES] Translation Team\",\"copyright\":\"(C) 2020 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/joomlaes.org\\/traduccion\",\"version\":\"5.4.0.1\",\"description\":\"Idioma es-ES de la api\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"install\"}','{}','',NULL,NULL,0,0,NULL),(249,256,'plg_system_gantry5','plugin','gantry5','','system',0,1,1,0,0,'{\"name\":\"plg_system_gantry5\",\"type\":\"plugin\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"PLG_SYSTEM_GANTRY5_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"gantry5\"}','{\"production\":\"0\",\"use_assignments\":\"1\",\"use_media_folder\":\"0\",\"asset_timestamps\":\"1\",\"asset_timestamps_period\":\"7\",\"compile_yaml\":\"1\",\"compile_twig\":\"1\"}','',NULL,NULL,0,0,NULL),(250,256,'plg_quickicon_gantry5','plugin','gantry5','','quickicon',0,1,1,0,0,'{\"name\":\"plg_quickicon_gantry5\",\"type\":\"plugin\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"PLG_QUICKICON_GANTRY5_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"gantry5\"}','{\"context\":\"mod_quickicon\"}','',NULL,NULL,0,0,NULL),(251,256,'plg_gantry5_preset','plugin','preset','','gantry5',0,0,1,0,0,'{\"name\":\"plg_gantry5_preset\",\"type\":\"plugin\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"PLG_GANTRY5_PRESET_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"preset\"}','{\"preset\":\"presets\",\"reset\":\"reset-settings\"}','',NULL,NULL,0,0,NULL),(252,256,'mod_gantry5_particle','module','mod_gantry5_particle','','',0,1,0,0,0,'{\"name\":\"mod_gantry5_particle\",\"type\":\"module\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2022 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"MOD_GANTRY5_PARTICLE_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"mod_gantry5_particle\"}','{\"owncache\":\"0\",\"cache_time\":\"900\"}','',NULL,NULL,0,0,NULL),(254,256,'gantry5_nucleus','file','gantry5_nucleus','','',0,1,0,0,0,'{\"name\":\"gantry5_nucleus\",\"type\":\"file\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"GANTRY5_NUCLEUS_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\"}','','',NULL,NULL,0,0,NULL),(255,256,'com_gantry5','component','com_gantry5','','',1,1,0,0,0,'{\"name\":\"com_gantry5\",\"type\":\"component\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"COM_GANTRY5_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"gantry5\"}','{}','',NULL,NULL,0,0,NULL),(257,0,'g5_helium','template','g5_helium','','',0,1,1,0,0,'{\"name\":\"g5_helium\",\"type\":\"template\",\"creationDate\":\"May 24, 2024\",\"author\":\"RocketTheme, LLC\",\"copyright\":\"(C) 2007 - 2022 RocketTheme, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/www.rockettheme.com\",\"version\":\"5.5.19\",\"description\":\"TPL_G5_HELIUM_DESC\",\"group\":\"\",\"filename\":\"templateDetails\"}','[]','',NULL,NULL,0,0,NULL),(258,260,'com_djimageslider','component','com_djimageslider','','',1,1,0,0,0,'{\"name\":\"com_djimageslider\",\"type\":\"component\",\"creationDate\":\"2018-12-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.6.6\",\"description\":\"DJ-ImageSlider component\",\"group\":\"\"}','{}','',NULL,NULL,0,0,NULL),(259,260,'DJ-ImageSlider','module','mod_djimageslider','','',0,1,0,0,0,'{\"name\":\"DJ-ImageSlider\",\"type\":\"module\",\"creationDate\":\"2018-12-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.6.6\",\"description\":\"DJ-ImageSlider Module\",\"group\":\"\",\"filename\":\"mod_djimageslider\"}','{\"slider_source\":\"0\",\"slider_type\":\"0\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"show_title\":\"1\",\"show_desc\":\"1\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"0\",\"image_width\":\"240\",\"image_height\":\"180\",\"fit_to\":\"0\",\"image_centering\":\"0\",\"visible_images\":\"3\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"looponce\":\"0\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"0\",\"wcag\":\"1\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"40\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"title_color\":\"#FFFFFF\",\"title_font\":\"\",\"desc_color\":\"#FFFFFF\",\"desc_font\":\"\",\"readmore_color\":\"#FFFFFF\",\"readmore_font\":\"\",\"desc_bg\":\"#383838\",\"include_gf\":\"0\",\"border_radius\":\"0px 0px 0px 0px;\",\"effect\":\"Expo\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"cache\":\"1\",\"cache_time\":\"900\"}','',NULL,NULL,0,0,NULL),(260,0,'DJ-ImageSlider Package','package','pkg_dj-imageslider','','',0,1,1,0,0,'{\"name\":\"DJ-ImageSlider Package\",\"type\":\"package\",\"creationDate\":\"2018-12-19\",\"author\":\"DJ-Extensions.com\",\"copyright\":\"Copyright (C) 2017 DJ-Extensions.com, All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/dj-extensions.com\",\"version\":\"4.6.6\",\"description\":\"\\n\\t\\t<style type=\\\"text\\/css\\\">\\n\\t\\t\\t.djex-info { padding: 20px 30px 10px; margin: 0 0 20px 0; background: #ac00d4; color: #fff; border: 1px solid #81009f; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: normal; -webkit-border-radius: 4px; border-radius: 4px; }\\n\\t\\t\\t.djex-title { text-transform: uppercase; font-weight: bold; font-size: 14px; }\\n\\t\\t\\t.djex-info a:link, .djex-info a:visited, .djex-info a:hover { color:#fff; text-decoration:underline; font-weight: 600; }\\t\\n\\t\\t\\t.djex-info img { float: left; margin: 0 30px 10px 0; }\\n\\t\\t<\\/style>\\n\\t\\t<div class=\\\"djex-info\\\">\\n\\t\\t\\t<a href=\\\"index.php?option=com_djimageslider\\\"><img src=\\\"components\\/com_djimageslider\\/assets\\/ex_slider.png\\\" \\/><\\/a>\\n\\t\\t\\t<p class=\\\"djex-title\\\">Thank you for installing DJ-ImageSlider!<\\/p>\\n\\t\\t\\t<p>The DJ-ImageSlider extension allows you to display slideshows containing slides with title and short description linked to any menu item, article or custom url address. \\n\\t\\t\\tIf you want to learn how to use DJ-ImageSlider please read <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/documentation\\\">Documentation<\\/a> and <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\/faq\\\">FAQ section<\\/a><\\/p>\\n\\t\\t\\t<p>Check out our other extensions at <a target=\\\"_blank\\\" href=\\\"http:\\/\\/dj-extensions.com\\\">DJ-Extensions.com<\\/a><\\/p>\\n\\t\\t\\t<div style=\\\"clear:both\\\"><\\/div>\\n\\t\\t<\\/div>\\n\\t\\t\",\"group\":\"\",\"filename\":\"pkg_dj-imageslider\"}','{}','',NULL,NULL,0,0,NULL),(261,0,'Content - Simple Tabs','plugin','simpletabs','','content',0,1,1,0,0,'{\"name\":\"Content - Simple Tabs\",\"type\":\"plugin\",\"creationDate\":\"1 December 2023\",\"author\":\"Les Arbres Design\",\"copyright\":\"Les Arbres Design 2022-2023\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/www.lesarbresdesign.info\",\"version\":\"2.01\",\"description\":\"Simple Tabs\",\"group\":\"\",\"filename\":\"simpletabs\"}','{}','',NULL,NULL,0,0,NULL),(262,0,'Content - Simple Sliders','plugin','simplesliders','','content',0,1,1,0,0,'{\"name\":\"Content - Simple Sliders\",\"type\":\"plugin\",\"creationDate\":\"30 November 2023\",\"author\":\"Les Arbres Design\",\"copyright\":\"Les Arbres Design 2020-2023\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/www.lesarbresdesign.info\",\"version\":\"2.00\",\"description\":\"Simple Accordian Sliders\",\"group\":\"\",\"filename\":\"simplesliders\"}','{}','',NULL,NULL,0,0,NULL),(263,270,'plg_actionlog_dpcalendar','plugin','dpcalendar','','actionlog',0,1,1,0,0,'{\"name\":\"plg_actionlog_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2018 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_ACTIONLOG_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\Actionlog\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{}','',NULL,NULL,0,0,NULL),(264,270,'plg_content_dpcalendar','plugin','dpcalendar','','content',0,1,1,0,0,'{\"name\":\"plg_content_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2015 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_CONTENT_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\Content\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{\"show_contact_events\":\"1\",\"show_bookings\":\"0\"}','',NULL,NULL,0,0,NULL),(265,270,'plg_fields_dpcalendar','plugin','dpcalendar','','fields',0,1,1,0,0,'{\"name\":\"plg_fields_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2017 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_FIELDS_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\Fields\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{\"multiple\":\"0\"}','',NULL,NULL,0,0,NULL),(266,270,'plg_installer_dpcalendar','plugin','dpcalendar','','installer',0,1,1,0,0,'{\"name\":\"plg_installer_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2022 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_INSTALLER_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\Installer\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{}','',NULL,NULL,0,0,NULL),(267,270,'plg_privacy_dpcalendar','plugin','dpcalendar','','privacy',0,1,1,0,0,'{\"name\":\"plg_privacy_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2018 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_PRIVACY_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\Privacy\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{}','',NULL,NULL,0,0,NULL),(268,270,'plg_user_dpcalendar','plugin','dpcalendar','','user',0,1,1,0,0,'{\"name\":\"plg_user_dpcalendar\",\"type\":\"plugin\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2020 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"PLG_USER_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Plugin\\\\User\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{\"add_dpcalendar_user_fields\":\"1\"}','',NULL,NULL,0,0,NULL),(269,270,'com_dpcalendar','component','com_dpcalendar','','',1,1,0,0,0,'{\"name\":\"com_dpcalendar\",\"type\":\"component\",\"creationDate\":\"2025-05-22\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2014 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.3.2\",\"description\":\"COM_DPCALENDAR_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Component\\\\DPCalendar\",\"filename\":\"dpcalendar\"}','{\"show_selection\":\"1\",\"default_view\":\"month\",\"weekstart\":\"1\",\"weekend\":\"1\",\"fixed_week_count\":\"1\",\"week_numbers\":\"0\",\"overlap_events\":\"1\",\"agenda_slot_minutes\":\"30\",\"calendar_height\":\"0\",\"event_limit\":\"\",\"titleformat_month\":\"F Y\",\"titleformat_week\":\"M j Y\",\"titleformat_day\":\"F j Y\",\"titleformat_list\":\"M j Y\",\"timeformat_month\":\"H:i\",\"timeformat_week\":\"H:i\",\"timeformat_day\":\"H:i\",\"timeformat_list\":\"H:i\",\"columnformat_month\":\"D\",\"columnformat_week\":\"D n\\/j\",\"columnformat_day\":\"l\",\"columnformat_list\":\"D\",\"axisformat_month\":\"l j\",\"axisformat_week\":\"H:i\",\"axisformat_day\":\"H:i\",\"dayformat_list\":\"l\",\"dateformat_list\":\"F j, Y\",\"list_range\":\"30\",\"header_show_navigation\":\"1\",\"header_show_datepicker\":\"1\",\"header_show_today\":\"1\",\"header_show_print\":\"1\",\"header_show_create\":\"1\",\"header_show_fullscreen\":\"1\",\"header_show_title\":\"1\",\"header_show_month\":\"1\",\"header_show_week\":\"1\",\"header_show_day\":\"1\",\"header_show_list\":\"1\",\"textbefore\":\"\",\"textafter\":\"\",\"show_event_as_popup\":\"2\",\"popup_width\":\"\",\"popup_height\":\"\",\"event_create_form\":\"1\",\"description_length\":\"100\",\"adjust_fg_color\":\"2\",\"show_map\":\"1\",\"map_zoom\":\"4\",\"map_width\":\"100%\",\"map_height\":\"350px\",\"map_lat\":\"47\",\"map_long\":\"4\",\"first_hour\":\"6\",\"min_time\":\"0\",\"max_time\":\"24\",\"current_time_indicator\":\"1\",\"business_hours_start\":\"\",\"business_hours_end\":\"\",\"screen_size_list_view\":\"500\",\"calendar_start_date\":\"\",\"calendar_filter_author\":\"0\",\"calendar_resource_views\":[\"\"],\"calendar_custom_css\":\"\",\"map_expand\":\"1\",\"map_include_ongoing\":\"0\",\"map_date_format\":\"d.m.Y\",\"map_view_zoom\":\"4\",\"map_view_lat\":\"47\",\"map_view_long\":\"4\",\"map_view_width\":\"100%\",\"map_view_height\":\"600px\",\"map_view_radius\":\"20\",\"map_view_length_type\":\"m\",\"map_show_event_as_popup\":\"0\",\"map_popup_width\":\"\",\"map_popup_height\":\"\",\"map_filter_author\":\"0\",\"map_autocomplete\":\"1\",\"map_textbefore\":\"\",\"map_textafter\":\"\",\"list_date_start\":\"\",\"list_date_end\":\"\",\"list_title_format\":\"j.n.Y\",\"list_increment\":\"1 month\",\"list_include_ongoing\":\"0\",\"list_expand\":\"1\",\"list_textbefore\":\"\",\"list_textafter\":\"\",\"list_description_length\":\"\",\"list_ordering\":\"adaptive\",\"list_manage_search_form\":\"1\",\"list_show_hits\":\"1\",\"list_show_print\":\"1\",\"list_show_booking\":\"1\",\"list_show_capacity\":\"1\",\"list_show_display_events\":\"0\",\"list_show_map\":\"1\",\"list_map_zoom\":\"4\",\"list_map_width\":\"100%\",\"list_map_height\":\"350px\",\"list_map_lat\":\"47\",\"list_map_long\":\"4\",\"list_filter_featured\":\"0\",\"list_autocomplete\":\"1\",\"list_filter_author\":\"0\",\"list_custom_css\":\"\",\"event_date_format\":\"d.m.Y\",\"event_time_format\":\"H:i\",\"event_redirect_to_url\":\"0\",\"event_show_calendar\":\"1\",\"event_show_date\":\"1\",\"event_show_location\":\"2\",\"event_show_url\":\"1\",\"event_show_author\":\"1\",\"event_show_hosts\":\"1\",\"event_show_booking_form\":\"0\",\"event_show_bookings\":\"1\",\"event_show_price\":\"1\",\"event_show_capacity\":\"1\",\"event_show_capacity_used\":\"1\",\"event_show_tickets\":\"0\",\"event_show_print\":\"1\",\"event_show_mail\":\"1\",\"event_show_copy\":\"1\",\"event_show_series\":\"1\",\"event_series_max\":5,\"event_show_map\":\"1\",\"event_map_zoom\":\"4\",\"event_map_lat\":\"47\",\"event_map_long\":\"4\",\"event_textbefore\":\"\",\"event_textafter\":\"\",\"event_count_clicks\":\"1\",\"event_show_page_heading\":\"0\",\"event_prefix_meta_description\":\"1\",\"event_custom_css\":\"\",\"event_form_flat_mode\":\"0\",\"event_form_fields_order_\":[],\"event_form_date_format\":\"d.m.Y\",\"event_form_time_format\":\"H:i\",\"event_form_time_step\":\"30\",\"event_form_min_time\":\"\",\"event_form_max_time\":\"\",\"event_form_check_overlaping\":\"0\",\"event_form_check_overlaping_locations\":\"0\",\"event_form_show_map\":\"1\",\"event_form_map_zoom\":\"10\",\"event_form_map_width\":\"100%\",\"event_form_map_height\":\"250px\",\"event_form_map_latitude\":\"47\",\"event_form_map_longitude\":\"4\",\"event_form_redirect\":\"\",\"event_form_calid\":\"\",\"event_form_show_end_time\":\"\",\"event_form_all_day\":\"\",\"event_form_color\":\"\",\"event_form_color_options\":[],\"event_form_url\":\"\",\"event_form_access\":\"\",\"event_form_access_content\":\"\",\"event_form_description\":\"\",\"event_form_featured\":\"\",\"event_form_language\":\"\",\"event_form_capacity\":\"0\",\"event_form_max_tickets\":\"\",\"event_form_booking_opening_date\":\"\",\"event_form_booking_closing_date\":\"\",\"event_form_booking_cancel_closing_date\":\"\",\"event_form_booking_series\":\"\",\"event_form_booking_waiting_list\":\"\",\"event_form_terms\":\"\",\"event_form_booking_information\":\"\",\"event_form_custom_css\":\"\",\"bookings_order_dir\":\"a.name ASC\",\"bookings_textbefore\":\"\",\"bookings_textafter\":\"\",\"bookings_custom_css\":\"\",\"booking_fields_order\":[],\"booking_show_country\":\"1\",\"booking_show_province\":\"1\",\"booking_show_city\":\"1\",\"booking_show_zip\":\"1\",\"booking_show_street\":\"1\",\"booking_show_number\":\"1\",\"booking_show_telephone\":\"1\",\"booking_custom_css\":\"\",\"booking_form_fields_order_\":[],\"booking_form_country\":\"1\",\"booking_form_province\":\"1\",\"booking_form_city\":\"1\",\"booking_form_zip\":\"1\",\"booking_form_street\":\"1\",\"booking_form_number\":\"1\",\"booking_form_telephone\":\"1\",\"booking_form_default_country\":\"\",\"booking_form_custom_css\":\"\",\"tickets_order_dir\":\"a.name ASC\",\"tickets_textbefore\":\"\",\"tickets_textafter\":\"\",\"tickets_custom_css\":\"\",\"ticket_fields_order\":[],\"ticket_show_country\":\"1\",\"ticket_show_province\":\"1\",\"ticket_show_city\":\"1\",\"ticket_show_zip\":\"1\",\"ticket_show_street\":\"1\",\"ticket_show_number\":\"1\",\"ticket_show_telephone\":\"1\",\"ticket_show_barcode\":\"1\",\"ticket_custom_css\":\"\",\"ticket_form_fields_order_\":[],\"ticket_form_country\":\"1\",\"ticket_form_province\":\"1\",\"ticket_form_city\":\"1\",\"ticket_form_zip\":\"1\",\"ticket_form_street\":\"1\",\"ticket_form_number\":\"1\",\"ticket_form_telephone\":\"1\",\"ticket_form_public\":\"1\",\"ticket_form_custom_css\":\"\",\"locations_output_grouping\":\"0\",\"locations_show_map\":\"1\",\"locations_map_zoom\":\"4\",\"locations_map_width\":\"100%\",\"locations_map_height\":\"250px\",\"locations_map_latitude\":\"47\",\"locations_map_longitude\":\"4\",\"locations_expand\":\"2\",\"locations_show_upcoming_events\":\"1\",\"locations_expand_events\":\"1\",\"locations_show_resource_view\":\"1\",\"locations_default_view\":\"resday\",\"locations_header_show_datepicker\":\"1\",\"locations_header_show_today\":\"1\",\"locations_header_show_title\":\"1\",\"locations_column_width\":\"\",\"location_titleformat_year\":\"Y\",\"location_titleformat_month\":\"F Y\",\"location_titleformat_week\":\"M j Y\",\"location_titleformat_day\":\"F j Y\",\"locations_timeformat_year\":\"H:i\",\"locations_timeformat_month\":\"H:i\",\"locations_timeformat_week\":\"H:i\",\"locations_timeformat_day\":\"H:i\",\"locations_axisformat_year\":\"M j\",\"locations_axisformat_month\":\"l j\",\"locations_axisformat_week\":\"D j H:i\",\"locations_axisformat_day\":\"H:i\",\"locations_min_time\":\"0\",\"locations_max_time\":\"24\",\"locations_filter_author\":\"0\",\"locations_custom_css\":\"\",\"location_show_map\":\"1\",\"location_map_zoom\":\"10\",\"location_map_width\":\"100%\",\"location_map_height\":\"250px\",\"location_map_latitude\":\"47\",\"location_map_longitude\":\"4\",\"location_format\":\"format_eu\",\"location_expand\":\"1\",\"location_show_upcoming_events\":\"1\",\"location_expand_events\":\"1\",\"location_show_resource_view\":\"1\",\"location_default_view\":\"resday\",\"location_header_show_datepicker\":\"1\",\"location_header_show_today\":\"1\",\"location_header_show_title\":\"1\",\"location_column_width\":\"\",\"location_timeformat_year\":\"H:i\",\"location_timeformat_month\":\"H:i\",\"location_timeformat_week\":\"H:i\",\"location_timeformat_day\":\"H:i\",\"location_axisformat_year\":\"M j\",\"location_axisformat_month\":\"l j\",\"location_axisformat_week\":\"D j H:i\",\"location_axisformat_day\":\"H:i\",\"location_min_time\":\"0\",\"location_max_time\":\"24\",\"location_show_page_heading\":\"0\",\"location_custom_css\":\"\",\"location_form_flat_mode\":\"0\",\"location_form_fields_order_\":[],\"location_form_country\":\"1\",\"location_form_province\":\"1\",\"location_form_city\":\"1\",\"location_form_zip\":\"1\",\"location_form_street\":\"1\",\"location_form_number\":\"1\",\"location_form_url\":\"1\",\"location_form_show_map\":\"1\",\"location_form_map_zoom\":\"10\",\"location_form_map_width\":\"100%\",\"location_form_map_height\":\"250px\",\"location_form_map_latitude\":\"47\",\"location_form_map_longitude\":\"4\",\"location_form_default_country\":\"\",\"location_form_redirect\":\"\",\"location_form_custom_css\":\"\",\"profile_show_sharing\":\"1\",\"avatar\":\"1\",\"avatar_width\":\"80\",\"avatar_height\":\"0\",\"map_ask_consent\":\"0\",\"map_provider\":\"openstreetmap\",\"map_api_google_key\":\"\",\"map_api_google_jskey\":\"\",\"map_api_mapbox_token\":\"pk.eyJ1IjoiZGlnaXRhbHBlYWsiLCJhIjoiY2xoMXZodndxMG5rcDNlb2hxNTBnOW96OSJ9.ezCOCC5uPJPvjI8bLRoCMw\",\"map_api_openstreetmap_tiles_url\":\"https:\\/\\/{s}.tile.openstreetmap.org\\/{z}\\/{x}\\/{y}.png\",\"map_api_openstreetmap_geocode_url\":\"https:\\/\\/nominatim.openstreetmap.org\",\"booking_send_mail_author\":\"1\",\"booking_send_mail_new\":\"2\",\"booking_send_mail_paid\":\"1\",\"bookingsys_author_as_mail_from\":\"0\",\"bookingsys_attendee_as_mail_from\":\"0\",\"booking_include_ics\":\"1\",\"booking_include_tickets\":\"1\",\"booking_include_receipt\":\"1\",\"booking_review_step\":\"2\",\"booking_confirm_step\":\"1\",\"bookingsys_enable_token\":\"0\",\"booking_registration\":\"1\",\"currency\":\"USD\",\"currency_symbol\":\"$\",\"currency_separator\":\".\",\"currency_thousands_separator\":\"\'\",\"pdf_address\":\"Your company address\",\"pdf_logo\":\"\",\"pdf_header\":\"\",\"pdf_content_top\":\"\",\"pdf_content_bottom\":\"\",\"receipt_include_tickets\":\"1\",\"bookingsys_new_booking_mail\":\"<p>COM_DPCALENDAR_NOTIFICATION_EVENT_BOOK_USER_BODY<\\/p>\",\"bookingsys_paid_booking_mail\":\"<p>COM_DPCALENDAR_NOTIFICATION_EVENT_BOOK_USER_PAYED_BODY<\\/p>\",\"ordertext\":\"<p>COM_DPCALENDAR_FIELD_CONFIG_BOOKINGSYS_ORDER_TEXT<\\/p>\",\"canceltext\":\"<p>COM_DPCALENDAR_FIELD_CONFIG_BOOKINGSYS_CANCEL_TEXT<\\/p>\",\"cancelpaidtext\":\"<p>COM_DPCALENDAR_FIELD_CONFIG_BOOKINGSYS_CANCEL_PAID_TEXT<\\/p>\",\"downloadid\":\"\",\"notification_author\":\"0\",\"captcha_groups\":[\"1\"],\"enable_tz_switcher\":\"0\",\"save_history\":\"0\",\"history_limit\":5,\"bookingsys_currencies\":{\"currencies0\":{\"currency\":\"USD\",\"symbol\":\"$\",\"separator\":\".\",\"thousands_separator\":\"\'\"}}}','',NULL,NULL,0,0,NULL),(271,0,'mod_dpcalendar_mini','module','mod_dpcalendar_mini','','',0,1,0,0,0,'{\"name\":\"mod_dpcalendar_mini\",\"type\":\"module\",\"creationDate\":\"2025-09-25\",\"author\":\"Digital Peak\",\"copyright\":\"(C) 2014 Digital Peak GmbH\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"joomla.digital-peak.com\",\"version\":\"10.4.3\",\"description\":\"MOD_DPCALENDAR_MINI_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"DigitalPeak\\\\Module\\\\Mini\",\"filename\":\"mod_dpcalendar_mini\"}','{\"compact_events\":\"2\",\"event_color\":\"#135CAE\",\"open_view\":\"day\",\"default_view\":\"month\",\"weekstart\":\"1\",\"weekend\":\"1\",\"fixed_week_count\":\"1\",\"week_numbers\":\"0\",\"overlap_events\":\"1\",\"agenda_slot_minutes\":\"30\",\"calendar_height\":\"0\",\"titleformat_month\":\"F Y\",\"titleformat_week\":\"M j Y\",\"titleformat_day\":\"F j Y\",\"titleformat_list\":\"M j Y\",\"timeformat_month\":\"H:i\",\"timeformat_week\":\"H:i\",\"timeformat_day\":\"H:i\",\"timeformat_list\":\"H:i\",\"columnformat_month\":\"D\",\"columnformat_week\":\"D n\\/j\",\"columnformat_day\":\"l\",\"columnformat_list\":\"D\",\"axisformat_month\":\"l j\",\"axisformat_week\":\"H:i\",\"axisformat_day\":\"H:i\",\"dayformat_list\":\"l\",\"dateformat_list\":\"F j, Y\",\"list_range\":\"30\",\"header_show_navigation\":\"1\",\"header_show_datepicker\":\"0\",\"header_show_today\":\"0\",\"header_show_create\":\"0\",\"header_show_title\":\"1\",\"header_show_month\":\"0\",\"header_show_week\":\"0\",\"header_show_day\":\"0\",\"header_show_list\":\"0\",\"show_event_as_popup\":\"0\",\"popup_height\":\"500\",\"event_create_form\":\"1\",\"description_length\":\"100\",\"adjust_fg_color\":\"2\",\"show_map\":\"0\",\"map_zoom\":\"4\",\"map_width\":\"100%\",\"map_height\":\"350px\",\"map_lat\":\"47\",\"map_long\":\"4\",\"first_hour\":\"6\",\"min_time\":\"0\",\"max_time\":\"24\",\"current_time_indicator\":\"1\",\"business_hours_start\":\"\",\"business_hours_end\":\"\",\"calendar_filter_author\":\"0\",\"screen_size_list_view\":\"500\"}','',NULL,NULL,0,0,NULL),(272,0,'com_imageeffectck','component','com_imageeffectck','','',1,1,0,0,0,'{\"name\":\"com_imageeffectck\",\"type\":\"component\",\"creationDate\":\"October 2017\",\"author\":\"Cedric Keiflin\",\"copyright\":\"Copyright (C) 2017. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/www.joomlack.fr\",\"version\":\"2.4.2\",\"description\":\"Image Effect CK allows you to style your images with ease without coding. Background, colors, etc to apply to any image in one click.\",\"group\":\"\"}','{}','',NULL,NULL,0,0,NULL),(273,0,'Image Effect CK','plugin','imageeffectck','','system',0,1,1,0,0,'{\"name\":\"Image Effect CK\",\"type\":\"plugin\",\"creationDate\":\"D\\u00e9cembre 2014\",\"author\":\"C\\u00e9dric KEIFLIN\",\"copyright\":\"C\\u00e9dric KEIFLIN\",\"authorEmail\":\"\",\"authorUrl\":\"http:\\/\\/www.joomlack.fr\",\"version\":\"2.4.2\",\"description\":\"PLG_IMAGEEFFECTCK_XML_DESC\",\"group\":\"\",\"filename\":\"imageeffectck\"}','{}','',NULL,NULL,0,0,NULL),(274,0,'com_phocadownload','component','com_phocadownload','','',1,1,0,0,0,'{\"name\":\"com_phocadownload\",\"type\":\"component\",\"creationDate\":\"22\\/08\\/2025\",\"author\":\"Jan Pavelka (www.phoca.cz)\",\"copyright\":\"Jan Pavelka\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/www.phoca.cz\",\"version\":\"5.1.3\",\"description\":\"COM_PHOCADOWNLOAD_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Phoca\\\\Component\\\\PhocaDownload\",\"filename\":\"phocadownload\"}','{\"filename_or_name\":\"title\",\"display_downloads\":\"1\",\"display_description\":\"2\",\"display_main_cat_desc\":\"0\",\"display_main_cat_subcategories\":\"0\",\"display_detail\":\"0\",\"display_new\":\"0\",\"display_hot\":\"0\",\"display_most_download\":\"1\",\"most_download_files_num\":\"5\",\"display_file_view\":\"0\",\"display_date_type\":\"0\",\"download_external_link\":\"_self\",\"download_metadesc\":\"\",\"download_metakey\":\"\",\"category_ordering\":\"6\",\"file_ordering\":\"6\",\"file_ordering_values\":\"1,2,3,4,5,6,11,12,15,16,13,14,9,10\",\"ordering_asc_desc_arrows\":\"0\",\"default_pagination\":\"20\",\"pagination\":\"5,10,15,20,50\",\"display_num_doc_secs\":\"0\",\"display_num_doc_secs_header\":\"0\",\"display_up_icon\":\"0\",\"display_mirror_links\":\"0\",\"display_report_link\":\"0\",\"report_link_guestbook_id\":\"\",\"tags_links\":\"0\",\"display_tags_links\":\"0\",\"disable_breadcrumbs_category_view\":\"0\",\"license_box_height\":\"300\",\"display_header_type\":\"h1\",\"display_subheader_type\":\"h3\",\"display_rating_file\":\"0\",\"file_icon_size\":\"16\",\"file_icon_size_md\":\"16\",\"file_icon_mime\":\"1\",\"display_play\":\"0\",\"player_width\":\"328\",\"player_height\":\"200\",\"player_mp3_height\":\"30\",\"play_popup_window\":\"1\",\"display_preview\":\"1\",\"preview_width\":\"640\",\"preview_height\":\"480\",\"preview_popup_window\":\"1\",\"youtube_height_cv\":\"240\",\"youtube_width_cv\":\"320\",\"youtube_height_dv\":\"360\",\"youtube_width_dv\":\"480\",\"ignore_file_types_check\":\"2\",\"allowed_file_types_download\":\"{hqx=application\\/mac-binhex40} {cpt=application\\/mac-compactpro} {csv=text\\/x-comma-separated-values} {bin=application\\/macbinary} {dms=application\\/octet-stream} {lha=application\\/octet-stream} {lzh=application\\/octet-stream} {exe=application\\/octet-stream} {class=application\\/octet-stream} {psd=application\\/x-photoshop} {so=application\\/octet-stream} {sea=application\\/octet-stream} {dll=application\\/octet-stream} {oda=application\\/oda} {pdf=application\\/pdf} {ai=application\\/postscript} {eps=application\\/postscript} {ps=application\\/postscript} {smi=application\\/smil} {smil=application\\/smil} {mif=application\\/vnd.mif} {xls=application\\/vnd.ms-excel} {ppt=application\\/powerpoint} {wbxml=application\\/wbxml} {wmlc=application\\/wmlc} {dcr=application\\/x-director} {dir=application\\/x-director} {dxr=application\\/x-director} {dvi=application\\/x-dvi} {gtar=application\\/x-gtar} {gz=application\\/x-gzip} {php=application\\/x-httpd-php} {php4=application\\/x-httpd-php} {php3=application\\/x-httpd-php} {phtml=application\\/x-httpd-php} {phps=application\\/x-httpd-php-source} {js=application\\/x-javascript} {swf=application\\/x-shockwave-flash} {sit=application\\/x-stuffit} {tar=application\\/x-tar} {tgz=application\\/x-tar} {xhtml=application\\/xhtml+xml} {xht=application\\/xhtml+xml} {zip=application\\/x-zip} {mid=audio\\/midi} {midi=audio\\/midi} {mpga=audio\\/mpeg} {mp2=audio\\/mpeg} {mp3=audio\\/mpeg} {aif=audio\\/x-aiff} {aiff=audio\\/x-aiff} {aifc=audio\\/x-aiff} {ram=audio\\/x-pn-realaudio} {rm=audio\\/x-pn-realaudio} {rpm=audio\\/x-pn-realaudio-plugin} {ra=audio\\/x-realaudio} {rv=video\\/vnd.rn-realvideo} {wav=audio\\/x-wav} {bmp=image\\/bmp} {gif=image\\/gif} {jpeg=image\\/jpeg} {jpg=image\\/jpeg} {jpe=image\\/jpeg} {png=image\\/png} {tiff=image\\/tiff} {tif=image\\/tiff} {css=text\\/css} {html=text\\/html} {htm=text\\/html} {shtml=text\\/html} {txt=text\\/plain} {text=text\\/plain} {log=text\\/plain} {rtx=text\\/richtext} {rtf=text\\/rtf} {xml=text\\/xml} {xsl=text\\/xml} {mpeg=video\\/mpeg} {mpg=video\\/mpeg} {mpe=video\\/mpeg} {qt=video\\/quicktime} {mov=video\\/quicktime} {avi=video\\/x-msvideo} {flv=video\\/x-flv} {movie=video\\/x-sgi-movie} {doc=application\\/msword} {xl=application\\/excel} {eml=message\\/rfc822} {pptx=application\\/vnd.openxmlformats-officedocument.presentationml.presentation} {xlsx=application\\/vnd.openxmlformats-officedocument.spreadsheetml.sheet} {docx=application\\/vnd.openxmlformats-officedocument.wordprocessingml.document} {rar=application\\/x-rar-compressed} {odb=application\\/vnd.oasis.opendocument.database} {odc=application\\/vnd.oasis.opendocument.chart} {odf=application\\/vnd.oasis.opendocument.formula} {odg=application\\/vnd.oasis.opendocument.graphics} {odi=application\\/vnd.oasis.opendocument.image} {odm=application\\/vnd.oasis.opendocument.text-master} {odp=application\\/vnd.oasis.opendocument.presentation} {ods=application\\/vnd.oasis.opendocument.spreadsheet} {odt=application\\/vnd.oasis.opendocument.text} {sxc=application\\/vnd.sun.xml.calc} {sxd=application\\/vnd.sun.xml.draw} {sxg=application\\/vnd.sun.xml.writer.global} {sxi=application\\/vnd.sun.xml.impress} {sxm=application\\/vnd.sun.xml.math} {sxw=application\\/vnd.sun.xml.writer} {ogv=video\\/ogg} {ogg=audio\\/ogg} {mp4=video\\/mp4} {mp4=application\\/octet-stream}\",\"allowed_file_types_upload\":\"{pdf=application\\/pdf} {ppt=application\\/powerpoint} {gz=application\\/x-gzip} {tar=application\\/x-tar} {tgz=application\\/x-tar} {zip=application\\/x-zip} {bmp=image\\/bmp} {gif=image\\/gif} {jpeg=image\\/jpeg} {jpg=image\\/jpeg} {jpe=image\\/jpeg} {png=image\\/png} {tiff=image\\/tiff} {tif=image\\/tiff} {txt=text\\/plain} {mpeg=video\\/mpeg} {mpg=video\\/mpeg} {mpe=video\\/mpeg} {qt=video\\/quicktime} {mov=video\\/quicktime} {avi=video\\/x-msvideo} {flv=video\\/x-flv} {doc=application\\/msword} {ogv=video\\/ogg} {ogg=audio\\/ogg} {mp4=video\\/mp4} {mp4=application\\/octet-stream}\",\"disallowed_file_types_download\":\"\",\"disallowed_file_types_upload\":\"\",\"send_mail_download\":\"0\",\"user_files_max_count_download\":\"0\",\"enable_token_download\":\"0\",\"token_files_max_count_download\":\"0\",\"enable_user_cp\":\"0\",\"user_files_max_count\":\"5\",\"user_files_max_size\":\"10000000\",\"user_file_upload_size\":\"10000000\",\"enable_user_upload_approve\":\"0\",\"user_ucp_lang\":\"1\",\"send_mail_upload\":\"0\",\"overwrite_existing_files\":\"0\",\"pap_copy\":\"0\",\"upload_maxsize\":\"10000000\",\"enable_multiple_upload_admin\":\"1\",\"multiple_upload_method\":\"4\",\"default_access\":\"1\",\"enable_xss_check\":\"1\",\"frontend_run_events\":\"0\",\"enable_user_statistics\":\"1\",\"enable_logging\":\"0\",\"store_ip\":\"0\",\"delete_existing_files\":\"0\",\"description\":\"\",\"remove_sef_ids\":0,\"download_folder\":\"phocadownload\",\"download_folder_pap\":\"phocadownload\",\"absolute_path\":\"\",\"enable_plugin_query\":\"0\",\"enable_cache\":\"0\",\"bt_cat_col_left\":\"\",\"check_http_range\":\"1\"}','',NULL,NULL,0,0,NULL),(275,0,'plg_captcha_hcaptcha','plugin','hcaptcha','','captcha',0,0,1,0,0,'{\"name\":\"plg_captcha_hcaptcha\",\"type\":\"plugin\",\"creationDate\":\"January 2024\",\"author\":\"data2site\",\"copyright\":\"Copyright (C) 2021-2024 by data2site.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/data2site.com\",\"version\":\"1.4.3\",\"description\":\"PLG_CAPTCHA_HCAPTCHA_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"hcaptcha\"}','{\"publicKey\":\"\",\"privateKey\":\"\",\"theme\":\"light\",\"size\":\"normal\"}','',NULL,NULL,0,0,NULL),(276,0,'Ol Testimonials','module','mod_ol_testimonials','','',0,1,0,0,0,'{\"name\":\"Ol Testimonials\",\"type\":\"module\",\"creationDate\":\"Feb 20, 2019\",\"author\":\"olwebdesign\",\"copyright\":\"Copyright (C) http:\\/\\/www.olwebdesign.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.olwebdesign.com\",\"version\":\"4.1.7\",\"description\":\"\\t\\n\\t<link href=\\\"..\\/modules\\/mod_ol_testimonials\\/assets\\/css\\/admin.css\\\" rel=\\\"stylesheet\\\" type=\\\"text\\/css\\\" media=\\\"all\\\" \\/>\\n\\t<h1>Ol Testimonials<\\/h1>\\n\\t<div style=\\\"margin:0 0 0 10px; font-size:15px;\\\">Ol Testimonials Module from <a href=\\\"http:\\/\\/www.olwebdesign.com\\\" target=\\\"_blank\\\">olwebdesign.com<\\/a>. In the free version is included only one style. Nine more styles and star ratings, are available in the pro version.<\\/div>\\n\\t<h3>Userful links<\\/h3>\\n\\t<ul><li><a target=\'_blank\' href=\'https:\\/\\/www.olwebdesign.com\\/joomla-templates.html\'>Joomla templates<\\/a><\\/li>\\n\\t<li><a target=\'_blank\' href=\'https:\\/\\/www.olwebdesign.com\\/contact-us.html\'>Report bug<\\/a><\\/li><\\/ul>\\t\\n\\t\\t<div class=\\\"footer_review\\\">\\n\\t\\t\\t\\tLike this extensions? <a href=\\\"https:\\/\\/extensions.joomla.org\\/extension\\/ol-testimonials\\/\\\" target=\\\"_blank\\\">Leave a review on JED<\\/a>\\n\\t\\t\\t\\t<a class=\\\"stars\\\" href=\\\"https:\\/\\/extensions.joomla.org\\/extension\\/ol-testimonials\\/\\\" target=\\\"_blank\\\">\\n\\t\\t\\t\\t\\t<span class=\\\"icon-star\\\"><\\/span><span class=\\\"icon-star\\\"><\\/span><span class=\\\"icon-star\\\"><\\/span><span class=\\\"icon-star\\\"><\\/span><span class=\\\"icon-star\\\"><\\/span>\\n\\t\\t\\t\\t<\\/a>\\n\\t\\t\\t<\\/div>\\n\\t\\t\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"mod_ol_testimonials\"}','{\"get_stars\":\"1\",\"jqueryload\":\"0\",\"get_fonto\":\"0\",\"get_style\":\"default\",\"image_width\":\"4\",\"image_width_tabl\":\"3\",\"image_width_tabp\":\"3\",\"image_width_mobl\":\"2\",\"image_width_mobp\":\"1\",\"autoplay\":\"true\",\"autoplay-timeout\":\"5000\",\"autoplay-speed\":\"1000\",\"autoplay-hover-pause\":\"true\",\"dataLoop\":\"true\",\"dataNav\":\"true\",\"navPosit\":\"\",\"navStyle\":\"\",\"navRounded\":\"\",\"jpreload\":\"0\",\"container_fix\":\"0\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\"}','',NULL,NULL,0,0,NULL),(277,0,'Smart Slider 3','component','com_smartslider3','','',1,1,0,0,0,'{\"name\":\"Smart Slider 3\",\"type\":\"component\",\"creationDate\":\"2025-10-16\",\"author\":\"Nextendweb\",\"copyright\":\"Copyright (C) 2020 Nextendweb.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/smartslider3.com\",\"version\":\"3.5.1.30\",\"description\":\"\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"smartslider3\"}','{}','',NULL,NULL,0,0,NULL),(279,0,'Smart Slider 3 Module','module','mod_smartslider3','','',0,1,0,0,0,'{\"name\":\"Smart Slider 3 Module\",\"type\":\"module\",\"creationDate\":\"2025-10-16\",\"author\":\"Nextendweb\",\"copyright\":\"Copyright (C) 2020 Nextendweb.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/smartslider3.com\",\"version\":\"3.5.1.30\",\"description\":\"This module displays sliders from Smart Slider 3. You can create the sliders in the Smart Slider 3\\n component!\\n \",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"mod_smartslider3\"}','{\"slider\":\"1\",\"editslider\":\"\"}','',NULL,NULL,0,0,NULL),(280,0,'Smart Slider 3 Updater Plugin','plugin','smartslider3','','installer',0,1,1,0,0,'{\"name\":\"Smart Slider 3 Updater Plugin\",\"type\":\"plugin\",\"creationDate\":\"2025-10-16\",\"author\":\"Nextendweb\",\"copyright\":\"Copyright (C) 2020 Nextendweb.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/smartslider3.com\",\"version\":\"3.5.1.30\",\"description\":\"\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"smartslider3\"}','{}','',NULL,NULL,0,0,NULL),(281,0,'Smart Slider 3 System Plugin','plugin','smartslider3','','system',0,1,1,0,0,'{\"name\":\"Smart Slider 3 System Plugin\",\"type\":\"plugin\",\"creationDate\":\"2025-10-16\",\"author\":\"Nextendweb\",\"copyright\":\"Copyright (C) 2020 Nextendweb.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/smartslider3.com\",\"version\":\"3.5.1.30\",\"description\":\"\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"smartslider3\"}','{}','',NULL,NULL,0,0,NULL),(282,0,'plg_finder_phocadownload','plugin','phocadownload','','finder',0,1,1,0,0,'{\"name\":\"plg_finder_phocadownload\",\"type\":\"plugin\",\"creationDate\":\"24\\/09\\/2024\",\"author\":\"Jan Pavelka (www.phoca.cz)\",\"copyright\":\"Jan Pavelka\",\"authorEmail\":\"\",\"authorUrl\":\"https:\\/\\/www.phoca.cz\",\"version\":\"5.0.10\",\"description\":\"PLG_FINDER_PHOCADOWNLOAD_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"phocadownload\"}','{\"search_link\":\"0\"}','',NULL,NULL,0,0,NULL),(283,0,'plg_extension_joomlaupdate','plugin','joomlaupdate','','extension',0,1,1,0,1,'{\"name\":\"plg_extension_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"2025-02\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"1.0.0\",\"description\":\"PLG_EXTENSION_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Extension\\\\Joomlaupdate\",\"filename\":\"joomlaupdate\"}','','',NULL,NULL,0,0,NULL),(288,0,'plg_behaviour_compat6','plugin','compat6','','behaviour',0,1,1,0,1,'{\"name\":\"plg_behaviour_compat6\",\"type\":\"plugin\",\"creationDate\":\"2025-04\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"PLG_COMPAT6_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Behaviour\\\\Compat6\",\"filename\":\"compat6\"}','{\"classes_aliases\":\"1\",\"legacy_classes\":\"1\"}','',NULL,NULL,-1,0,NULL),(289,0,'plg_quickicon_autoupdate','plugin','autoupdate','','quickicon',0,1,1,0,1,'{\"name\":\"plg_quickicon_autoupdate\",\"type\":\"plugin\",\"creationDate\":\"2025-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"PLG_QUICKICON_AUTOUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\Quickicon\\\\Autoupdate\",\"filename\":\"autoupdate\"}','','',NULL,NULL,-1,0,NULL),(290,0,'plg_webservices_joomlaupdate','plugin','joomlaupdate','','webservices',0,1,1,0,1,'{\"name\":\"plg_webservices_joomlaupdate\",\"type\":\"plugin\",\"creationDate\":\"2025-03\",\"author\":\"Joomla! Project\",\"copyright\":\"(C) 2025 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"www.joomla.org\",\"version\":\"5.4.0\",\"description\":\"PLG_WEBSERVICES_JOOMLAUPDATE_XML_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"namespace\":\"Joomla\\\\Plugin\\\\WebServices\\\\Joomlaupdate\",\"filename\":\"joomlaupdate\"}','','',NULL,NULL,-1,0,NULL),(291,256,'Gantry 5 Framework','library','gantry5','','',0,1,1,0,0,'{\"name\":\"Gantry 5 Framework\",\"type\":\"library\",\"creationDate\":\"September 15, 2025\",\"author\":\"Tiger12, LLC\",\"copyright\":\"(C) 2005 - 2021 Tiger12, LLC. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"http:\\/\\/tiger12.com\",\"version\":\"5.5.25\",\"description\":\"LIB_GANTRY5_DESCRIPTION\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"gantry5\"}','{}','',NULL,NULL,0,0,NULL),(292,0,'Smart Slider 3 Library','library','smartslider3','','',0,1,1,0,0,'{\"name\":\"Smart Slider 3 Library\",\"type\":\"library\",\"creationDate\":\"2025-10-16\",\"author\":\"Nextendweb\",\"copyright\":\"Copyright (C) 2020 Nextendweb.com. All rights reserved.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/smartslider3.com\",\"version\":\"3.5.1.30\",\"description\":\"\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"lib_smartslider3\"}','{}','',NULL,NULL,0,0,NULL),(293,0,'Spanish (es-ES) Language Pack','package','pkg_es-ES','','',0,1,1,0,0,'{\"name\":\"Spanish (es-ES) Language Pack\",\"type\":\"package\",\"creationDate\":\"2025-10\",\"author\":\"Spanish [es-ES] Translation Team\",\"copyright\":\"(C) 2019 Open Source Matters, Inc.\",\"authorEmail\":\"[email protected]\",\"authorUrl\":\"https:\\/\\/joomlaes.org\\/traduccion\",\"version\":\"5.4.0.1\",\"description\":\"<div style=\\\"text-align: left;\\\"><h2>Successfully installed the Joomla! 5.4.0.1 Spanish es-ES Language Pack<\\/h2><p><\\/p><p>Please report any bugs or issues at the Spanish Translation Team using the mail: [email protected]<\\/p><p>If you wanna help with translations matters the site is at: <a href=\'https:\\/\\/joomlaes.org\\/traduccion\' target=\'_blank\' rel=\'noopener noreferrer\'>JoomlaES.org<\\/a> Contact Us!<\\/p><p><\\/p><p>Translated by: The Spanish Translation Team [es-ES]<\\/p><h2>El paquete 5.4.0.1 del idioma espa\\u00f1ol es-ES para Joomla! se ha instalado correctamente.<\\/h2><p><\\/p><p>Por favor, reporte cualquier bug o asunto relacionado a nuestra direcci\\u00f3n de correo electr\\u00f3nico: [email protected]<\\/p><p>Si quiere colaborar con el trabajo de traducci\\u00f3n estamos en: <a href=\'https:\\/\\/joomlaes.org\\/traduccion\' target=\'_blank\' rel=\'noopener noreferrer\'>JoomlaES.org<\\/a> \\u00a1Contacte con nosotros!<\\/p><p><\\/p><p>Traducci\\u00f3n: Spanish Translation Team [es-ES]<\\/p><\\/div>\",\"group\":\"\",\"changelogurl\":\"\",\"filename\":\"pkg_es-ES\"}','{}','',NULL,NULL,0,0,NULL);
/*!40000 ALTER TABLE `jnx5e_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_fields`
--
DROP TABLE IF EXISTS `jnx5e_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_fields` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0',
`context` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`group_id` int unsigned NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`default_value` text COLLATE utf8mb4_unicode_ci,
`type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'text',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`required` tinyint NOT NULL DEFAULT '0',
`only_use_in_subform` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`fieldparams` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created_time` datetime NOT NULL,
`created_user_id` int unsigned NOT NULL DEFAULT '0',
`modified_time` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`access` int NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_created_user_id` (`created_user_id`),
KEY `idx_access` (`access`),
KEY `idx_context` (`context`(191)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_fields`
--
LOCK TABLES `jnx5e_fields` WRITE;
/*!40000 ALTER TABLE `jnx5e_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_fields_categories`
--
DROP TABLE IF EXISTS `jnx5e_fields_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_fields_categories` (
`field_id` int NOT NULL DEFAULT '0',
`category_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`field_id`,`category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_fields_categories`
--
LOCK TABLES `jnx5e_fields_categories` WRITE;
/*!40000 ALTER TABLE `jnx5e_fields_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_fields_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_fields_groups`
--
DROP TABLE IF EXISTS `jnx5e_fields_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_fields_groups` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0',
`context` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`access` int NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`state`),
KEY `idx_created_by` (`created_by`),
KEY `idx_access` (`access`),
KEY `idx_context` (`context`(191)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_fields_groups`
--
LOCK TABLES `jnx5e_fields_groups` WRITE;
/*!40000 ALTER TABLE `jnx5e_fields_groups` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_fields_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_fields_values`
--
DROP TABLE IF EXISTS `jnx5e_fields_values`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_fields_values` (
`field_id` int unsigned NOT NULL,
`item_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Allow references to items which have strings as ids, eg. none db systems.',
`value` mediumtext COLLATE utf8mb4_unicode_ci,
KEY `idx_field_id` (`field_id`),
KEY `idx_item_id` (`item_id`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_fields_values`
--
LOCK TABLES `jnx5e_fields_values` WRITE;
/*!40000 ALTER TABLE `jnx5e_fields_values` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_fields_values` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_filters`
--
DROP TABLE IF EXISTS `jnx5e_finder_filters`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_filters` (
`filter_id` int unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '1',
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`map_count` int unsigned NOT NULL DEFAULT '0',
`data` text COLLATE utf8mb4_unicode_ci,
`params` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`filter_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_filters`
--
LOCK TABLES `jnx5e_finder_filters` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_filters` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_finder_filters` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_links`
--
DROP TABLE IF EXISTS `jnx5e_finder_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_links` (
`link_id` int unsigned NOT NULL AUTO_INCREMENT,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`route` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci,
`indexdate` datetime NOT NULL,
`md5sum` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`published` tinyint NOT NULL DEFAULT '1',
`state` int NOT NULL DEFAULT '1',
`access` int NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`publish_start_date` datetime DEFAULT NULL,
`publish_end_date` datetime DEFAULT NULL,
`start_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`list_price` double unsigned NOT NULL DEFAULT '0',
`sale_price` double unsigned NOT NULL DEFAULT '0',
`type_id` int NOT NULL,
`object` mediumblob,
PRIMARY KEY (`link_id`),
KEY `idx_type` (`type_id`),
KEY `idx_title` (`title`(100)),
KEY `idx_md5` (`md5sum`),
KEY `idx_url` (`url`(75)),
KEY `idx_language` (`language`),
KEY `idx_published_list` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`list_price`),
KEY `idx_published_sale` (`published`,`state`,`access`,`publish_start_date`,`publish_end_date`,`sale_price`)
) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_links`
--
LOCK TABLES `jnx5e_finder_links` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_links` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_links` VALUES (1,'index.php?option=com_phocadownload&view=file&id=1','index.php?option=com_phocadownload&view=category&id=1:normatividad&Itemid=117','ACTA SESION EXTRAORDINARIA N° 006 DE 2024.',' \"por la cual se aprueba aaaaadsasfas jlsdjflj lk dasñfkj\" ','2025-03-21 15:35:26','e8346090ac277b62017490d96f59032e',1,1,1,'*','2024-10-23 14:39:21',NULL,'2024-10-23 14:39:21',NULL,0,0,6,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:60:\" \"por la cual se aprueba aaaaadsasfas jlsdjflj lk dasñfkj\" \";i:3;a:22:{s:2:\"id\";i:1;s:5:\"catid\";i:1;s:5:\"alias\";s:40:\"acta sesion extraordinaria n 006 de 2024\";s:4:\"link\";s:0:\"\";s:7:\"summary\";s:65:\"<p>\"por la cual se aprueba aaaaadsasfas jlsdjflj lk dasñfkj\"</p>\";s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";N;s:8:\"ordering\";i:1;s:16:\"created_by_alias\";s:0:\"\";s:8:\"modified\";s:0:\"\";s:11:\"modified_by\";s:0:\"\";s:6:\"params\";N;s:8:\"approved\";i:1;s:8:\"category\";s:12:\"Normatividad\";s:13:\"categoryalias\";s:12:\"normatividad\";s:9:\"cat_state\";i:1;s:10:\"cat_access\";i:1;s:4:\"slug\";s:42:\"1:acta-sesion-extraordinaria-n-006-de-2024\";s:7:\"catslug\";s:14:\"1:normatividad\";s:4:\"mime\";N;s:6:\"layout\";s:4:\"file\";}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:9:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:4:\"link\";i:4;s:7:\"metakey\";i:5;s:8:\"metadesc\";i:6;s:10:\"metaauthor\";i:7;s:6:\"author\";i:8;s:16:\"created_by_alias\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;s:19:\"2024-10-23 14:39:21\";i:10;N;i:11;s:77:\"index.php?option=com_phocadownload&view=category&id=1:normatividad&Itemid=117\";i:12;N;i:13;s:19:\"2024-10-23 14:39:21\";i:14;i:1;i:15;a:3:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:14:\"Phoca Download\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:3;}}s:8:\"Category\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:12:\"Normatividad\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:5;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:43:\"ACTA SESION EXTRAORDINARIA N° 006 DE 2024.\";i:17;i:6;i:18;s:49:\"index.php?option=com_phocadownload&view=file&id=1\";}'),(2,'index.php?option=com_content&view=category&id=2','index.php?option=com_content&view=category&id=2','Uncategorised','','2025-03-21 15:35:26','49f1059397542993b8b2dfecae1b4cf1',1,1,1,'*',NULL,NULL,'2024-10-17 13:00:51',NULL,0,0,1,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:0:\"\";i:3;a:18:{s:2:\"id\";i:2;s:5:\"alias\";s:13:\"uncategorised\";s:9:\"extension\";s:11:\"com_content\";s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:6:\"author\";s:0:\"\";s:6:\"robots\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:3:\"lft\";i:1;s:9:\"parent_id\";i:1;s:5:\"level\";i:1;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":3:{s:15:\"category_layout\";s:0:\"\";s:5:\"image\";s:0:\"\";s:11:\"workflow_id\";s:11:\"use_default\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"summary\";s:0:\"\";s:10:\"created_by\";i:44;s:8:\"modified\";s:19:\"2024-10-17 13:00:51\";s:11:\"modified_by\";i:44;s:4:\"slug\";s:15:\"2:uncategorised\";s:4:\"mime\";N;s:6:\"layout\";s:8:\"category\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:4:\"link\";i:4;s:7:\"metakey\";i:5;s:8:\"metadesc\";i:6;s:10:\"metaauthor\";i:7;s:6:\"author\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;N;i:10;N;i:11;s:47:\"index.php?option=com_content&view=category&id=2\";i:12;N;i:13;s:19:\"2024-10-17 13:00:51\";i:14;i:1;i:15;a:2:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:8:\"Category\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:8;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:13:\"Uncategorised\";i:17;i:1;i:18;s:47:\"index.php?option=com_content&view=category&id=2\";}'),(3,'index.php?option=com_contact&view=category&id=4','index.php?option=com_contact&view=category&id=4','Uncategorised','','2025-03-21 15:35:26','0a8435451a16ee610a7df9223432c5de',1,1,1,'*',NULL,NULL,'2024-10-17 13:00:51',NULL,0,0,1,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:0:\"\";i:3;a:18:{s:2:\"id\";i:4;s:5:\"alias\";s:13:\"uncategorised\";s:9:\"extension\";s:11:\"com_contact\";s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:6:\"author\";s:0:\"\";s:6:\"robots\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:3:\"lft\";i:5;s:9:\"parent_id\";i:1;s:5:\"level\";i:1;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:15:\"category_layout\";s:0:\"\";s:5:\"image\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"summary\";s:0:\"\";s:10:\"created_by\";i:44;s:8:\"modified\";s:19:\"2024-10-17 13:00:51\";s:11:\"modified_by\";i:44;s:4:\"slug\";s:15:\"4:uncategorised\";s:4:\"mime\";N;s:6:\"layout\";s:8:\"category\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:4:\"link\";i:4;s:7:\"metakey\";i:5;s:8:\"metadesc\";i:6;s:10:\"metaauthor\";i:7;s:6:\"author\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;N;i:10;N;i:11;s:47:\"index.php?option=com_contact&view=category&id=4\";i:12;N;i:13;s:19:\"2024-10-17 13:00:51\";i:14;i:1;i:15;a:2:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:8:\"Category\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:8;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:13:\"Uncategorised\";i:17;i:1;i:18;s:47:\"index.php?option=com_contact&view=category&id=4\";}'),(4,'index.php?option=com_newsfeeds&view=category&id=5','index.php?option=com_newsfeeds&view=category&id=5','Uncategorised','','2025-03-21 15:35:26','eda9d411ac4013a7523ca06b635028ee',1,1,1,'*',NULL,NULL,'2024-10-17 13:00:51',NULL,0,0,1,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:0:\"\";i:3;a:18:{s:2:\"id\";i:5;s:5:\"alias\";s:13:\"uncategorised\";s:9:\"extension\";s:13:\"com_newsfeeds\";s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:6:\"author\";s:0:\"\";s:6:\"robots\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:3:\"lft\";i:7;s:9:\"parent_id\";i:1;s:5:\"level\";i:1;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:15:\"category_layout\";s:0:\"\";s:5:\"image\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"summary\";s:0:\"\";s:10:\"created_by\";i:44;s:8:\"modified\";s:19:\"2024-10-17 13:00:51\";s:11:\"modified_by\";i:44;s:4:\"slug\";s:15:\"5:uncategorised\";s:4:\"mime\";N;s:6:\"layout\";s:8:\"category\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:4:\"link\";i:4;s:7:\"metakey\";i:5;s:8:\"metadesc\";i:6;s:10:\"metaauthor\";i:7;s:6:\"author\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;N;i:10;N;i:11;s:49:\"index.php?option=com_newsfeeds&view=category&id=5\";i:12;N;i:13;s:19:\"2024-10-17 13:00:51\";i:14;i:1;i:15;a:2:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:8:\"Category\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:8;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:13:\"Uncategorised\";i:17;i:1;i:18;s:49:\"index.php?option=com_newsfeeds&view=category&id=5\";}'),(5,'index.php?option=com_content&view=article&id=1','index.php?option=com_content&view=article&id=1:cronograma&catid=2','Cronograma',' Este cronograma reúne las fechas más importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepción de trabajos hasta el desarrollo del evento. ','2026-04-07 22:23:43','c1190485d73254203621c377815288df',1,1,1,'*','2026-04-07 13:56:30',NULL,'2026-04-07 13:56:30',NULL,0,0,3,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:192:\" Este cronograma reúne las fechas más importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepción de trabajos hasta el desarrollo del evento. \";i:3;a:25:{s:2:\"id\";i:1;s:5:\"alias\";s:10:\"cronograma\";s:7:\"summary\";s:226:\"<p style=\"text-align: justify;\">Este cronograma reúne las fechas más importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepción de trabajos hasta el desarrollo del evento.</p>\";s:4:\"body\";s:0:\"\";s:6:\"images\";s:173:\"{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}\";s:5:\"catid\";i:2;s:10:\"created_by\";i:44;s:16:\"created_by_alias\";s:0:\"\";s:8:\"modified\";s:19:\"2026-04-07 22:23:43\";s:11:\"modified_by\";i:44;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":86:{s:14:\"article_layout\";s:9:\"_:default\";s:10:\"show_title\";s:1:\"1\";s:11:\"link_titles\";s:1:\"1\";s:10:\"show_intro\";s:1:\"1\";s:19:\"info_block_position\";s:1:\"0\";s:21:\"info_block_show_title\";s:1:\"1\";s:13:\"show_category\";s:1:\"0\";s:13:\"link_category\";s:1:\"1\";s:20:\"show_parent_category\";s:1:\"0\";s:20:\"link_parent_category\";s:1:\"0\";s:17:\"show_associations\";s:1:\"0\";s:5:\"flags\";s:1:\"1\";s:11:\"show_author\";s:1:\"1\";s:11:\"link_author\";s:1:\"0\";s:16:\"show_create_date\";s:1:\"1\";s:16:\"show_modify_date\";s:1:\"0\";s:17:\"show_publish_date\";s:1:\"0\";s:20:\"show_item_navigation\";s:1:\"0\";s:13:\"show_readmore\";s:1:\"1\";s:19:\"show_readmore_title\";s:1:\"1\";s:14:\"readmore_limit\";i:100;s:9:\"show_tags\";s:1:\"1\";s:11:\"record_hits\";s:1:\"1\";s:9:\"show_hits\";s:1:\"1\";s:11:\"show_noauth\";s:1:\"0\";s:13:\"urls_position\";i:0;s:7:\"captcha\";s:0:\"\";s:23:\"show_publishing_options\";s:1:\"1\";s:20:\"show_article_options\";s:1:\"1\";s:27:\"show_configure_edit_options\";s:1:\"1\";s:16:\"show_permissions\";s:1:\"1\";s:22:\"show_associations_edit\";s:1:\"1\";s:12:\"save_history\";s:1:\"1\";s:13:\"history_limit\";i:10;s:25:\"show_urls_images_frontend\";s:1:\"0\";s:24:\"show_urls_images_backend\";s:1:\"1\";s:7:\"targeta\";i:0;s:7:\"targetb\";i:0;s:7:\"targetc\";i:0;s:11:\"float_intro\";s:4:\"left\";s:14:\"float_fulltext\";s:4:\"left\";s:15:\"category_layout\";s:6:\"_:blog\";s:19:\"show_category_title\";s:1:\"0\";s:16:\"show_description\";s:1:\"0\";s:22:\"show_description_image\";s:1:\"0\";s:8:\"maxLevel\";s:1:\"1\";s:21:\"show_empty_categories\";s:1:\"0\";s:16:\"show_no_articles\";s:1:\"1\";s:32:\"show_category_heading_title_text\";s:1:\"1\";s:16:\"show_subcat_desc\";s:1:\"1\";s:21:\"show_cat_num_articles\";s:1:\"0\";s:13:\"show_cat_tags\";s:1:\"1\";s:21:\"show_base_description\";s:1:\"1\";s:11:\"maxLevelcat\";s:2:\"-1\";s:25:\"show_empty_categories_cat\";s:1:\"0\";s:20:\"show_subcat_desc_cat\";s:1:\"1\";s:25:\"show_cat_num_articles_cat\";s:1:\"1\";s:20:\"num_leading_articles\";i:1;s:18:\"blog_class_leading\";s:0:\"\";s:18:\"num_intro_articles\";i:4;s:10:\"blog_class\";s:0:\"\";s:11:\"num_columns\";i:1;s:18:\"multi_column_order\";s:1:\"0\";s:9:\"num_links\";i:4;s:24:\"show_subcategory_content\";s:1:\"0\";s:16:\"link_intro_image\";s:1:\"0\";s:21:\"show_pagination_limit\";s:1:\"1\";s:12:\"filter_field\";s:4:\"hide\";s:13:\"show_headings\";s:1:\"1\";s:14:\"list_show_date\";s:1:\"0\";s:11:\"date_format\";s:0:\"\";s:14:\"list_show_hits\";s:1:\"1\";s:16:\"list_show_author\";s:1:\"1\";s:11:\"display_num\";s:2:\"10\";s:11:\"orderby_pri\";s:5:\"order\";s:11:\"orderby_sec\";s:5:\"rdate\";s:10:\"order_date\";s:9:\"published\";s:15:\"show_pagination\";s:1:\"2\";s:23:\"show_pagination_results\";s:1:\"1\";s:13:\"show_featured\";s:4:\"show\";s:14:\"show_feed_link\";s:1:\"1\";s:12:\"feed_summary\";s:1:\"0\";s:18:\"feed_show_readmore\";s:1:\"0\";s:7:\"sef_ids\";i:1;s:20:\"custom_fields_enable\";s:1:\"1\";s:16:\"workflow_enabled\";s:1:\"0\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":3:{s:6:\"robots\";s:0:\"\";s:6:\"author\";s:0:\"\";s:6:\"rights\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"version\";i:18;s:8:\"ordering\";i:3;s:8:\"category\";s:13:\"Uncategorised\";s:9:\"cat_state\";i:1;s:10:\"cat_access\";i:1;s:4:\"slug\";s:12:\"1:cronograma\";s:7:\"catslug\";s:15:\"2:uncategorised\";s:6:\"author\";s:5:\"admin\";s:6:\"layout\";s:7:\"article\";s:7:\"context\";s:19:\"com_content.article\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:7:\"metakey\";i:4;s:8:\"metadesc\";i:5;s:10:\"metaauthor\";i:6;s:6:\"author\";i:7;s:16:\"created_by_alias\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;s:19:\"2026-04-07 13:56:30\";i:10;N;i:11;s:65:\"index.php?option=com_content&view=article&id=1:cronograma&catid=2\";i:12;N;i:13;s:19:\"2026-04-07 13:56:30\";i:14;i:1;i:15;a:4:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:7:\"Article\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:9;}}s:6:\"Author\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:5:\"admin\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:11;}}s:8:\"Category\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:13:\"Uncategorised\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:1;s:2:\"id\";i:12;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:10:\"Cronograma\";i:17;i:3;i:18;s:46:\"index.php?option=com_content&view=article&id=1\";}'),(6,'index.php?option=com_content&view=article&id=2','index.php?option=com_content&view=article&id=2:guia-para-ponencias&catid=2','Guía para ponencias',' El Congreso Internacional de Ciencias Económicas convoca a investigadores, académicos y estudiantes a presentar sus trabajos originales en diversas áreas de la economía y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigación, fomentando la participación activa y la difusión de resultados relevantes para la comunidad científica. {slider title=\"📌 Bases de Participación\" class=\"blue\"} La ponencia debe ser inédita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento teórico o práctico en las Ciencias Económicas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas. La autoría podrá ser individual o en coautoría (máximo tres integrantes si incluye estudiantes). Todas las ponencias serán sometidas a evaluación bajo la modalidad de doble ciego, y las decisiones del comité evaluador serán inapelables. En caso de ser aceptada, los autores deberán firmar la declaratoria de originalidad y cesión de derechos del trabajo. {slider title=\"🎤 Formas de Participación\" class=\"red\"} Ponencia oral: presentación académica basada en una investigación terminada o en curso. {slider title=\"📝 Requisitos para la Evaluación del Resumen\" class=\"blue\"} Título conciso (máximo 15 palabras, sin abreviaturas). Eje temático al que se adscribe la ponencia. Autores: nombre completo, afiliación institucional, ORCID, CvLAC y correo institucional. Resumen entre 200 y 500 palabras (incluye problemática, objetivos, metodología, resultados y conclusiones). Cinco palabras clave en español e inglés. Códigos JEL. Alcance esperado. Formato: letra Times New Roman, tamaño 12, interlineado doble. Normas de citación: APA (última versión). Los resúmenes aceptados serán incluidos en las Memorias del Congreso Internacional de Ciencias Económicas (ISSN electrónico No. 2357-4631). {slider title=\"📊 Evaluación y Aceptación\" class=\"red\"} Todas las ponencias serán evaluadas por el Comité Científico. Los conceptos posibles serán: Aprobada para presentación oral Rechazada (se devolverá a sus autores) {slider title=\"📑 Requisitos de Contenido de la presentación de Ponencias\" class=\"blue\"} Página de título: título de la investigación, datos completos de los autores (nombre, filiación institucional, grupo de investigación). Introducción: planteamiento del problema, objetivos e hipótesis. Contexto teórico: antecedentes, justificación y problemática. Materiales y métodos: diseño de investigación, población, muestra, instrumentos. Resultados y discusión: análisis, tablas y figuras (máx. dos por página). Conclusiones: vinculadas a los objetivos. Referencias: mínimo 15 fuentes científicas, normas APA (última edición). Las ponencias serán presentadas de manera presencial durante las fechas del congreso. La programación de las presentaciones será comunicada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación. {slider title=\"📢 Presentación\" class=\"red\"} Las ponencias serán presentadas de manera presencial durante las fechas del congreso. La programación será enviada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación. {slider title=\"📚 Publicación\" class=\"blue\"} Los trabajos aceptados y socializados serán publicados en las Memorias del Congreso Internacional de Ciencias Económicas, con ISSN electrónico No. 2357-4631. ','2026-04-07 22:26:11','c13ca5015848d1d912a864e23bf032f9',1,1,1,'*','2026-04-07 13:56:30',NULL,'2026-04-07 13:56:30',NULL,0,0,3,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:3594:\" El Congreso Internacional de Ciencias Económicas convoca a investigadores, académicos y estudiantes a presentar sus trabajos originales en diversas áreas de la economía y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigación, fomentando la participación activa y la difusión de resultados relevantes para la comunidad científica. {slider title=\"📌 Bases de Participación\" class=\"blue\"} La ponencia debe ser inédita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento teórico o práctico en las Ciencias Económicas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas. La autoría podrá ser individual o en coautoría (máximo tres integrantes si incluye estudiantes). Todas las ponencias serán sometidas a evaluación bajo la modalidad de doble ciego, y las decisiones del comité evaluador serán inapelables. En caso de ser aceptada, los autores deberán firmar la declaratoria de originalidad y cesión de derechos del trabajo. {slider title=\"🎤 Formas de Participación\" class=\"red\"} Ponencia oral: presentación académica basada en una investigación terminada o en curso. {slider title=\"📝 Requisitos para la Evaluación del Resumen\" class=\"blue\"} Título conciso (máximo 15 palabras, sin abreviaturas). Eje temático al que se adscribe la ponencia. Autores: nombre completo, afiliación institucional, ORCID, CvLAC y correo institucional. Resumen entre 200 y 500 palabras (incluye problemática, objetivos, metodología, resultados y conclusiones). Cinco palabras clave en español e inglés. Códigos JEL. Alcance esperado. Formato: letra Times New Roman, tamaño 12, interlineado doble. Normas de citación: APA (última versión). Los resúmenes aceptados serán incluidos en las Memorias del Congreso Internacional de Ciencias Económicas (ISSN electrónico No. 2357-4631). {slider title=\"📊 Evaluación y Aceptación\" class=\"red\"} Todas las ponencias serán evaluadas por el Comité Científico. Los conceptos posibles serán: Aprobada para presentación oral Rechazada (se devolverá a sus autores) {slider title=\"📑 Requisitos de Contenido de la presentación de Ponencias\" class=\"blue\"} Página de título: título de la investigación, datos completos de los autores (nombre, filiación institucional, grupo de investigación). Introducción: planteamiento del problema, objetivos e hipótesis. Contexto teórico: antecedentes, justificación y problemática. Materiales y métodos: diseño de investigación, población, muestra, instrumentos. Resultados y discusión: análisis, tablas y figuras (máx. dos por página). Conclusiones: vinculadas a los objetivos. Referencias: mínimo 15 fuentes científicas, normas APA (última edición). Las ponencias serán presentadas de manera presencial durante las fechas del congreso. La programación de las presentaciones será comunicada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación. {slider title=\"📢 Presentación\" class=\"red\"} Las ponencias serán presentadas de manera presencial durante las fechas del congreso. La programación será enviada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación. {slider title=\"📚 Publicación\" class=\"blue\"} Los trabajos aceptados y socializados serán publicados en las Memorias del Congreso Internacional de Ciencias Económicas, con ISSN electrónico No. 2357-4631. \";i:3;a:25:{s:2:\"id\";i:2;s:5:\"alias\";s:19:\"guia para ponencias\";s:7:\"summary\";s:4851:\"<p style=\"text-align: justify;\">El Congreso Internacional de Ciencias Económicas convoca a investigadores, académicos y estudiantes a presentar sus trabajos originales en diversas áreas de la economía y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigación, fomentando la participación activa y la difusión de resultados relevantes para la comunidad científica.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"📌<strong> Bases de Participación</strong>\" class=\"blue\"}</p>\r\n<p style=\"text-align: justify;\">La ponencia debe ser inédita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento teórico o práctico en las Ciencias Económicas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.</p>\r\n<p style=\"text-align: justify;\">La autoría podrá ser individual o en coautoría (máximo tres integrantes si incluye estudiantes). Todas las ponencias serán sometidas a evaluación bajo la modalidad de doble ciego, y las decisiones del comité evaluador serán inapelables.</p>\r\n<p style=\"text-align: justify;\">En caso de ser aceptada, los autores deberán firmar la declaratoria de originalidad y cesión de derechos del trabajo.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"🎤 <strong>Formas de Participación</strong>\" class=\"red\"}</p>\r\n<p style=\"text-align: justify;\"><strong>Ponencia oral:</strong> presentación académica basada en una investigación terminada o en curso.</p>\r\n<p style=\"text-align: justify;\">{slider title=\"<strong>📝 Requisitos para la Evaluación del Resumen</strong>\" class=\"blue\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li>Título conciso (máximo 15 palabras, sin abreviaturas).</li>\r\n<li>Eje temático al que se adscribe la ponencia.</li>\r\n<li>Autores: nombre completo, afiliación institucional, ORCID, CvLAC y correo institucional.</li>\r\n<li>Resumen entre 200 y 500 palabras (incluye problemática, objetivos, metodología, resultados y conclusiones).</li>\r\n<li>Cinco palabras clave en español e inglés.</li>\r\n<li>Códigos JEL.</li>\r\n<li>Alcance esperado.</li>\r\n<li>Formato: letra Times New Roman, tamaño 12, interlineado doble.</li>\r\n<li>Normas de citación: APA (última versión).</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">Los resúmenes aceptados serán incluidos en las Memorias del Congreso Internacional de Ciencias Económicas (ISSN electrónico No. 2357-4631).</p>\r\n<p style=\"text-align: justify;\">{slider title=\"📊 <strong>Evaluación y Aceptación</strong>\" class=\"red\"}</p>\r\n<p style=\"text-align: justify;\">Todas las ponencias serán evaluadas por el Comité Científico.<br>Los conceptos posibles serán:</p>\r\n<ul style=\"text-align: justify;\">\r\n<li><strong>Aprobada para presentación oral</strong></li>\r\n<li><strong>Rechazada</strong> (se devolverá a sus autores)</li>\r\n</ul>\r\n<p style=\"text-align: justify;\">{slider title=\"📑 <strong>Requisitos de Contenido de la presentación de Ponencias</strong>\" class=\"blue\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li><strong>Página de título:</strong> título de la investigación, datos completos de los autores (nombre, filiación institucional, grupo de investigación).</li>\r\n<li><strong>Introducción:</strong> planteamiento del problema, objetivos e hipótesis.</li>\r\n<li><strong>Contexto teórico:</strong> antecedentes, justificación y problemática.</li>\r\n<li><strong>Materiales y métodos: </strong>diseño de investigación, población, muestra, instrumentos.</li>\r\n<li><strong>Resultados y discusión:</strong> análisis, tablas y figuras (máx. dos por página).</li>\r\n<li><strong>Conclusiones:</strong> vinculadas a los objetivos.</li>\r\n<li><strong>Referencias: </strong>mínimo 15 fuentes científicas, normas APA (última edición).</li>\r\n</ul>\r\n<p><em>Las ponencias serán presentadas de manera presencial durante las fechas del congreso. </em></p>\r\n<p><em>La programación de las presentaciones será comunicada al correo institucional del autor de correspondencia. Al finalizar, se otorgarán constancias de participación.</em></p>\r\n<p style=\"text-align: justify;\">{slider title=\"📢 <strong>Presentación</strong>\" class=\"red\"}</p>\r\n<ul style=\"text-align: justify;\">\r\n<li>Las ponencias serán presentadas de manera presencial durante las fechas del congreso.</li>\r\n<li>La programación será enviada al correo institucional del autor de correspondencia.</li>\r\n<li>Al finalizar, se otorgarán constancias de participación.</li>\r\n</ul>\r\n<p>{slider title=\"📚 <strong>Publicación</strong>\" class=\"blue\"}</p>\r\n<p style=\"text-align: justify;\">Los trabajos aceptados y socializados serán publicados en las <strong>Memorias del Congreso Internacional de Ciencias Económicas</strong>, con ISSN electrónico No. 2357-4631.</p>\r\n<p> </p>\";s:4:\"body\";s:0:\"\";s:6:\"images\";s:173:\"{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}\";s:5:\"catid\";i:2;s:10:\"created_by\";i:44;s:16:\"created_by_alias\";s:0:\"\";s:8:\"modified\";s:19:\"2026-04-07 22:26:11\";s:11:\"modified_by\";i:44;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":86:{s:14:\"article_layout\";s:9:\"_:default\";s:10:\"show_title\";s:1:\"1\";s:11:\"link_titles\";s:1:\"1\";s:10:\"show_intro\";s:1:\"1\";s:19:\"info_block_position\";s:1:\"0\";s:21:\"info_block_show_title\";s:1:\"1\";s:13:\"show_category\";s:1:\"0\";s:13:\"link_category\";s:1:\"1\";s:20:\"show_parent_category\";s:1:\"0\";s:20:\"link_parent_category\";s:1:\"0\";s:17:\"show_associations\";s:1:\"0\";s:5:\"flags\";s:1:\"1\";s:11:\"show_author\";s:1:\"1\";s:11:\"link_author\";s:1:\"0\";s:16:\"show_create_date\";s:1:\"1\";s:16:\"show_modify_date\";s:1:\"0\";s:17:\"show_publish_date\";s:1:\"0\";s:20:\"show_item_navigation\";s:1:\"0\";s:13:\"show_readmore\";s:1:\"1\";s:19:\"show_readmore_title\";s:1:\"1\";s:14:\"readmore_limit\";i:100;s:9:\"show_tags\";s:1:\"1\";s:11:\"record_hits\";s:1:\"1\";s:9:\"show_hits\";s:1:\"1\";s:11:\"show_noauth\";s:1:\"0\";s:13:\"urls_position\";i:0;s:7:\"captcha\";s:0:\"\";s:23:\"show_publishing_options\";s:1:\"1\";s:20:\"show_article_options\";s:1:\"1\";s:27:\"show_configure_edit_options\";s:1:\"1\";s:16:\"show_permissions\";s:1:\"1\";s:22:\"show_associations_edit\";s:1:\"1\";s:12:\"save_history\";s:1:\"1\";s:13:\"history_limit\";i:10;s:25:\"show_urls_images_frontend\";s:1:\"0\";s:24:\"show_urls_images_backend\";s:1:\"1\";s:7:\"targeta\";i:0;s:7:\"targetb\";i:0;s:7:\"targetc\";i:0;s:11:\"float_intro\";s:4:\"left\";s:14:\"float_fulltext\";s:4:\"left\";s:15:\"category_layout\";s:6:\"_:blog\";s:19:\"show_category_title\";s:1:\"0\";s:16:\"show_description\";s:1:\"0\";s:22:\"show_description_image\";s:1:\"0\";s:8:\"maxLevel\";s:1:\"1\";s:21:\"show_empty_categories\";s:1:\"0\";s:16:\"show_no_articles\";s:1:\"1\";s:32:\"show_category_heading_title_text\";s:1:\"1\";s:16:\"show_subcat_desc\";s:1:\"1\";s:21:\"show_cat_num_articles\";s:1:\"0\";s:13:\"show_cat_tags\";s:1:\"1\";s:21:\"show_base_description\";s:1:\"1\";s:11:\"maxLevelcat\";s:2:\"-1\";s:25:\"show_empty_categories_cat\";s:1:\"0\";s:20:\"show_subcat_desc_cat\";s:1:\"1\";s:25:\"show_cat_num_articles_cat\";s:1:\"1\";s:20:\"num_leading_articles\";i:1;s:18:\"blog_class_leading\";s:0:\"\";s:18:\"num_intro_articles\";i:4;s:10:\"blog_class\";s:0:\"\";s:11:\"num_columns\";i:1;s:18:\"multi_column_order\";s:1:\"0\";s:9:\"num_links\";i:4;s:24:\"show_subcategory_content\";s:1:\"0\";s:16:\"link_intro_image\";s:1:\"0\";s:21:\"show_pagination_limit\";s:1:\"1\";s:12:\"filter_field\";s:4:\"hide\";s:13:\"show_headings\";s:1:\"1\";s:14:\"list_show_date\";s:1:\"0\";s:11:\"date_format\";s:0:\"\";s:14:\"list_show_hits\";s:1:\"1\";s:16:\"list_show_author\";s:1:\"1\";s:11:\"display_num\";s:2:\"10\";s:11:\"orderby_pri\";s:5:\"order\";s:11:\"orderby_sec\";s:5:\"rdate\";s:10:\"order_date\";s:9:\"published\";s:15:\"show_pagination\";s:1:\"2\";s:23:\"show_pagination_results\";s:1:\"1\";s:13:\"show_featured\";s:4:\"show\";s:14:\"show_feed_link\";s:1:\"1\";s:12:\"feed_summary\";s:1:\"0\";s:18:\"feed_show_readmore\";s:1:\"0\";s:7:\"sef_ids\";i:1;s:20:\"custom_fields_enable\";s:1:\"1\";s:16:\"workflow_enabled\";s:1:\"0\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":3:{s:6:\"robots\";s:0:\"\";s:6:\"author\";s:0:\"\";s:6:\"rights\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"version\";i:24;s:8:\"ordering\";i:2;s:8:\"category\";s:13:\"Uncategorised\";s:9:\"cat_state\";i:1;s:10:\"cat_access\";i:1;s:4:\"slug\";s:21:\"2:guia-para-ponencias\";s:7:\"catslug\";s:15:\"2:uncategorised\";s:6:\"author\";s:5:\"admin\";s:6:\"layout\";s:7:\"article\";s:7:\"context\";s:19:\"com_content.article\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:7:\"metakey\";i:4;s:8:\"metadesc\";i:5;s:10:\"metaauthor\";i:6;s:6:\"author\";i:7;s:16:\"created_by_alias\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;s:19:\"2026-04-07 13:56:30\";i:10;N;i:11;s:74:\"index.php?option=com_content&view=article&id=2:guia-para-ponencias&catid=2\";i:12;N;i:13;s:19:\"2026-04-07 13:56:30\";i:14;i:1;i:15;a:4:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:7:\"Article\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:9;}}s:6:\"Author\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:5:\"admin\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:11;}}s:8:\"Category\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:13:\"Uncategorised\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:1;s:2:\"id\";i:12;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:20:\"Guía para ponencias\";i:17;i:3;i:18;s:46:\"index.php?option=com_content&view=article&id=2\";}'),(7,'index.php?option=com_content&view=article&id=3','index.php?option=com_content&view=article&id=3:memorias&catid=2','Memorias',' Bienvenidos al repositorio histórico del Congreso Internacional de Ciencias Económicas. Rumbo a nuestra novena edición, te invitamos a explorar el conocimiento compartido en años anteriores. Haz clic en las imágenes para acceder a los documentos PDF de cada memoria. ','2026-04-07 22:23:31','481f0a8f5131bdce3ee91a76e5c6c3ed',1,1,1,'*','2026-04-07 13:56:30',NULL,'2026-04-07 13:56:30',NULL,0,0,3,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:273:\" Bienvenidos al repositorio histórico del Congreso Internacional de Ciencias Económicas. Rumbo a nuestra novena edición, te invitamos a explorar el conocimiento compartido en años anteriores. Haz clic en las imágenes para acceder a los documentos PDF de cada memoria. \";i:3;a:25:{s:2:\"id\";i:3;s:5:\"alias\";s:8:\"memorias\";s:7:\"summary\";s:2788:\"<p style=\"text-align: justify;\">Bienvenidos al repositorio histórico del <strong>Congreso Internacional de Ciencias Económicas</strong>. Rumbo a nuestra <strong>novena edición</strong>, te invitamos a explorar el conocimiento compartido en años anteriores. Haz clic en las imágenes para acceder a los documentos PDF de cada memoria.</p>\r\n<div class=\"fp-features\">\r\n<div class=\"g-grid\">\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/01CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/01CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/02CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/02CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/03CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/03CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/04CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/04CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/05CongresofceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/05CongresofceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n<div class=\"g-block size-33-3\">\r\n<div class=\"card\" style=\"background-color: #f4f5f7; border-color: #f4f5f7;\">\r\n<div class=\"card-block\"><a href=\"docus/memorias/07CongresoFceMemorias.pdf\" target=\"_blank\" rel=\"noopener\"> <img class=\"effectck-steve\" style=\"border-radius: 0px;\" role=\"presentation\" src=\"images/memorias/07CongresoFceMemorias..png\" width=\"337\" height=\"441\"> </a></div>\r\n</div>\r\n</div>\r\n</div>\r\n</div>\";s:4:\"body\";s:0:\"\";s:6:\"images\";s:173:\"{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}\";s:5:\"catid\";i:2;s:10:\"created_by\";i:44;s:16:\"created_by_alias\";s:0:\"\";s:8:\"modified\";s:19:\"2026-04-07 22:23:31\";s:11:\"modified_by\";i:44;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":86:{s:14:\"article_layout\";s:9:\"_:default\";s:10:\"show_title\";s:1:\"1\";s:11:\"link_titles\";s:1:\"1\";s:10:\"show_intro\";s:1:\"1\";s:19:\"info_block_position\";s:1:\"0\";s:21:\"info_block_show_title\";s:1:\"1\";s:13:\"show_category\";s:1:\"0\";s:13:\"link_category\";s:1:\"1\";s:20:\"show_parent_category\";s:1:\"0\";s:20:\"link_parent_category\";s:1:\"0\";s:17:\"show_associations\";s:1:\"0\";s:5:\"flags\";s:1:\"1\";s:11:\"show_author\";s:1:\"1\";s:11:\"link_author\";s:1:\"0\";s:16:\"show_create_date\";s:1:\"1\";s:16:\"show_modify_date\";s:1:\"0\";s:17:\"show_publish_date\";s:1:\"0\";s:20:\"show_item_navigation\";s:1:\"0\";s:13:\"show_readmore\";s:1:\"1\";s:19:\"show_readmore_title\";s:1:\"1\";s:14:\"readmore_limit\";i:100;s:9:\"show_tags\";s:1:\"1\";s:11:\"record_hits\";s:1:\"1\";s:9:\"show_hits\";s:1:\"1\";s:11:\"show_noauth\";s:1:\"0\";s:13:\"urls_position\";i:0;s:7:\"captcha\";s:0:\"\";s:23:\"show_publishing_options\";s:1:\"1\";s:20:\"show_article_options\";s:1:\"1\";s:27:\"show_configure_edit_options\";s:1:\"1\";s:16:\"show_permissions\";s:1:\"1\";s:22:\"show_associations_edit\";s:1:\"1\";s:12:\"save_history\";s:1:\"1\";s:13:\"history_limit\";i:10;s:25:\"show_urls_images_frontend\";s:1:\"0\";s:24:\"show_urls_images_backend\";s:1:\"1\";s:7:\"targeta\";i:0;s:7:\"targetb\";i:0;s:7:\"targetc\";i:0;s:11:\"float_intro\";s:4:\"left\";s:14:\"float_fulltext\";s:4:\"left\";s:15:\"category_layout\";s:6:\"_:blog\";s:19:\"show_category_title\";s:1:\"0\";s:16:\"show_description\";s:1:\"0\";s:22:\"show_description_image\";s:1:\"0\";s:8:\"maxLevel\";s:1:\"1\";s:21:\"show_empty_categories\";s:1:\"0\";s:16:\"show_no_articles\";s:1:\"1\";s:32:\"show_category_heading_title_text\";s:1:\"1\";s:16:\"show_subcat_desc\";s:1:\"1\";s:21:\"show_cat_num_articles\";s:1:\"0\";s:13:\"show_cat_tags\";s:1:\"1\";s:21:\"show_base_description\";s:1:\"1\";s:11:\"maxLevelcat\";s:2:\"-1\";s:25:\"show_empty_categories_cat\";s:1:\"0\";s:20:\"show_subcat_desc_cat\";s:1:\"1\";s:25:\"show_cat_num_articles_cat\";s:1:\"1\";s:20:\"num_leading_articles\";i:1;s:18:\"blog_class_leading\";s:0:\"\";s:18:\"num_intro_articles\";i:4;s:10:\"blog_class\";s:0:\"\";s:11:\"num_columns\";i:1;s:18:\"multi_column_order\";s:1:\"0\";s:9:\"num_links\";i:4;s:24:\"show_subcategory_content\";s:1:\"0\";s:16:\"link_intro_image\";s:1:\"0\";s:21:\"show_pagination_limit\";s:1:\"1\";s:12:\"filter_field\";s:4:\"hide\";s:13:\"show_headings\";s:1:\"1\";s:14:\"list_show_date\";s:1:\"0\";s:11:\"date_format\";s:0:\"\";s:14:\"list_show_hits\";s:1:\"1\";s:16:\"list_show_author\";s:1:\"1\";s:11:\"display_num\";s:2:\"10\";s:11:\"orderby_pri\";s:5:\"order\";s:11:\"orderby_sec\";s:5:\"rdate\";s:10:\"order_date\";s:9:\"published\";s:15:\"show_pagination\";s:1:\"2\";s:23:\"show_pagination_results\";s:1:\"1\";s:13:\"show_featured\";s:4:\"show\";s:14:\"show_feed_link\";s:1:\"1\";s:12:\"feed_summary\";s:1:\"0\";s:18:\"feed_show_readmore\";s:1:\"0\";s:7:\"sef_ids\";i:1;s:20:\"custom_fields_enable\";s:1:\"1\";s:16:\"workflow_enabled\";s:1:\"0\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":3:{s:6:\"robots\";s:0:\"\";s:6:\"author\";s:0:\"\";s:6:\"rights\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"version\";i:16;s:8:\"ordering\";i:1;s:8:\"category\";s:13:\"Uncategorised\";s:9:\"cat_state\";i:1;s:10:\"cat_access\";i:1;s:4:\"slug\";s:10:\"3:memorias\";s:7:\"catslug\";s:15:\"2:uncategorised\";s:6:\"author\";s:5:\"admin\";s:6:\"layout\";s:7:\"article\";s:7:\"context\";s:19:\"com_content.article\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:7:\"metakey\";i:4;s:8:\"metadesc\";i:5;s:10:\"metaauthor\";i:6;s:6:\"author\";i:7;s:16:\"created_by_alias\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;s:19:\"2026-04-07 13:56:30\";i:10;N;i:11;s:63:\"index.php?option=com_content&view=article&id=3:memorias&catid=2\";i:12;N;i:13;s:19:\"2026-04-07 13:56:30\";i:14;i:1;i:15;a:4:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:7:\"Article\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:9;}}s:6:\"Author\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:5:\"admin\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:11;}}s:8:\"Category\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:13:\"Uncategorised\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:1;s:2:\"id\";i:12;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:8:\"Memorias\";i:17;i:3;i:18;s:46:\"index.php?option=com_content&view=article&id=3\";}'),(8,'index.php?option=com_content&view=article&id=4','index.php?option=com_content&view=article&id=4:ejes-tematicos&catid=2','Ejes temáticos',' El Congreso Internacional de Ciencias Económicas presenta sus ejes temáticos como espacios de reflexión, análisis e innovación frente a los retos del entorno global. Cada eje invita a investigadores, académicos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo económico y social sostenible. En esta edición, los ejes temáticos son: ','2026-04-07 15:56:03','0e282f8839f14870775ed6415b23ea81',1,1,1,'*','2026-04-07 15:13:38',NULL,'2026-04-07 15:13:38',NULL,0,0,3,_binary 'O:52:\"Joomla\\Component\\Finder\\Administrator\\Indexer\\Result\":19:{i:0;i:1;i:1;s:5:\"es-ES\";i:2;s:392:\" El Congreso Internacional de Ciencias Económicas presenta sus ejes temáticos como espacios de reflexión, análisis e innovación frente a los retos del entorno global. Cada eje invita a investigadores, académicos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo económico y social sostenible. En esta edición, los ejes temáticos son: \";i:3;a:25:{s:2:\"id\";i:4;s:5:\"alias\";s:14:\"ejes tematicos\";s:7:\"summary\";s:497:\"<p style=\"text-align: justify;\">El <strong>Congreso Internacional de Ciencias Económicas</strong> presenta sus <strong>ejes temáticos</strong> como espacios de reflexión, análisis e innovación frente a los retos del entorno global. Cada eje invita a investigadores, académicos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo económico y social sostenible.</p>\r\n<p style=\"text-align: justify;\">En esta edición, los ejes temáticos son:</p>\";s:4:\"body\";s:0:\"\";s:6:\"images\";s:173:\"{\"image_intro\":\"\",\"image_intro_alt\":\"\",\"float_intro\":\"\",\"image_intro_caption\":\"\",\"image_fulltext\":\"\",\"image_fulltext_alt\":\"\",\"float_fulltext\":\"\",\"image_fulltext_caption\":\"\"}\";s:5:\"catid\";i:2;s:10:\"created_by\";i:44;s:16:\"created_by_alias\";s:0:\"\";s:8:\"modified\";s:19:\"2026-04-07 15:56:03\";s:11:\"modified_by\";i:44;s:6:\"params\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":86:{s:14:\"article_layout\";s:9:\"_:default\";s:10:\"show_title\";s:1:\"1\";s:11:\"link_titles\";s:1:\"1\";s:10:\"show_intro\";s:1:\"1\";s:19:\"info_block_position\";s:1:\"0\";s:21:\"info_block_show_title\";s:1:\"1\";s:13:\"show_category\";s:1:\"0\";s:13:\"link_category\";s:1:\"1\";s:20:\"show_parent_category\";s:1:\"0\";s:20:\"link_parent_category\";s:1:\"0\";s:17:\"show_associations\";s:1:\"0\";s:5:\"flags\";s:1:\"1\";s:11:\"show_author\";s:1:\"1\";s:11:\"link_author\";s:1:\"0\";s:16:\"show_create_date\";s:1:\"1\";s:16:\"show_modify_date\";s:1:\"0\";s:17:\"show_publish_date\";s:1:\"0\";s:20:\"show_item_navigation\";s:1:\"0\";s:13:\"show_readmore\";s:1:\"1\";s:19:\"show_readmore_title\";s:1:\"1\";s:14:\"readmore_limit\";i:100;s:9:\"show_tags\";s:1:\"1\";s:11:\"record_hits\";s:1:\"1\";s:9:\"show_hits\";s:1:\"1\";s:11:\"show_noauth\";s:1:\"0\";s:13:\"urls_position\";i:0;s:7:\"captcha\";s:0:\"\";s:23:\"show_publishing_options\";s:1:\"1\";s:20:\"show_article_options\";s:1:\"1\";s:27:\"show_configure_edit_options\";s:1:\"1\";s:16:\"show_permissions\";s:1:\"1\";s:22:\"show_associations_edit\";s:1:\"1\";s:12:\"save_history\";s:1:\"1\";s:13:\"history_limit\";i:10;s:25:\"show_urls_images_frontend\";s:1:\"0\";s:24:\"show_urls_images_backend\";s:1:\"1\";s:7:\"targeta\";i:0;s:7:\"targetb\";i:0;s:7:\"targetc\";i:0;s:11:\"float_intro\";s:4:\"left\";s:14:\"float_fulltext\";s:4:\"left\";s:15:\"category_layout\";s:6:\"_:blog\";s:19:\"show_category_title\";s:1:\"0\";s:16:\"show_description\";s:1:\"0\";s:22:\"show_description_image\";s:1:\"0\";s:8:\"maxLevel\";s:1:\"1\";s:21:\"show_empty_categories\";s:1:\"0\";s:16:\"show_no_articles\";s:1:\"1\";s:32:\"show_category_heading_title_text\";s:1:\"1\";s:16:\"show_subcat_desc\";s:1:\"1\";s:21:\"show_cat_num_articles\";s:1:\"0\";s:13:\"show_cat_tags\";s:1:\"1\";s:21:\"show_base_description\";s:1:\"1\";s:11:\"maxLevelcat\";s:2:\"-1\";s:25:\"show_empty_categories_cat\";s:1:\"0\";s:20:\"show_subcat_desc_cat\";s:1:\"1\";s:25:\"show_cat_num_articles_cat\";s:1:\"1\";s:20:\"num_leading_articles\";i:1;s:18:\"blog_class_leading\";s:0:\"\";s:18:\"num_intro_articles\";i:4;s:10:\"blog_class\";s:0:\"\";s:11:\"num_columns\";i:1;s:18:\"multi_column_order\";s:1:\"0\";s:9:\"num_links\";i:4;s:24:\"show_subcategory_content\";s:1:\"0\";s:16:\"link_intro_image\";s:1:\"0\";s:21:\"show_pagination_limit\";s:1:\"1\";s:12:\"filter_field\";s:4:\"hide\";s:13:\"show_headings\";s:1:\"1\";s:14:\"list_show_date\";s:1:\"0\";s:11:\"date_format\";s:0:\"\";s:14:\"list_show_hits\";s:1:\"1\";s:16:\"list_show_author\";s:1:\"1\";s:11:\"display_num\";s:2:\"10\";s:11:\"orderby_pri\";s:5:\"order\";s:11:\"orderby_sec\";s:5:\"rdate\";s:10:\"order_date\";s:9:\"published\";s:15:\"show_pagination\";s:1:\"2\";s:23:\"show_pagination_results\";s:1:\"1\";s:13:\"show_featured\";s:4:\"show\";s:14:\"show_feed_link\";s:1:\"1\";s:12:\"feed_summary\";s:1:\"0\";s:18:\"feed_show_readmore\";s:1:\"0\";s:7:\"sef_ids\";i:1;s:20:\"custom_fields_enable\";s:1:\"1\";s:16:\"workflow_enabled\";s:1:\"0\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"metakey\";s:0:\"\";s:8:\"metadesc\";s:0:\"\";s:8:\"metadata\";O:24:\"Joomla\\Registry\\Registry\":3:{s:7:\"\0*\0data\";O:8:\"stdClass\":3:{s:6:\"robots\";s:0:\"\";s:6:\"author\";s:0:\"\";s:6:\"rights\";s:0:\"\";}s:14:\"\0*\0initialized\";b:1;s:12:\"\0*\0separator\";s:1:\".\";}s:7:\"version\";i:5;s:8:\"ordering\";i:0;s:8:\"category\";s:13:\"Uncategorised\";s:9:\"cat_state\";i:1;s:10:\"cat_access\";i:1;s:4:\"slug\";s:16:\"4:ejes-tematicos\";s:7:\"catslug\";s:15:\"2:uncategorised\";s:6:\"author\";s:5:\"admin\";s:6:\"layout\";s:7:\"article\";s:7:\"context\";s:19:\"com_content.article\";s:10:\"metaauthor\";N;}i:4;N;i:5;a:5:{i:1;a:3:{i:0;s:5:\"title\";i:1;s:8:\"subtitle\";i:2;s:2:\"id\";}i:2;a:2:{i:0;s:7:\"summary\";i:1;s:4:\"body\";}i:3;a:8:{i:0;s:4:\"meta\";i:1;s:10:\"list_price\";i:2;s:10:\"sale_price\";i:3;s:7:\"metakey\";i:4;s:8:\"metadesc\";i:5;s:10:\"metaauthor\";i:6;s:6:\"author\";i:7;s:16:\"created_by_alias\";}i:4;a:2:{i:0;s:4:\"path\";i:1;s:5:\"alias\";}i:5;a:1:{i:0;s:8:\"comments\";}}i:6;s:1:\"*\";i:7;N;i:8;N;i:9;s:19:\"2026-04-07 15:13:38\";i:10;N;i:11;s:69:\"index.php?option=com_content&view=article&id=4:ejes-tematicos&catid=2\";i:12;N;i:13;s:19:\"2026-04-07 15:13:38\";i:14;i:1;i:15;a:4:{s:4:\"Type\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:7:\"Article\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:9;}}s:6:\"Author\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:5:\"admin\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:11;}}s:8:\"Category\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:13:\"Uncategorised\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:1;s:2:\"id\";i:12;}}s:8:\"Language\";a:1:{i:0;O:8:\"stdClass\":6:{s:5:\"title\";s:1:\"*\";s:5:\"state\";i:1;s:6:\"access\";i:1;s:8:\"language\";s:1:\"*\";s:6:\"nested\";b:0;s:2:\"id\";i:7;}}}i:16;s:15:\"Ejes temáticos\";i:17;i:3;i:18;s:46:\"index.php?option=com_content&view=article&id=4\";}');
/*!40000 ALTER TABLE `jnx5e_finder_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_links_terms`
--
DROP TABLE IF EXISTS `jnx5e_finder_links_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_links_terms` (
`link_id` int unsigned NOT NULL,
`term_id` int unsigned NOT NULL,
`weight` float unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`link_id`,`term_id`),
KEY `idx_term_weight` (`term_id`,`weight`),
KEY `idx_link_term_weight` (`link_id`,`term_id`,`weight`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_links_terms`
--
LOCK TABLES `jnx5e_finder_links_terms` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_links_terms` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_links_terms` VALUES (1,1,1.11),(1,2,0.17),(5,2,0.17),(1,3,1.48),(1,4,0.56),(1,5,0.98679),(1,6,0.32669),(1,7,0.18669),(1,8,0.32669),(5,9,0.09331),(7,9,0.18662),(8,9,0.18662),(1,9,0.49321),(6,9,2.7993),(1,10,3.45321),(1,11,0.37331),(1,12,0.09331),(5,12,0.09331),(6,12,1.30634),(1,13,0.09331),(1,14,0.24679),(1,15,0.14),(6,15,0.28),(1,16,0.09331),(6,16,0.46655),(1,17,1.48),(2,32,0.17),(6,32,0.17),(2,33,3.20679),(3,33,3.20679),(4,33,3.20679),(3,35,0.17),(8,35,0.17),(4,36,0.17),(7,37,0.17),(5,39,0.39996),(6,39,0.39996),(7,39,0.39996),(8,39,0.39996),(6,40,0.74676),(6,43,1.63317),(6,52,0.42),(6,54,1.96),(6,60,1.63317),(6,74,0.14),(6,76,0.23331),(6,78,3.03345),(8,88,0.46669),(6,104,0.74662),(7,104,1.97321),(8,105,1.36017),(8,106,1.2),(5,107,0.04669),(7,107,0.14007),(8,107,0.14007),(6,107,0.28014),(6,108,0.46669),(8,108,0.46669),(7,110,0.09331),(8,110,0.09331),(6,110,0.55986),(6,111,0.37331),(8,111,0.37331),(5,113,0.18669),(7,113,0.18669),(8,113,0.18669),(7,114,0.37331),(8,114,0.37331),(6,114,1.49324),(8,115,0.18669),(8,116,0.42),(5,118,0.37331),(7,118,0.37331),(8,118,0.37331),(6,118,1.86655),(6,119,0.60669),(8,119,0.60669),(8,121,0.51331),(7,123,0.14),(8,123,0.14),(5,123,0.42),(6,123,1.4),(5,125,0.46669),(8,125,0.46669),(8,127,0.04669),(6,127,0.09338),(7,128,0.46669),(8,128,0.46669),(6,128,1.86676),(8,129,0.42),(6,130,0.32669),(7,130,0.32669),(8,130,0.32669),(6,131,0.14),(8,131,0.14),(5,132,0.09331),(7,132,0.09331),(8,132,0.09331),(6,132,0.27993),(5,134,0.09331),(8,134,0.09331),(7,134,0.18662),(6,134,1.02641),(8,135,0.32669),(8,136,0.37331),(8,137,0.18669),(6,140,0.56),(8,140,0.56),(8,142,0.28),(8,144,0.28),(8,145,0.46669),(7,149,0.60669),(8,149,0.60669),(6,149,1.82007),(6,150,0.65331),(8,150,0.65331),(8,151,0.28),(5,152,0.14),(7,152,0.14),(6,152,1.54),(7,153,0.14),(8,153,0.28),(6,153,0.84),(7,156,0.18669),(6,156,1.54686),(8,158,0.37331),(8,159,0.60669),(8,161,0.46669),(6,164,0.14),(8,164,0.14),(8,165,0.42),(8,166,0.23331),(8,167,0.28),(8,169,0.14),(8,171,0.14),(6,171,0.28),(8,172,1.86),(6,176,0.14),(5,179,0.04669),(8,179,0.14007),(6,179,0.74704),(7,232,0.32669),(7,233,0.46669),(7,234,0.18669),(7,235,0.51331),(7,236,0.18669),(7,237,0.46669),(6,239,0.56),(7,239,0.56),(7,240,0.46669),(7,241,0.37331),(7,242,0.14),(7,243,0.42),(7,244,0.37331),(7,245,0.42),(7,246,0.32669),(7,247,0.28),(7,248,0.32669),(7,249,0.14),(7,250,0.51331),(7,251,0.23331),(7,252,0.09331),(5,253,2.93348),(5,254,0.46669),(5,255,0.23331),(5,256,0.18669),(6,256,0.18669),(5,257,0.23331),(5,258,0.28),(6,258,0.28),(5,259,0.28),(6,259,0.56),(5,260,0.23331),(5,261,0.51331),(5,262,0.14),(5,263,0.46669),(5,264,0.37331),(5,265,0.32669),(6,265,0.32669),(5,266,0.42),(5,267,0.23331),(5,268,0.37331),(6,268,0.74662),(6,269,0.5334),(6,270,4.74),(6,271,0.14),(6,272,0.28),(6,273,0.21),(6,274,1.26),(6,275,0.21),(6,276,0.56),(6,277,0.42),(6,278,0.46669),(6,279,0.37331),(6,280,0.84),(6,281,0.32669),(6,282,0.37331),(6,283,0.46669),(6,284,0.56),(6,285,0.32669),(6,286,0.56),(6,287,0.28),(6,288,0.28),(6,289,0.37331),(6,290,0.42),(6,291,0.46662),(6,292,1.30676),(6,293,0.32669),(6,294,0.18669),(6,295,0.28),(6,296,0.23331),(6,297,0.18669),(6,298,0.28),(6,299,0.23331),(6,300,0.51331),(6,301,0.46669),(6,302,0.23331),(6,303,0.37331),(6,304,0.23331),(6,305,0.42),(6,306,0.56),(6,307,0.37331),(6,308,0.42),(6,309,0.42),(6,310,0.32669),(6,311,0.46669),(6,312,1.12),(6,313,1.02662),(6,314,0.46669),(6,315,0.42),(6,316,0.37331),(6,317,0.84),(6,318,1.4),(6,319,0.46662),(6,320,0.23331),(6,321,0.32669),(6,322,0.23331),(6,323,0.37338),(6,324,0.32669),(6,325,0.46669),(6,326,0.56),(6,327,0.37331),(6,328,0.42),(6,329,1.02662),(6,330,0.42),(6,331,0.46662),(6,332,0.65338),(6,333,1.02662),(6,334,0.23331),(6,335,0.32669),(6,336,0.32669),(6,337,0.37331),(6,338,1.02662),(6,339,1.40007),(6,340,0.42),(6,341,0.42),(6,342,0.84),(6,343,0.28),(6,344,0.28),(6,345,0.32669),(6,346,0.32669),(6,347,0.23331),(6,348,0.42),(6,349,0.51331),(6,350,0.42),(6,351,0.65338),(6,352,0.46669),(6,353,0.28),(6,354,3.03345),(6,355,0.51331),(6,356,0.56),(6,357,0.56),(6,358,0.7),(6,359,0.32669),(6,360,0.37338),(6,361,0.14),(6,362,0.60669),(6,363,0.23331),(6,364,0.56),(6,365,0.46669),(6,366,0.51331),(6,367,0.42),(6,368,0.56),(6,369,0.32669),(6,370,0.28),(6,371,0.14),(6,372,0.09331),(6,373,0.27993),(6,374,0.56),(6,375,0.56),(6,376,0.18676),(6,377,1.26),(6,378,0.37338),(6,379,0.23331),(6,380,0.56),(6,381,0.84),(6,382,0.18669),(6,383,1.11993),(6,384,3.03345),(6,385,0.23331),(6,386,1.11993),(6,387,0.37331),(6,388,0.93338),(6,389,2.24),(6,390,1.02662),(6,391,0.51331),(6,392,0.37331),(6,393,1.12),(6,394,1.12),(6,395,0.37331),(6,396,0.51331),(6,397,0.42),(6,398,0.46669),(6,399,0.56),(6,400,0.42),(6,401,0.51331),(6,402,0.93338),(6,403,1.40007),(6,404,0.65338),(6,405,0.42),(6,406,0.23331),(6,407,0.42),(6,408,0.37338),(6,409,1.86648),(6,410,0.09331),(6,411,0.18669),(6,412,0.14),(6,413,0.56),(6,414,0.37331),(6,415,0.42),(6,416,0.28),(6,417,0.37331),(6,418,0.42),(6,419,0.65338),(6,420,0.23331),(6,421,0.46662),(6,422,0.32669),(6,423,0.18669),(6,424,0.84),(6,425,0.09331),(6,426,0.32669),(6,427,0.56),(6,428,0.45339),(6,524,0.28),(6,525,0.32669),(6,526,0.23331),(6,527,0.46669),(6,528,0.42),(6,529,0.32669),(6,530,0.37331),(6,531,0.37331),(6,532,0.37331),(6,533,0.46669),(6,534,0.51331),(6,535,0.46669),(6,536,0.42),(6,537,0.37331),(6,538,0.46669),(6,539,0.23331),(6,555,0.28),(6,556,0.14),(6,557,0.32669),(6,558,0.42),(6,559,0.56),(6,560,0.32669),(6,561,0.14),(6,562,0.60669),(6,563,0.42),(6,564,0.28),(6,565,0.46669),(6,570,0.46669),(6,571,0.65331);
/*!40000 ALTER TABLE `jnx5e_finder_links_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_logging`
--
DROP TABLE IF EXISTS `jnx5e_finder_logging`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_logging` (
`searchterm` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`md5sum` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`query` blob NOT NULL,
`hits` int NOT NULL DEFAULT '1',
`results` int NOT NULL DEFAULT '0',
PRIMARY KEY (`md5sum`),
KEY `searchterm` (`searchterm`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_logging`
--
LOCK TABLES `jnx5e_finder_logging` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_logging` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_finder_logging` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_taxonomy`
--
DROP TABLE IF EXISTS `jnx5e_finder_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_taxonomy` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int unsigned NOT NULL DEFAULT '0',
`lft` int NOT NULL DEFAULT '0',
`rgt` int NOT NULL DEFAULT '0',
`level` int unsigned NOT NULL DEFAULT '0',
`path` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`state` tinyint unsigned NOT NULL DEFAULT '1',
`access` tinyint unsigned NOT NULL DEFAULT '1',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `idx_state` (`state`),
KEY `idx_access` (`access`),
KEY `idx_path` (`path`(100)),
KEY `idx_level` (`level`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`(100)),
KEY `idx_language` (`language`),
KEY `idx_parent_published` (`parent_id`,`state`,`access`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_taxonomy`
--
LOCK TABLES `jnx5e_finder_taxonomy` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_taxonomy` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_taxonomy` VALUES (1,0,0,23,0,'','ROOT','root',1,1,'*'),(2,1,1,8,1,'type','Type','type',1,1,'*'),(3,2,2,3,2,'type/phoca-download','Phoca Download','phoca-download',1,1,'*'),(4,1,9,14,1,'category','Category','category',1,1,'*'),(5,4,10,11,2,'category/normatividad','Normatividad','normatividad',1,1,'*'),(6,1,15,18,1,'language','Language','language',1,1,'*'),(7,6,16,17,2,'language/4086f6336014c75439f87cbda42d9c51','*','4086f6336014c75439f87cbda42d9c51',1,1,'*'),(8,2,4,5,2,'type/category','Category','category',1,1,'*'),(9,2,6,7,2,'type/article','Article','article',1,1,'*'),(10,1,19,22,1,'author','Author','author',1,1,'*'),(11,10,20,21,2,'author/admin','admin','admin',1,1,'*'),(12,4,12,13,2,'category/uncategorised','Uncategorised','uncategorised',1,1,'*');
/*!40000 ALTER TABLE `jnx5e_finder_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_taxonomy_map`
--
DROP TABLE IF EXISTS `jnx5e_finder_taxonomy_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_taxonomy_map` (
`link_id` int unsigned NOT NULL,
`node_id` int unsigned NOT NULL,
PRIMARY KEY (`link_id`,`node_id`),
KEY `link_id` (`link_id`),
KEY `node_id` (`node_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_taxonomy_map`
--
LOCK TABLES `jnx5e_finder_taxonomy_map` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_taxonomy_map` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_taxonomy_map` VALUES (1,3),(1,5),(1,7),(2,7),(2,8),(3,7),(3,8),(4,7),(4,8),(5,7),(5,9),(5,11),(5,12),(6,7),(6,9),(6,11),(6,12),(7,7),(7,9),(7,11),(7,12),(8,7),(8,9),(8,11),(8,12);
/*!40000 ALTER TABLE `jnx5e_finder_taxonomy_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_terms`
--
DROP TABLE IF EXISTS `jnx5e_finder_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_terms` (
`term_id` int unsigned NOT NULL AUTO_INCREMENT,
`term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`stem` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`common` tinyint unsigned NOT NULL DEFAULT '0',
`phrase` tinyint unsigned NOT NULL DEFAULT '0',
`weight` float unsigned NOT NULL DEFAULT '0',
`soundex` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`links` int NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`term_id`),
UNIQUE KEY `idx_term_language` (`term`,`language`),
KEY `idx_stem` (`stem`),
KEY `idx_term_phrase` (`term`,`phrase`),
KEY `idx_stem_phrase` (`stem`,`phrase`),
KEY `idx_soundex_phrase` (`soundex`,`phrase`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=572 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_terms`
--
LOCK TABLES `jnx5e_finder_terms` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_terms` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_terms` VALUES (1,'006','006',0,0,0.3,'',1,'*'),(2,'1','1',0,0,0.1,'',9,'*'),(3,'2024','2024',0,0,0.4,'',1,'*'),(4,'aaaaadsasfas','aaaaadsasfas',0,0,0.8,'A3212',1,'*'),(5,'acta','acta',0,0,0.2667,'A230',1,'*'),(6,'aprueba','aprueba',0,0,0.4667,'A161',1,'*'),(7,'cual','cual',0,0,0.2667,'C400',1,'*'),(8,'dasñfkj','dasñfkj',0,0,0.4667,'D212',1,'*'),(9,'de','de',0,0,0.1333,'D000',44,'*'),(10,'extraordinaria','extraordinaria',0,0,0.9333,'E236356',1,'*'),(11,'jlsdjflj','jlsdjflj',0,0,0.5333,'J4232142',1,'*'),(12,'la','la',0,0,0.1333,'L000',29,'*'),(13,'lk','lk',0,0,0.1333,'L200',1,'*'),(14,'n','n',0,0,0.0667,'N000',1,'*'),(15,'por','por',0,0,0.2,'P600',24,'*'),(16,'se','se',0,0,0.1333,'S000',24,'*'),(17,'sesion','sesion',0,0,0.4,'S500',1,'*'),(32,'2','2',0,0,0.1,'',29,'*'),(33,'uncategorised','uncategorised',0,0,0.8667,'U5232623',3,'*'),(35,'4','4',0,0,0.1,'',6,'*'),(36,'5','5',0,0,0.1,'',3,'*'),(37,'3','3',0,0,0.1,'',20,'*'),(38,'acordion','acordion',0,0,0.5333,'A2635',4,'*'),(39,'admin','admin',0,0,0.3333,'A350',53,'*'),(40,'blue','blue',0,0,0.2667,'B400',25,'*'),(41,'calendar','calendar',0,0,0.5333,'C4536',4,'*'),(42,'calendario','calendario',0,0,0.6667,'C4536',4,'*'),(43,'class','class',0,0,0.3333,'C420',25,'*'),(44,'content','content',0,0,0.4667,'C5353',4,'*'),(45,'dp','dp',0,0,0.1333,'D100',4,'*'),(46,'efecto','efecto',0,0,0.4,'E123',4,'*'),(47,'green','green',0,0,0.3333,'G650',4,'*'),(48,'imageeffectck','imageeffectck',0,0,0.8667,'I521232',4,'*'),(49,'modulo','modulo',0,0,0.4,'M340',4,'*'),(50,'ol','ol',0,0,0.1333,'O400',4,'*'),(51,'prueba','prueba',0,0,0.4,'P610',5,'*'),(52,'red','red',0,0,0.2,'R300',23,'*'),(53,'simple','simple',0,0,0.4,'S514',4,'*'),(54,'slider','slider',0,0,0.4,'S436',25,'*'),(55,'sliders','sliders',0,0,0.4667,'S4362',4,'*'),(56,'tab','tab',0,0,0.2,'T100',4,'*'),(57,'tabs','tabs',0,0,0.2667,'T120',4,'*'),(58,'testimonials','testimonials',0,0,0.8,'T23542',4,'*'),(59,'testimonio','testimonio',0,0,0.6667,'T235',4,'*'),(60,'title','title',0,0,0.3333,'T400',25,'*'),(68,'menu','menu',0,0,0.2667,'M000',1,'*'),(69,'menu-vertical','menu-vertical',0,0,0.8667,'M16324',1,'*'),(70,'vertical','vertical',0,0,0.5333,'V6324',1,'*'),(71,'accionar','accionar',0,0,0.5333,'A256',2,'*'),(72,'agrícola','agrícola',0,0,0.5333,'A2624',3,'*'),(73,'botones','botones',0,0,0.4667,'B352',3,'*'),(74,'con','con',0,0,0.2,'C500',27,'*'),(75,'especialización','especialización',0,0,1,'E212425',3,'*'),(76,'grupo','grupo',0,0,0.3333,'G610',5,'*'),(77,'imagen','imagen',0,0,0.4,'I525',3,'*'),(78,'investigación','investigación',0,0,0.8667,'I512325',24,'*'),(79,'línea','línea',0,0,0.3333,'L500',3,'*'),(80,'maestria','maestria',0,0,0.5333,'M236',3,'*'),(81,'mvz','mvz',0,0,0.2,'M120',3,'*'),(82,'pregrado','pregrado',0,0,0.5333,'P6263',3,'*'),(83,'produccion','produccion',0,0,0.6667,'P6325',3,'*'),(84,'producción','producción',0,0,0.6667,'P6325',3,'*'),(85,'profundización','profundización',0,0,0.9333,'P615325',3,'*'),(86,'proyectos','proyectos',0,0,0.6,'P6232',3,'*'),(87,'pts','pts',0,0,0.2,'P320',3,'*'),(88,'sostenible','sostenible',0,0,0.6667,'S3514',7,'*'),(89,'tropical','tropical',0,0,0.5333,'T6124',3,'*'),(102,'boton','boton',0,0,0.3333,'B350',2,'*'),(103,'ejemplo','ejemplo',0,0,0.4667,'E2514',2,'*'),(104,'memorias','memorias',0,0,0.5333,'M620',39,'*'),(105,'ejes','ejes',0,0,0.2667,'E200',5,'*'),(106,'tematicos','tematicos',0,0,0.6,'T532',5,'*'),(107,'a','a',0,0,0.0667,'A000',39,'*'),(108,'académicos','académicos',0,0,0.6667,'A2352',26,'*'),(109,'actuales','actuales',0,0,0.5333,'A2342',2,'*'),(110,'al','al',0,0,0.1333,'A400',36,'*'),(111,'análisis','análisis',0,0,0.5333,'A542',8,'*'),(112,'articulan','articulan',0,0,0.6,'A63245',2,'*'),(113,'cada','cada',0,0,0.2667,'C300',16,'*'),(114,'ciencias','ciencias',0,0,0.5333,'C520',36,'*'),(115,'como','como',0,0,0.2667,'C500',4,'*'),(116,'compartir','compartir',0,0,0.6,'C51636',4,'*'),(117,'conecta','conecta',0,0,0.4667,'C523',2,'*'),(118,'congreso','congreso',0,0,0.5333,'C5262',39,'*'),(119,'conocimientos','conocimientos',0,0,0.8667,'C52532',26,'*'),(120,'contabilidad','contabilidad',0,0,0.8,'C53143',2,'*'),(121,'contribuyan','contribuyan',0,0,0.7333,'C53615',4,'*'),(122,'crecimiento','crecimiento',0,0,0.7333,'C6253',2,'*'),(123,'del','del',0,0,0.2,'D400',39,'*'),(124,'desafíos','desafíos',0,0,0.5333,'D212',2,'*'),(125,'desarrollo','desarrollo',0,0,0.6667,'D264',7,'*'),(126,'dinero','dinero',0,0,0.4,'D560',2,'*'),(127,'e','e',0,0,0.0667,'E000',27,'*'),(128,'económicas','económicas',0,0,0.6667,'E252',36,'*'),(129,'económico','económico',0,0,0.6,'E252',4,'*'),(130,'edición','edición',0,0,0.4667,'E325',17,'*'),(131,'eje','eje',0,0,0.2,'E200',27,'*'),(132,'el','el',0,0,0.1333,'E400',39,'*'),(133,'empresariales','empresariales',0,0,0.8667,'E5162642',2,'*'),(134,'en','en',0,0,0.1333,'E500',39,'*'),(135,'entorno','entorno',0,0,0.4667,'E5365',4,'*'),(136,'espacios','espacios',0,0,0.5333,'E212',4,'*'),(137,'esta','esta',0,0,0.2667,'E230',4,'*'),(138,'estos','estos',0,0,0.3333,'E232',2,'*'),(139,'estratégicas','estratégicas',0,0,0.8,'E23632',2,'*'),(140,'experiencias','experiencias',0,0,0.8,'E21652',26,'*'),(141,'finanzas','finanzas',0,0,0.5333,'F520',2,'*'),(142,'frente','frente',0,0,0.4,'F653',4,'*'),(143,'gestión','gestión',0,0,0.4667,'G350',2,'*'),(144,'global','global',0,0,0.4,'G414',4,'*'),(145,'innovación','innovación',0,0,0.6667,'I5125',4,'*'),(146,'innovadoras','innovadoras',0,0,0.7333,'I51362',2,'*'),(147,'integral','integral',0,0,0.5333,'I53264',2,'*'),(148,'interdisciplinaria','interdisciplinaria',0,0,1,'I536321456',2,'*'),(149,'internacional','internacional',0,0,0.8667,'I5365254',36,'*'),(150,'investigadores','investigadores',0,0,0.9333,'I51232362',26,'*'),(151,'invita','invita',0,0,0.4,'I513',4,'*'),(152,'las','las',0,0,0.2,'L200',37,'*'),(153,'los','los',0,0,0.2,'L200',36,'*'),(154,'marketing','marketing',0,0,0.6,'M62352',2,'*'),(155,'organizaciones','organizaciones',0,0,0.9333,'O625252',2,'*'),(156,'para','para',0,0,0.2667,'P600',34,'*'),(157,'políticas','políticas',0,0,0.6,'P432',2,'*'),(158,'presenta','presenta',0,0,0.5333,'P6253',4,'*'),(159,'profesionales','profesionales',0,0,0.8667,'P612542',4,'*'),(160,'promoviendo','promoviendo',0,0,0.7333,'P65153',2,'*'),(161,'propuestas','propuestas',0,0,0.6667,'P61232',4,'*'),(162,'práctica','práctica',0,0,0.5333,'P6232',2,'*'),(163,'públicas','públicas',0,0,0.5333,'P420',2,'*'),(164,'que','que',0,0,0.2,'Q000',27,'*'),(165,'reflexión','reflexión',0,0,0.6,'R1425',4,'*'),(166,'retos','retos',0,0,0.3333,'R320',4,'*'),(167,'social','social',0,0,0.4,'S400',4,'*'),(168,'soluciones','soluciones',0,0,0.6667,'S4252',2,'*'),(169,'son','son',0,0,0.2,'S500',4,'*'),(170,'sostenibilidad','sostenibilidad',0,0,0.9333,'S35143',2,'*'),(171,'sus','sus',0,0,0.2,'S000',27,'*'),(172,'temáticos','temáticos',0,0,0.6,'T532',5,'*'),(173,'teoría','teoría',0,0,0.4,'T600',2,'*'),(174,'territorial','territorial',0,0,0.7333,'T6364',2,'*'),(175,'territorios','territorios',0,0,0.7333,'T6362',2,'*'),(176,'una','una',0,0,0.2,'U500',25,'*'),(177,'valor','valor',0,0,0.3333,'V460',2,'*'),(178,'visión','visión',0,0,0.4,'V250',2,'*'),(179,'y','y',0,0,0.0667,'Y000',30,'*'),(232,'acceder','acceder',0,0,0.4667,'A236',9,'*'),(233,'anteriores','anteriores',0,0,0.6667,'A5362',9,'*'),(234,'años','años',0,0,0.2667,'A200',9,'*'),(235,'bienvenidos','bienvenidos',0,0,0.7333,'B51532',9,'*'),(236,'clic','clic',0,0,0.2667,'C420',9,'*'),(237,'compartido','compartido',0,0,0.6667,'C5163',9,'*'),(238,'congresos','congresos',0,0,0.6,'C5262',1,'*'),(239,'conocimiento','conocimiento',0,0,0.8,'C5253',32,'*'),(240,'documentos','documentos',0,0,0.6667,'D2532',9,'*'),(241,'explorar','explorar',0,0,0.5333,'E2146',9,'*'),(242,'haz','haz',0,0,0.2,'H200',9,'*'),(243,'histórico','histórico',0,0,0.6,'H2362',9,'*'),(244,'imágenes','imágenes',0,0,0.5333,'I5252',9,'*'),(245,'invitamos','invitamos',0,0,0.6,'I51352',9,'*'),(246,'memoria','memoria',0,0,0.4667,'M600',9,'*'),(247,'novena','novena',0,0,0.4,'N150',9,'*'),(248,'nuestra','nuestra',0,0,0.4667,'N236',9,'*'),(249,'pdf','pdf',0,0,0.2,'P310',9,'*'),(250,'repositorio','repositorio',0,0,0.7333,'R1236',9,'*'),(251,'rumbo','rumbo',0,0,0.3333,'R510',9,'*'),(252,'te','te',0,0,0.1333,'T000',9,'*'),(253,'cronograma','cronograma',0,0,0.6667,'C65265',4,'*'),(254,'asistentes','asistentes',0,0,0.6667,'A23532',3,'*'),(255,'desde','desde',0,0,0.3333,'D230',3,'*'),(256,'este','este',0,0,0.2667,'E230',25,'*'),(257,'etapa','etapa',0,0,0.3333,'E310',3,'*'),(258,'evento','evento',0,0,0.4,'E153',25,'*'),(259,'fechas','fechas',0,0,0.4,'F200',26,'*'),(260,'hasta','hasta',0,0,0.3333,'H230',3,'*'),(261,'importantes','importantes',0,0,0.7333,'I5163532',3,'*'),(262,'más','más',0,0,0.2,'M200',3,'*'),(263,'orientando','orientando',0,0,0.6667,'O65353',3,'*'),(264,'ponentes','ponentes',0,0,0.5333,'P532',3,'*'),(265,'proceso','proceso',0,0,0.4667,'P620',26,'*'),(266,'recepción','recepción',0,0,0.6,'R2125',3,'*'),(267,'reúne','reúne',0,0,0.3333,'R500',3,'*'),(268,'trabajos','trabajos',0,0,0.5333,'T612',26,'*'),(269,'guia','guia',0,0,0.2667,'G000',23,'*'),(270,'ponencias','ponencias',0,0,0.6,'P520',23,'*'),(271,'12','12',0,0,0.2,'',23,'*'),(272,'15','15',0,0,0.2,'',23,'*'),(273,'200','200',0,0,0.3,'',23,'*'),(274,'2357-4631','2357-4631',0,0,0.9,'',23,'*'),(275,'500','500',0,0,0.3,'',23,'*'),(276,'abreviaturas','abreviaturas',0,0,0.8,'A161362',23,'*'),(277,'académica','académica',0,0,0.6,'A2352',23,'*'),(278,'aceptación','aceptación',0,0,0.6667,'A21325',23,'*'),(279,'aceptada','aceptada',0,0,0.5333,'A213',23,'*'),(280,'aceptados','aceptados',0,0,0.6,'A2132',23,'*'),(281,'aceptan','aceptan',0,0,0.4667,'A2135',23,'*'),(282,'adscribe','adscribe',0,0,0.5333,'A3261',23,'*'),(283,'afiliación','afiliación',0,0,0.6667,'A1425',23,'*'),(284,'afines','afines',0,0,0.4,'A152',23,'*'),(285,'alcance','alcance',0,0,0.4667,'A4252',23,'*'),(286,'antecedentes','antecedentes',0,0,0.8,'A5323532',23,'*'),(287,'apa','apa',0,0,0.2,'A100',23,'*'),(288,'aporte','aporte',0,0,0.4,'A163',23,'*'),(289,'aprobada','aprobada',0,0,0.5333,'A1613',23,'*'),(290,'arbitraje','arbitraje',0,0,0.6,'A61362',23,'*'),(291,'autor','autor',0,0,0.3333,'A360',23,'*'),(292,'autores','autores',0,0,0.4667,'A362',23,'*'),(293,'autoría','autoría',0,0,0.4667,'A360',23,'*'),(294,'bajo','bajo',0,0,0.2667,'B200',23,'*'),(295,'basada','basada',0,0,0.4,'B230',23,'*'),(296,'bases','bases',0,0,0.3333,'B200',23,'*'),(297,'caso','caso',0,0,0.2667,'C000',23,'*'),(298,'cesión','cesión',0,0,0.4,'C500',23,'*'),(299,'ciego','ciego',0,0,0.3333,'C000',23,'*'),(300,'científicas','científicas',0,0,0.7333,'C5312',23,'*'),(301,'científico','científico',0,0,0.6667,'C5312',23,'*'),(302,'cinco','cinco',0,0,0.3333,'C520',23,'*'),(303,'citación','citación',0,0,0.5333,'C325',23,'*'),(304,'clave','clave',0,0,0.3333,'C410',23,'*'),(305,'coautoría','coautoría',0,0,0.6,'C360',23,'*'),(306,'comité','comité',0,0,0.4,'C530',23,'*'),(307,'completo','completo',0,0,0.5333,'C5143',23,'*'),(308,'completos','completos',0,0,0.6,'C51432',23,'*'),(309,'conceptos','conceptos',0,0,0.6,'C52132',23,'*'),(310,'conciso','conciso',0,0,0.4667,'C520',23,'*'),(311,'concluidas','concluidas',0,0,0.6667,'C52432',23,'*'),(312,'conclusiones','conclusiones',0,0,0.8,'C524252',23,'*'),(313,'constancias','constancias',0,0,0.7333,'C52352',23,'*'),(314,'constituir','constituir',0,0,0.6667,'C5236',23,'*'),(315,'contenido','contenido',0,0,0.6,'C5353',23,'*'),(316,'contexto','contexto',0,0,0.5333,'C5323',23,'*'),(317,'correo','correo',0,0,0.4,'C600',23,'*'),(318,'correspondencia','correspondencia',0,0,1,'C6215352',23,'*'),(319,'curso','curso',0,0,0.3333,'C620',23,'*'),(320,'cvlac','cvlac',0,0,0.3333,'C142',23,'*'),(321,'códigos','códigos',0,0,0.4667,'C320',23,'*'),(322,'datos','datos',0,0,0.3333,'D200',23,'*'),(323,'debe','debe',0,0,0.2667,'D100',23,'*'),(324,'deberán','deberán',0,0,0.4667,'D165',23,'*'),(325,'decisiones','decisiones',0,0,0.6667,'D252',23,'*'),(326,'declaratoria','declaratoria',0,0,0.8,'D24636',23,'*'),(327,'derechos','derechos',0,0,0.5333,'D620',23,'*'),(328,'devolverá','devolverá',0,0,0.6,'D1416',23,'*'),(329,'disciplinas','disciplinas',0,0,0.7333,'D21452',23,'*'),(330,'discusión','discusión',0,0,0.6,'D250',23,'*'),(331,'doble','doble',0,0,0.3333,'D140',23,'*'),(332,'durante','durante',0,0,0.4667,'D653',23,'*'),(333,'electrónico','electrónico',0,0,0.7333,'E423652',23,'*'),(334,'entre','entre',0,0,0.3333,'E536',23,'*'),(335,'enviada','enviada',0,0,0.4667,'E513',23,'*'),(336,'español','español',0,0,0.4667,'E214',23,'*'),(337,'esperado','esperado',0,0,0.5333,'E2163',23,'*'),(338,'estudiantes','estudiantes',0,0,0.7333,'E23532',23,'*'),(339,'evaluación','evaluación',0,0,0.6667,'E1425',23,'*'),(340,'evaluadas','evaluadas',0,0,0.6,'E1432',23,'*'),(341,'evaluador','evaluador',0,0,0.6,'E1436',23,'*'),(342,'finalizar','finalizar',0,0,0.6,'F5426',23,'*'),(343,'firmar','firmar',0,0,0.4,'F656',23,'*'),(344,'formas','formas',0,0,0.4,'F652',23,'*'),(345,'formato','formato',0,0,0.4667,'F653',23,'*'),(346,'fuentes','fuentes',0,0,0.4667,'F532',23,'*'),(347,'haber','haber',0,0,0.3333,'H160',23,'*'),(348,'hipótesis','hipótesis',0,0,0.6,'H132',23,'*'),(349,'inapelables','inapelables',0,0,0.7333,'I514142',23,'*'),(350,'incluidos','incluidos',0,0,0.6,'I52432',23,'*'),(351,'incluye','incluye',0,0,0.4667,'I524',23,'*'),(352,'individual','individual',0,0,0.6667,'I53134',23,'*'),(353,'inglés','inglés',0,0,0.4,'I5242',23,'*'),(354,'institucional','institucional',0,0,0.8667,'I523254',23,'*'),(355,'integrantes','integrantes',0,0,0.7333,'I5326532',23,'*'),(356,'interlineado','interlineado',0,0,0.8,'I536453',23,'*'),(357,'introducción','introducción',0,0,0.8,'I536325',23,'*'),(358,'investigaciones','investigaciones',0,0,1,'I5123252',23,'*'),(359,'inédita','inédita',0,0,0.4667,'I530',23,'*'),(360,'issn','issn',0,0,0.2667,'I250',23,'*'),(361,'jel','jel',0,0,0.2,'J400',23,'*'),(362,'justificación','justificación',0,0,0.8667,'J3125',23,'*'),(363,'letra','letra',0,0,0.3333,'L360',23,'*'),(364,'manera','manera',0,0,0.4,'M600',23,'*'),(365,'materiales','materiales',0,0,0.6667,'M3642',23,'*'),(366,'metodología','metodología',0,0,0.7333,'M342',23,'*'),(367,'modalidad','modalidad',0,0,0.6,'M343',23,'*'),(368,'máximo','máximo',0,0,0.4,'M250',23,'*'),(369,'métodos','métodos',0,0,0.4667,'M320',23,'*'),(370,'mínimo','mínimo',0,0,0.4,'M000',23,'*'),(371,'new','new',0,0,0.2,'N000',23,'*'),(372,'ni','ni',0,0,0.1333,'N000',23,'*'),(373,'no','no',0,0,0.1333,'N000',23,'*'),(374,'nombre','nombre',0,0,0.4,'N160',23,'*'),(375,'normas','normas',0,0,0.4,'N652',23,'*'),(376,'o','o',0,0,0.0667,'O000',23,'*'),(377,'objetivos','objetivos',0,0,0.6,'O12312',23,'*'),(378,'oral','oral',0,0,0.2667,'O640',23,'*'),(379,'orcid','orcid',0,0,0.3333,'O623',23,'*'),(380,'originalidad','originalidad',0,0,0.8,'O62543',23,'*'),(381,'otorgarán','otorgarán',0,0,0.6,'O36265',23,'*'),(382,'otro','otro',0,0,0.2667,'O360',23,'*'),(383,'palabras','palabras',0,0,0.5333,'P4162',23,'*'),(384,'participación','participación',0,0,0.8667,'P632125',23,'*'),(385,'podrá','podrá',0,0,0.3333,'P360',23,'*'),(386,'ponencia','ponencia',0,0,0.5333,'P520',23,'*'),(387,'posibles','posibles',0,0,0.5333,'P2142',23,'*'),(388,'presencial','presencial',0,0,0.6667,'P62524',23,'*'),(389,'presentación','presentación',0,0,0.8,'P625325',23,'*'),(390,'presentadas','presentadas',0,0,0.7333,'P62532',23,'*'),(391,'previamente','previamente',0,0,0.7333,'P6153',23,'*'),(392,'problema','problema',0,0,0.5333,'P6145',23,'*'),(393,'problemática','problemática',0,0,0.8,'P614532',23,'*'),(394,'programación','programación',0,0,0.8,'P626525',23,'*'),(395,'práctico','práctico',0,0,0.5333,'P6232',23,'*'),(396,'publicación','publicación',0,0,0.7333,'P425',22,'*'),(397,'publicada','publicada',0,0,0.6,'P423',23,'*'),(398,'publicados','publicados',0,0,0.6667,'P4232',22,'*'),(399,'página','página',0,0,0.4,'P250',23,'*'),(400,'rechazada','rechazada',0,0,0.6,'R230',23,'*'),(401,'referencias','referencias',0,0,0.7333,'R1652',23,'*'),(402,'requisitos','requisitos',0,0,0.6667,'R232',23,'*'),(403,'resultados','resultados',0,0,0.6667,'R2432',23,'*'),(404,'resumen','resumen',0,0,0.4667,'R250',23,'*'),(405,'resúmenes','resúmenes',0,0,0.6,'R252',23,'*'),(406,'roman','roman',0,0,0.3333,'R500',23,'*'),(407,'ser','ser',0,0,0.2,'S600',23,'*'),(408,'será','será',0,0,0.2667,'S600',23,'*'),(409,'serán','serán',0,0,0.3333,'S650',23,'*'),(410,'si','si',0,0,0.1333,'S000',23,'*'),(411,'sido','sido',0,0,0.2667,'S300',23,'*'),(412,'sin','sin',0,0,0.2,'S500',23,'*'),(413,'socializados','socializados',0,0,0.8,'S4232',22,'*'),(414,'sometida','sometida',0,0,0.5333,'S530',23,'*'),(415,'sometidas','sometidas',0,0,0.6,'S532',23,'*'),(416,'tamaño','tamaño',0,0,0.4,'T500',23,'*'),(417,'temático','temático',0,0,0.5333,'T532',23,'*'),(418,'terminada','terminada',0,0,0.6,'T653',23,'*'),(419,'teórico','teórico',0,0,0.4667,'T620',23,'*'),(420,'times','times',0,0,0.3333,'T520',23,'*'),(421,'todas','todas',0,0,0.3333,'T200',23,'*'),(422,'trabajo','trabajo',0,0,0.4667,'T612',23,'*'),(423,'tres','tres',0,0,0.2667,'T620',23,'*'),(424,'título','título',0,0,0.4,'T400',23,'*'),(425,'un','un',0,0,0.1333,'U500',23,'*'),(426,'versión','versión',0,0,0.4667,'V625',23,'*'),(427,'última','última',0,0,0.4,'ú435',23,'*'),(428,'guía','guía',0,0,0.2667,'G000',23,'*'),(524,'activa','activa',0,0,0.4,'A231',22,'*'),(525,'avances','avances',0,0,0.4667,'A152',22,'*'),(526,'busca','busca',0,0,0.3333,'B200',22,'*'),(527,'científica','científica',0,0,0.6667,'C5312',22,'*'),(528,'comunidad','comunidad',0,0,0.6,'C530',22,'*'),(529,'convoca','convoca',0,0,0.4667,'C512',22,'*'),(530,'difusión','difusión',0,0,0.5333,'D125',22,'*'),(531,'diversas','diversas',0,0,0.5333,'D162',22,'*'),(532,'economía','economía',0,0,0.5333,'E250',22,'*'),(533,'fomentando','fomentando',0,0,0.6667,'F5353',22,'*'),(534,'intercambio','intercambio',0,0,0.7333,'I536251',22,'*'),(535,'originales','originales',0,0,0.6667,'O62542',22,'*'),(536,'presentar','presentar',0,0,0.6,'P62536',22,'*'),(537,'promover','promover',0,0,0.5333,'P6516',22,'*'),(538,'relevantes','relevantes',0,0,0.6667,'R41532',22,'*'),(539,'áreas','áreas',0,0,0.3333,'á620',22,'*'),(555,'diseño','diseño',0,0,0.4,'D200',4,'*'),(556,'dos','dos',0,0,0.2,'D200',4,'*'),(557,'figuras','figuras',0,0,0.4667,'F262',4,'*'),(558,'filiación','filiación',0,0,0.6,'F425',4,'*'),(559,'instrumentos','instrumentos',0,0,0.8,'I5236532',4,'*'),(560,'muestra','muestra',0,0,0.4667,'M236',4,'*'),(561,'máx','máx',0,0,0.2,'M200',4,'*'),(562,'planteamiento','planteamiento',0,0,0.8667,'P45353',4,'*'),(563,'población','población',0,0,0.6,'P425',4,'*'),(564,'tablas','tablas',0,0,0.4,'T142',4,'*'),(565,'vinculadas','vinculadas',0,0,0.6667,'V52432',4,'*'),(570,'comunicada','comunicada',0,0,0.6667,'C523',1,'*'),(571,'presentaciones','presentaciones',0,0,0.9333,'P6253252',1,'*');
/*!40000 ALTER TABLE `jnx5e_finder_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_terms_common`
--
DROP TABLE IF EXISTS `jnx5e_finder_terms_common`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_terms_common` (
`term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`custom` int NOT NULL DEFAULT '0',
UNIQUE KEY `idx_term_language` (`term`,`language`),
KEY `idx_lang` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_terms_common`
--
LOCK TABLES `jnx5e_finder_terms_common` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_terms_common` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_terms_common` VALUES ('a','en',0),('a mí','es',0),('a quien','es',0),('a él','es',0),('abajo','es',0),('about','en',0),('above','en',0),('acerca de','es',0),('activado','es',0),('after','en',0),('again','en',0),('against','en',0),('ahí','es',0),('ahí es','es',0),('algunos','es',0),('all','en',0),('am','en',0),('ambos','es',0),('an','en',0),('and','en',0),('antes','es',0),('any','en',0),('aquí','es',0),('aquí es','es',0),('are','en',0),('aren\'t','en',0),('arriba','es',0),('as','en',0),('así','es',0),('at','en',0),('bajo','es',0),('be','en',0),('because','en',0),('been','en',0),('before','en',0),('being','en',0),('below','en',0),('between','en',0),('both','en',0),('but','en',0),('by','en',0),('cada','es',0),('can\'t','en',0),('cannot','en',0),('como','es',0),('con','es',0),('contra','es',0),('could','en',0),('couldn\'t','en',0),('cualquiera','es',0),('cuando es','es',0),('cuál','es',0),('cuándo','es',0),('cómo','es',0),('cómo es','es',0),('de','es',0),('debería','es',0),('dentro','es',0),('desactivado','es',0),('después','es',0),('destinatario','es',0),('did','en',0),('didn\'t','en',0),('do','en',0),('does','en',0),('doesn\'t','en',0),('doing','en',0),('don\'t','en',0),('donde es','es',0),('down','en',0),('durante','es',0),('during','en',0),('dónde','es',0),('each','en',0),('el','es',0),('ella','es',0),('ella es','es',0),('ella misma','es',0),('ello','es',0),('ellos','es',0),('ellos mismos','es',0),('ellos son','es',0),('en','es',0),('entonces','es',0),('entre','es',0),('eres','es',0),('es','es',0),('eso','es',0),('eso es','es',0),('esos','es',0),('esto','es',0),('estos','es',0),('few','en',0),('for','en',0),('from','en',0),('fue','es',0),('fuera','es',0),('fueron','es',0),('further','en',0),('ha','es',0),('habiendo','es',0),('habría','es',0),('habríamos','es',0),('habrían','es',0),('habrías','es',0),('había','es',0),('hace','es',0),('hacer','es',0),('haciendo','es',0),('had','en',0),('hadn\'t','en',0),('hagamos','es',0),('han','es',0),('haremos','es',0),('hará','es',0),('harán','es',0),('harás','es',0),('haré','es',0),('has','en',0),('has','es',0),('hasn\'t','en',0),('hasta','es',0),('have','en',0),('haven\'t','en',0),('having','en',0),('he','en',0),('he','es',0),('he\'d','en',0),('he\'ll','en',0),('he\'s','en',0),('hemos','es',0),('her','en',0),('here','en',0),('here\'s','en',0),('hers','en',0),('herself','en',0),('him','en',0),('himself','en',0),('his','en',0),('hizo','es',0),('how','en',0),('how\'s','en',0),('i','en',0),('i\'d','en',0),('i\'ll','en',0),('i\'m','en',0),('i\'ve','en',0),('if','en',0),('in','en',0),('into','en',0),('is','en',0),('isn\'t','en',0),('it','en',0),('it\'s','en',0),('its','en',0),('itself','en',0),('let\'s','en',0),('me','en',0),('mi','es',0),('mientras','es',0),('mismo','es',0),('more','en',0),('most','en',0),('mucho','es',0),('mustn\'t','en',0),('muy','es',0),('my','en',0),('myself','en',0),('más','es',0),('más tarde','es',0),('ni','es',0),('no','en',0),('no','es',0),('no debe','es',0),('no debería','es',0),('no era','es',0),('no es','es',0),('no fue','es',0),('no fueron','es',0),('no ha sido','es',0),('no han sido','es',0),('no podría','es',0),('no puede','es',0),('no será','es',0),('no sería','es',0),('no son','es',0),('nor','en',0),('nosotros','es',0),('nosotros mismos','es',0),('not','en',0),('nuestro','es',0),('nuestros','es',0),('nunca','es',0),('o','es',0),('of','en',0),('off','en',0),('on','en',0),('once','en',0),('only','en',0),('or','en',0),('other','en',0),('otra vez','es',0),('otro','es',0),('ought','en',0),('our','en',0),('ours','en',0),('ourselves','en',0),('out','en',0),('over','en',0),('own','en',0),('para','es',0),('pero','es',0),('pocos','es',0),('podria','es',0),('por','es',0),('por qué','es',0),('por qué es','es',0),('porque','es',0),('que','es',0),('que es','es',0),('quien','es',0),('quien es','es',0),('qué','es',0),('same','en',0),('ser','es',0),('sería','es',0),('shan\'t','en',0),('she','en',0),('she\'d','en',0),('she\'ll','en',0),('she\'s','en',0),('should','en',0),('shouldn\'t','en',0),('si','es',0),('sido','es',0),('siendo','es',0),('so','en',0),('sobre','es',0),('solo','es',0),('some','en',0),('somos','es',0),('son','es',0),('soy','es',0),('su','es',0),('subir','es',0),('such','en',0),('sus','es',0),('suyo','es',0),('sí mismo','es',0),('tal','es',0),('también','es',0),('tener','es',0),('than','en',0),('that','en',0),('that\'s','en',0),('the','en',0),('their','en',0),('theirs','en',0),('them','en',0),('themselves','en',0),('then','en',0),('there','en',0),('there\'s','en',0),('these','en',0),('they','en',0),('they\'d','en',0),('they\'ll','en',0),('they\'re','en',0),('they\'ve','en',0),('this','en',0),('those','en',0),('through','en',0),('to','en',0),('todo','es',0),('too','en',0),('tuyo','es',0),('tuyos','es',0),('tú','es',0),('tú mismo','es',0),('un','es',0),('una vez','es',0),('under','en',0),('until','en',0),('up','en',0),('very','en',0),('vosotros mismos','es',0),('was','en',0),('wasn\'t','en',0),('we','en',0),('we\'d','en',0),('we\'ll','en',0),('we\'re','en',0),('we\'ve','en',0),('were','en',0),('weren\'t','en',0),('what','en',0),('what\'s','en',0),('when','en',0),('when\'s','en',0),('where','en',0),('where\'s','en',0),('which','en',0),('while','en',0),('who','en',0),('who\'s','en',0),('whom','en',0),('why','en',0),('why\'s','en',0),('with','en',0),('won\'t','en',0),('would','en',0),('wouldn\'t','en',0),('y','es',0),('yo','es',0),('yo mismo','es',0),('you','en',0),('you\'d','en',0),('you\'ll','en',0),('you\'re','en',0),('you\'ve','en',0),('your','en',0),('yours','en',0),('yourself','en',0),('yourselves','en',0),('él','es',0),('él mismo','es',0);
/*!40000 ALTER TABLE `jnx5e_finder_terms_common` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_tokens`
--
DROP TABLE IF EXISTS `jnx5e_finder_tokens`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_tokens` (
`term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`stem` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`common` tinyint unsigned NOT NULL DEFAULT '0',
`phrase` tinyint unsigned NOT NULL DEFAULT '0',
`weight` float unsigned NOT NULL DEFAULT '1',
`context` tinyint unsigned NOT NULL DEFAULT '2',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
KEY `idx_word` (`term`),
KEY `idx_stem` (`stem`),
KEY `idx_context` (`context`),
KEY `idx_language` (`language`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_tokens`
--
LOCK TABLES `jnx5e_finder_tokens` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_tokens` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_finder_tokens` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_tokens_aggregate`
--
DROP TABLE IF EXISTS `jnx5e_finder_tokens_aggregate`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_tokens_aggregate` (
`term_id` int unsigned NOT NULL,
`term` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`stem` varchar(75) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`common` tinyint unsigned NOT NULL DEFAULT '0',
`phrase` tinyint unsigned NOT NULL DEFAULT '0',
`term_weight` float unsigned NOT NULL DEFAULT '0',
`context` tinyint unsigned NOT NULL DEFAULT '2',
`context_weight` float unsigned NOT NULL DEFAULT '0',
`total_weight` float unsigned NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
KEY `token` (`term`),
KEY `keyword_id` (`term_id`)
) ENGINE=MEMORY DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_tokens_aggregate`
--
LOCK TABLES `jnx5e_finder_tokens_aggregate` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_tokens_aggregate` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_finder_tokens_aggregate` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_finder_types`
--
DROP TABLE IF EXISTS `jnx5e_finder_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_finder_types` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`mime` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `title` (`title`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_finder_types`
--
LOCK TABLES `jnx5e_finder_types` WRITE;
/*!40000 ALTER TABLE `jnx5e_finder_types` DISABLE KEYS */;
INSERT INTO `jnx5e_finder_types` VALUES (1,'Category',''),(2,'Contact',''),(3,'Article',''),(4,'News Feed',''),(5,'Tag',''),(6,'Phoca Download','');
/*!40000 ALTER TABLE `jnx5e_finder_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_guidedtour_steps`
--
DROP TABLE IF EXISTS `jnx5e_guidedtour_steps`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_guidedtour_steps` (
`id` int NOT NULL AUTO_INCREMENT,
`tour_id` int NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ordering` int NOT NULL DEFAULT '0',
`position` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`target` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` int NOT NULL,
`interactive_type` int NOT NULL DEFAULT '1',
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`checked_out` int unsigned DEFAULT NULL,
`language` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`params` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `idx_tour` (`tour_id`),
KEY `idx_state` (`published`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=120 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_guidedtour_steps`
--
LOCK TABLES `jnx5e_guidedtour_steps` WRITE;
/*!40000 ALTER TABLE `jnx5e_guidedtour_steps` DISABLE KEYS */;
INSERT INTO `jnx5e_guidedtour_steps` VALUES (1,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_NEW_DESCRIPTION',1,'bottom','.button-new',2,1,'administrator/index.php?option=com_guidedtours&view=tours','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(2,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_TITLE_DESCRIPTION',2,'bottom','#jform_title',2,2,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(3,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_URL_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_URL_DESCRIPTION',3,'top','#jform_url',2,2,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(4,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_CONTENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_CONTENT_DESCRIPTION',4,'bottom','#jform_description,#jform_description_ifr',2,3,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(5,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_COMPONENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_COMPONENT_DESCRIPTION',5,'top','joomla-field-fancy-select .choices',2,3,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(6,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_AUTOSTART_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_AUTOSTART_DESCRIPTION',6,'bottom','#jform_autostart0',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(7,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_SAVECLOSE_DESCRIPTION',7,'top','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(8,1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_STEP_CONGRATULATIONS_DESCRIPTION',8,'bottom','',0,1,'administrator/index.php?option=com_guidedtours&view=tour&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(9,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_COUNTER_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_COUNTER_DESCRIPTION',9,'top','#toursList tbody tr:nth-last-of-type(1) td:nth-of-type(5) .btn',2,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(10,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_NEW_DESCRIPTION',10,'bottom','.button-new',2,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(11,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TITLE_DESCRIPTION',11,'bottom','#jform_title',2,2,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(12,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_DESCRIPTION_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_DESCRIPTION_DESCRIPTION',12,'bottom','#jform_description,#jform_description_ifr',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(13,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_STATUS_DESCRIPTION',13,'bottom','#jform_published',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(14,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_POSITION_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_POSITION_DESCRIPTION',14,'top','#jform_position',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(15,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TARGET_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TARGET_DESCRIPTION',15,'top','#jform_target',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(16,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TYPE_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_TYPE_DESCRIPTION',16,'top','#jform_type',2,3,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(17,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_SAVECLOSE_DESCRIPTION',17,'bottom','#save-group-children-save .button-save',2,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(18,2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_STEP_CONGRATULATIONS_DESCRIPTION',18,'bottom','',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(19,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_NEW_DESCRIPTION',19,'bottom','.button-new',2,1,'administrator/index.php?option=com_content&view=articles','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(20,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_TITLE_DESCRIPTION',20,'bottom','#jform_title',2,2,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(21,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_ALIAS_DESCRIPTION',21,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(22,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CONTENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CONTENT_DESCRIPTION',22,'bottom','#jform_articletext,#jform_articletext_ifr',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(23,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_STATUS_DESCRIPTION',23,'bottom','#jform_state',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(24,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CATEGORY_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CATEGORY_DESCRIPTION',24,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(25,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_FEATURED_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_FEATURED_DESCRIPTION',25,'bottom','#jform_featured0',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(26,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_ACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_ACCESS_DESCRIPTION',26,'bottom','#jform_access',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(27,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_TAGS_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_TAGS_DESCRIPTION',27,'top','joomla-field-fancy-select .choices[data-type=select-multiple]',2,3,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(28,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_NOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_NOTE_DESCRIPTION',28,'top','#jform_note',2,2,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(29,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_VERSIONNOTE_DESCRIPTION',29,'top','#jform_version_note',2,2,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(30,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_SAVECLOSE_DESCRIPTION',30,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(31,3,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_ARTICLES_STEP_CONGRATULATIONS_DESCRIPTION',31,'bottom','',0,1,'administrator/index.php?option=com_content&view=article&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(32,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_NEW_DESCRIPTION',32,'bottom','.button-new',2,1,'administrator/index.php?option=com_categories&view=categories&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(33,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_TITLE_DESCRIPTION',33,'bottom','#jform_title',2,2,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(34,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_ALIAS_DESCRIPTION',34,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(35,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_CONTENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_CONTENT_DESCRIPTION',35,'bottom','#jform_description,#jform_description_ifr',2,3,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(36,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_PARENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_PARENT_DESCRIPTION',36,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(37,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_STATUS_DESCRIPTION',37,'bottom','#jform_published',2,3,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(38,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_ACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_ACCESS_DESCRIPTION',38,'bottom','#jform_access',2,3,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(39,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_TAGS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_TAGS_DESCRIPTION',39,'top','joomla-field-fancy-select .choices[data-type=select-multiple]',2,3,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(40,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_NOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_NOTE_DESCRIPTION',40,'top','#jform_note',2,2,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(41,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_VERSIONNOTE_DESCRIPTION',41,'top','#jform_version_note',2,2,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(42,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_SAVECLOSE_DESCRIPTION',42,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(43,4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CATEGORIES_STEP_CONGRATULATIONS_DESCRIPTION',43,'bottom','',0,1,'administrator/index.php?option=com_categories&view=category&layout=edit&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(44,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_NEW_DESCRIPTION',44,'bottom','.button-new',2,1,'administrator/index.php?option=com_menus&view=menus','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(45,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_TITLE_DESCRIPTION',45,'bottom','#jform_title',2,2,'administrator/index.php?option=com_menus&view=menu&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(46,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_UNIQUENAME_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_UNIQUENAME_DESCRIPTION',46,'top','#jform_menutype',2,2,'administrator/index.php?option=com_menus&view=menu&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(47,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_DESCRIPTION_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_DESCRIPTION_DESCRIPTION',47,'top','#jform_menudescription',2,2,'administrator/index.php?option=com_menus&view=menu&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(48,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_SAVECLOSE_DESCRIPTION',48,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_menus&view=menu&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(49,5,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_MENUS_STEP_CONGRATULATIONS_DESCRIPTION',49,'bottom','',0,1,'administrator/index.php?option=com_menus&view=menu&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(50,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_NEW_DESCRIPTION',50,'bottom','.button-new',2,1,'administrator/index.php?option=com_tags&view=tags','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(51,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_TITLE_DESCRIPTION',51,'bottom','#jform_title',2,2,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(52,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_ALIAS_DESCRIPTION',52,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(53,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_CONTENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_CONTENT_DESCRIPTION',53,'bottom','#jform_description,#jform_description_ifr',2,3,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(54,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_PARENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_PARENT_DESCRIPTION',54,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(55,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_STATUS_DESCRIPTION',55,'bottom','#jform_published',2,3,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(56,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_ACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_ACCESS_DESCRIPTION',56,'bottom','#jform_access',2,3,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(57,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_NOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_NOTE_DESCRIPTION',57,'top','#jform_note',2,2,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(58,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_VERSIONNOTE_DESCRIPTION',58,'top','#jform_version_note',2,2,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(59,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_SAVECLOSE_DESCRIPTION',59,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(60,6,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_TAGS_STEP_CONGRATULATIONS_DESCRIPTION',60,'bottom','',0,1,'administrator/index.php?option=com_tags&view=tag&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(61,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_NEW_DESCRIPTION',61,'bottom','.button-new',2,1,'administrator/index.php?option=com_banners&view=banners','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(62,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_TITLE_DESCRIPTION',62,'bottom','#jform_name',2,2,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(63,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_ALIAS_DESCRIPTION',63,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(64,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_DETAILS_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_DETAILS_DESCRIPTION',64,'bottom','.col-lg-9',2,3,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(65,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_STATUS_DESCRIPTION',65,'bottom','#jform_state',2,3,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(66,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_CATEGORY_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_CATEGORY_DESCRIPTION',66,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(67,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_PINNED_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_PINNED_DESCRIPTION',67,'bottom','#jform_sticky1',2,3,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(68,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_VERSIONNOTE_DESCRIPTION',68,'top','#jform_version_note',2,2,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(69,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_SAVECLOSE_DESCRIPTION',69,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(70,7,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_BANNERS_STEP_CONGRATULATIONS_DESCRIPTION',70,'bottom','',0,1,'administrator/index.php?option=com_banners&view=banner&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(71,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_NEW_DESCRIPTION',71,'bottom','.button-new',2,1,'administrator/index.php?option=com_contact&view=contacts','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(72,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_TITLE_DESCRIPTION',72,'bottom','#jform_name',2,2,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(73,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_ALIAS_DESCRIPTION',73,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(74,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_DETAILS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_DETAILS_DESCRIPTION',74,'bottom','.col-lg-9',0,1,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(75,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_STATUS_DESCRIPTION',75,'bottom','#jform_published',2,3,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(76,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_CATEGORY_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_CATEGORY_DESCRIPTION',76,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(77,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_FEATURED_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_FEATURED_DESCRIPTION',77,'bottom','#jform_featured0',2,3,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(78,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_ACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_ACCESS_DESCRIPTION',78,'bottom','#jform_access',2,3,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(79,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_TAGS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_TAGS_DESCRIPTION',79,'top','joomla-field-fancy-select .choices[data-type=select-multiple]',2,3,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(80,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_VERSIONNOTE_DESCRIPTION',80,'top','#jform_version_note',2,2,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(81,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_SAVECLOSE_DESCRIPTION',81,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(82,8,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_CONTACTS_STEP_CONGRATULATIONS_DESCRIPTION',82,'bottom','',0,1,'administrator/index.php?option=com_contact&view=contact&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(83,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_NEW_DESCRIPTION',83,'bottom','.button-new',2,1,'administrator/index.php?option=com_newsfeeds&view=newsfeeds','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(84,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_TITLE_DESCRIPTION',84,'bottom','#jform_name',2,2,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(85,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_ALIAS_DESCRIPTION',85,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(86,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_LINK_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_LINK_DESCRIPTION',86,'bottom','#jform_link',2,2,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(87,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_DESCRIPTION_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_DESCRIPTION_DESCRIPTION',87,'bottom','#jform_description,#jform_description_ifr',2,3,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(88,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_STATUS_DESCRIPTION',88,'bottom','#jform_published',2,3,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(89,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_CATEGORY_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_CATEGORY_DESCRIPTION',89,'top','joomla-field-fancy-select .choices[data-type=select-one]',2,3,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(90,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_ACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_ACCESS_DESCRIPTION',90,'bottom','#jform_access',2,3,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(91,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_TAGS_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_TAGS_DESCRIPTION',91,'top','joomla-field-fancy-select .choices[data-type=select-multiple]',2,3,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(92,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_VERSIONNOTE_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_VERSIONNOTE_DESCRIPTION',92,'top','#jform_version_note',2,2,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(93,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_SAVECLOSE_DESCRIPTION',93,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(94,9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_STEP_CONGRATULATIONS_DESCRIPTION',94,'bottom','',0,1,'administrator/index.php?option=com_newsfeeds&view=newsfeed&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(95,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_NEW_DESCRIPTION',95,'bottom','.button-new',2,1,'administrator/index.php?option=com_finder&view=filters','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(96,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_TITLE_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_TITLE_DESCRIPTION',96,'bottom','#jform_title',2,2,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(97,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_ALIAS_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_ALIAS_DESCRIPTION',97,'bottom','#jform_alias',2,2,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(98,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_CONTENT_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_CONTENT_DESCRIPTION',98,'bottom','.col-lg-9',0,1,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(99,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_STATUS_DESCRIPTION',99,'bottom','#jform_state',2,3,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(100,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_SAVECLOSE_DESCRIPTION',100,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(101,10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_STEP_CONGRATULATIONS_DESCRIPTION',101,'bottom','',0,1,'administrator/index.php?option=com_finder&view=filter&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(102,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_NEW_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_NEW_DESCRIPTION',102,'bottom','.button-new',2,1,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(103,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_NAME_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_NAME_DESCRIPTION',103,'bottom','#jform_name',2,2,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(104,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_LOGINNAME_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_LOGINNAME_DESCRIPTION',104,'bottom','#jform_username',2,2,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(105,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORD_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORD_DESCRIPTION',105,'bottom','#jform_password',2,2,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(106,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORD2_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORD2_DESCRIPTION',106,'bottom','#jform_password2',2,2,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(107,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_EMAIL_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_EMAIL_DESCRIPTION',107,'bottom','#jform_email',2,2,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(108,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_SYSTEMEMAIL_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_SYSTEMEMAIL_DESCRIPTION',108,'top','#jform_sendEmail0',2,3,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(109,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_STATUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_STATUS_DESCRIPTION',109,'top','#jform_block0',2,3,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(110,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORDRESET_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_PASSWORDRESET_DESCRIPTION',110,'top','#jform_requireReset0',2,3,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(111,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_SAVECLOSE_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_SAVECLOSE_DESCRIPTION',111,'bottom','#save-group-children-save .button-save',2,1,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(112,11,'COM_GUIDEDTOURS_TOUR_USERS_STEP_CONGRATULATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_USERS_STEP_CONGRATULATIONS_DESCRIPTION',112,'bottom','',0,1,'administrator/index.php?option=com_users&view=user&layout=edit','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(113,12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_TITLE',1,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_MENUS_DESCRIPTION',113,'right','#sidebarmenu',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(114,12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_TITLE',1,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_QUICKACCESS_DESCRIPTION',114,'center','',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(115,12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_TITLE',1,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_NOTIFICATIONS_DESCRIPTION',115,'left','.quickicons-for-update_quickicon .card',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(116,12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_TITLE',1,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_TOPBAR_DESCRIPTION',116,'bottom','#header',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(117,12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_TITLE',1,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_STEP_FINALWORDS_DESCRIPTION',117,'right','#sidebarmenu nav > ul:first-of-type > li:last-child',0,1,'','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,'*','',NULL),(118,13,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_3_STEP_0_TITLE',1,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_3_STEP_0_DESCRIPTION',0,'right','#sidebarmenu nav > ul:first-of-type > li:last-child',0,1,'','2025-04-21 09:04:14',0,'2025-04-21 09:04:14',0,NULL,NULL,'*','','\"{\"required\":1,\"requiredvalue\":\"\"}\"'),(119,14,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_4_STEP_0_TITLE',1,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_4_STEP_0_DESCRIPTION',0,'right','#sidebarmenu nav > ul:first-of-type > li:last-child',0,1,'','2025-10-21 07:50:49',0,'2025-10-21 07:50:49',0,NULL,NULL,'*','','\"{\"required\":1,\"requiredvalue\":\"\"}\"');
/*!40000 ALTER TABLE `jnx5e_guidedtour_steps` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_guidedtours`
--
DROP TABLE IF EXISTS `jnx5e_guidedtours`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_guidedtours` (
`id` int NOT NULL AUTO_INCREMENT,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`uid` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ordering` int NOT NULL DEFAULT '0',
`extensions` text COLLATE utf8mb4_unicode_ci NOT NULL,
`url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`created_by` int NOT NULL DEFAULT '0',
`modified` datetime NOT NULL,
`modified_by` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`checked_out` int unsigned DEFAULT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`language` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`access` int unsigned NOT NULL DEFAULT '0',
`autostart` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_state` (`published`),
KEY `idx_language` (`language`),
KEY `idx_uid` (`uid`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_guidedtours`
--
LOCK TABLES `jnx5e_guidedtours` WRITE;
/*!40000 ALTER TABLE `jnx5e_guidedtours` DISABLE KEYS */;
INSERT INTO `jnx5e_guidedtours` VALUES (1,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_TITLE','joomla-guidedtours','COM_GUIDEDTOURS_TOUR_GUIDEDTOURS_DESCRIPTION',1,'[\"com_guidedtours\"]','administrator/index.php?option=com_guidedtours&view=tours','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(2,'COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_TITLE','joomla-guidedtoursteps','COM_GUIDEDTOURS_TOUR_GUIDEDTOURSTEPS_DESCRIPTION',2,'[\"com_guidedtours\"]','administrator/index.php?option=com_guidedtours&view=tours','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(3,'COM_GUIDEDTOURS_TOUR_ARTICLES_TITLE','joomla-articles','COM_GUIDEDTOURS_TOUR_ARTICLES_DESCRIPTION',3,'[\"com_content\",\"com_categories\"]','administrator/index.php?option=com_content&view=articles','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(4,'COM_GUIDEDTOURS_TOUR_CATEGORIES_TITLE','joomla-categories','COM_GUIDEDTOURS_TOUR_CATEGORIES_DESCRIPTION',4,'[\"com_content\",\"com_categories\"]','administrator/index.php?option=com_categories&view=categories&extension=com_content','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(5,'COM_GUIDEDTOURS_TOUR_MENUS_TITLE','joomla-menus','COM_GUIDEDTOURS_TOUR_MENUS_DESCRIPTION',5,'[\"com_menus\"]','administrator/index.php?option=com_menus&view=menus','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(6,'COM_GUIDEDTOURS_TOUR_TAGS_TITLE','joomla-tags','COM_GUIDEDTOURS_TOUR_TAGS_DESCRIPTION',6,'[\"com_tags\"]','administrator/index.php?option=com_tags&view=tags','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(7,'COM_GUIDEDTOURS_TOUR_BANNERS_TITLE','joomla-banners','COM_GUIDEDTOURS_TOUR_BANNERS_DESCRIPTION',7,'[\"com_banners\"]','administrator/index.php?option=com_banners&view=banners','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(8,'COM_GUIDEDTOURS_TOUR_CONTACTS_TITLE','joomla-contacts','COM_GUIDEDTOURS_TOUR_CONTACTS_DESCRIPTION',8,'[\"com_contact\"]','administrator/index.php?option=com_contact&view=contacts','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(9,'COM_GUIDEDTOURS_TOUR_NEWSFEEDS_TITLE','joomla-newsfeeds','COM_GUIDEDTOURS_TOUR_NEWSFEEDS_DESCRIPTION',9,'[\"com_newsfeeds\"]','administrator/index.php?option=com_newsfeeds&view=newsfeeds','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(10,'COM_GUIDEDTOURS_TOUR_SMARTSEARCH_TITLE','joomla-smartsearch','COM_GUIDEDTOURS_TOUR_SMARTSEARCH_DESCRIPTION',10,'[\"com_finder\"]','administrator/index.php?option=com_finder&view=filters','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(11,'COM_GUIDEDTOURS_TOUR_USERS_TITLE','joomla-users','COM_GUIDEDTOURS_TOUR_USERS_DESCRIPTION',11,'[\"com_users\"]','administrator/index.php?option=com_users&view=users','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,0),(12,'COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_TITLE','joomla-welcome','COM_GUIDEDTOURS_TOUR_WELCOMETOJOOMLA_DESCRIPTION',12,'[\"com_cpanel\"]','administrator/index.php','2024-10-17 13:00:52',44,'2024-10-17 13:00:52',44,NULL,NULL,1,'*','',1,1),(13,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_3_TITLE','joomla-whatsnew-5-3','COM_GUIDEDTOURS_TOUR_WHATSNEW_5_3_DESCRIPTION',0,'[\"com_cpanel\"]','administrator/index.php','2025-04-21 09:04:14',0,'2025-04-21 09:04:14',0,NULL,NULL,1,'*','',1,0),(14,'COM_GUIDEDTOURS_TOUR_WHATSNEW_5_4_TITLE','joomla-whatsnew-5-4','COM_GUIDEDTOURS_TOUR_WHATSNEW_5_4_DESCRIPTION',0,'[\"com_cpanel\"]','administrator/index.php','2025-10-21 07:50:49',0,'2025-10-21 07:50:49',0,NULL,NULL,1,'*','',1,1);
/*!40000 ALTER TABLE `jnx5e_guidedtours` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_history`
--
DROP TABLE IF EXISTS `jnx5e_history`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_history` (
`version_id` int unsigned NOT NULL AUTO_INCREMENT,
`item_id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`version_note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Optional version name',
`save_date` datetime NOT NULL,
`editor_user_id` int unsigned NOT NULL DEFAULT '0',
`character_count` int unsigned NOT NULL DEFAULT '0' COMMENT 'Number of characters in this version.',
`sha1_hash` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'SHA1 hash of the version_data column.',
`version_data` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'json-encoded string of version data',
`keep_forever` tinyint NOT NULL DEFAULT '0' COMMENT '0=auto delete; 1=keep',
PRIMARY KEY (`version_id`),
KEY `idx_ucm_item_id` (`item_id`),
KEY `idx_save_date` (`save_date`)
) ENGINE=InnoDB AUTO_INCREMENT=60 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_history`
--
LOCK TABLES `jnx5e_history` WRITE;
/*!40000 ALTER TABLE `jnx5e_history` DISABLE KEYS */;
INSERT INTO `jnx5e_history` VALUES (9,'com_content.article.1','','2025-02-24 14:07:44',44,2333,'d938bac191351ca466e0596a195d175afb4e517b','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<p>efecto imageeffectck<\\/p>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<p>acordion de Simple Sliders<\\/p>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<p>tab de Simple Sliders<\\/p>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<p>modulo testimonio ol_testimonials.<\\/p>\\r\\n<p>{loadmoduleid 113}<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-02-24 14:07:44\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-02-24 14:03:38\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":8,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":49,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(10,'com_content.article.1','','2025-02-24 14:09:04',44,2412,'efc9fdceccadacf53b01cc85e0ca332b8177a9f6','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<p>efecto imageeffectck<\\/p>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<p>acordion de Simple Sliders<\\/p>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<p>tab de Simple Sliders<\\/p>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<p>modulo testimonio ol_testimonials.<\\/p>\\r\\n<p>{loadmoduleid 113}<\\/p>\\r\\n<hr>\\r\\n<p>modulo calendario dp_calendar<\\/p>\\r\\n<p>{loadmoduleid 112}<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-02-24 14:09:04\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-02-24 14:07:44\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":9,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":51,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(11,'com_content.article.1','','2025-02-24 14:31:00',44,2421,'6657a985f056b83666ef7e4d83338729f41631b5','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<h2>efecto imageeffectck<\\/h2>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<h2>acordion de Simple Sliders<\\/h2>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<h2>tab de Simple Sliders<\\/h2>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<h2>modulo testimonio ol_testimonials.<\\/h2>\\r\\n<p>{loadmoduleid 113}<\\/p>\\r\\n<hr>\\r\\n<p>modulo calendario dp_calendar<\\/p>\\r\\n<p>{loadmoduleid 112}<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-02-24 14:31:00\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-02-24 14:30:31\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":11,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":58,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(12,'com_content.article.1','','2025-04-02 21:20:14',44,7597,'f890c4fb563a3f07cccdfc78ac0850103f94a766','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<h2>efecto imageeffectck<\\/h2>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<h2>acordion de Simple Sliders<\\/h2>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<h2>tab de Simple Sliders<\\/h2>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<h2>Botones con imagen\\u00a0<\\/h2>\\r\\n<h2 style=\\\"text-align: center;\\\">Accionar PTS<\\/h2>\\r\\n<div style=\\\"display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;\\\"><!-- Tarjeta 1 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/fondoMVZ.jpg\\\" alt=\\\"Fondo MVZ\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"index.php\\/oferta-formativa\\/pregrado-mvz\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> L\\u00ednea de profundizaci\\u00f3n Pregrado MVZ <\\/a><\\/div>\\r\\n<!-- Tarjeta 2 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPATS.jpg\\\" alt=\\\"FondoPATS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"index.php\\/oferta-formativa\\/especializacion-pts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Especializaci\\u00f3n Producci\\u00f3n Agr\\u00edcola Tropical Sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 3 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPTS.jpg\\\" alt=\\\"FondoPTS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"index.php\\/oferta-formativa\\/maestria-pts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Maestria Produccion tropical sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 4 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/Fondoproyectos.jpg\\\" alt=\\\"Fondoproyectos.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"index.php\\/proyectos-pts\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Proyectos PTS <\\/a><\\/div>\\r\\n<!-- Tarjeta 5 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/horizonte-verde.png\\\" alt=\\\"horizonte-verde.png\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"index.php\\/pts\\/grupos-de-investigacion\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Grupo de investigaci\\u00f3n PTS <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<hr>\\r\\n<h2>modulo testimonio ol_testimonials.<\\/h2>\\r\\n<p>{loadmoduleid 113}<\\/p>\\r\\n<hr>\\r\\n<p>modulo calendario dp_calendar<\\/p>\\r\\n<p>{loadmoduleid 112}<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-04-02 21:20:14\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-04-02 21:19:23\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":12,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":71,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(13,'com_content.article.1','','2025-04-02 21:22:52',44,7396,'eb437b02b712b67cb4809529b98e2303ff8319b7','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<h2>efecto imageeffectck<\\/h2>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<h2>acordion de Simple Sliders<\\/h2>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<h2>tab de Simple Sliders<\\/h2>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<h2>Botones con imagen\\u00a0<\\/h2>\\r\\n<h2 style=\\\"text-align: center;\\\">Accionar PTS<\\/h2>\\r\\n<div style=\\\"display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;\\\"><!-- Tarjeta 1 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/fondoMVZ.jpg\\\" alt=\\\"Fondo MVZ\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> L\\u00ednea de profundizaci\\u00f3n Pregrado MVZ <\\/a><\\/div>\\r\\n<!-- Tarjeta 2 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPATS.jpg\\\" alt=\\\"FondoPATS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Especializaci\\u00f3n Producci\\u00f3n Agr\\u00edcola Tropical Sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 3 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPTS.jpg\\\" alt=\\\"FondoPTS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Maestria Produccion tropical sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 4 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/Fondoproyectos.jpg\\\" alt=\\\"Fondoproyectos.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Proyectos PTS <\\/a><\\/div>\\r\\n<!-- Tarjeta 5 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/horizonte-verde.png\\\" alt=\\\"horizonte-verde.png\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Ejemplo de boton 5 <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<hr>\\r\\n<h2>modulo testimonio ol_testimonials.<\\/h2>\\r\\n<p>{loadmoduleid 113}<\\/p>\\r\\n<hr>\\r\\n<p>modulo calendario dp_calendar<\\/p>\\r\\n<p>{loadmoduleid 112}<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-04-02 21:22:52\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-04-02 21:20:14\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":13,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":73,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(14,'com_content.article.1','','2025-04-02 21:23:12',44,7390,'9cae25e4cb49abe0bc62285363df6d7b84b8175c','{\"id\":\"1\",\"asset_id\":110,\"title\":\"prueba\",\"alias\":\"prueba\",\"introtext\":\"<h2>efecto imageeffectck<\\/h2>\\r\\n<p><img class=\\\"effectck-steve\\\" src=\\\"images\\/logos\\/logo50.png\\\" width=\\\"220\\\" height=\\\"183\\\"><\\/p>\\r\\n<hr>\\r\\n<h2>acordion de Simple Sliders<\\/h2>\\r\\n<p>{slider title=\\\"prueba 1 Title\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p><a href=\\\"#\\\">Slider 1 content.<\\/a><\\/p>\\r\\n<p>{slider title=\\\"Slider 2 Title\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Slider 2 content.\\u00a0<\\/p>\\r\\n<p>{\\/sliders}<\\/p>\\r\\n<hr>\\r\\n<h2>tab de Simple Sliders<\\/h2>\\r\\n<p>{tab title=\\\"Tab 1\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p>Tab 1 content. {tab title=\\\"Tab 2\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p>Tab 2 content. {tab title=\\\"Tab 3\\\" class=\\\"green\\\"}<\\/p>\\r\\n<p>Tab 3 content.<\\/p>\\r\\n<p>{\\/tabs}<\\/p>\\r\\n<hr>\\r\\n<h2>Botones con imagen\\u00a0<\\/h2>\\r\\n<h2 style=\\\"text-align: center;\\\">\\u00a0<\\/h2>\\r\\n<div style=\\\"display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;\\\"><!-- Tarjeta 1 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/fondoMVZ.jpg\\\" alt=\\\"Fondo MVZ\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> L\\u00ednea de profundizaci\\u00f3n Pregrado MVZ <\\/a><\\/div>\\r\\n<!-- Tarjeta 2 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPATS.jpg\\\" alt=\\\"FondoPATS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Especializaci\\u00f3n Producci\\u00f3n Agr\\u00edcola Tropical Sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 3 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/FondoPTS.jpg\\\" alt=\\\"FondoPTS.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Maestria Produccion tropical sostenible <\\/a><\\/div>\\r\\n<!-- Tarjeta 4 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/Fondoproyectos.jpg\\\" alt=\\\"Fondoproyectos.jpg\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Proyectos PTS <\\/a><\\/div>\\r\\n<!-- Tarjeta 5 -->\\r\\n<div class=\\\"btn-danger\\\" style=\\\"border: 7px solid; display: flex; justify-content: center; align-items: center; position: relative; width: 300px; height: 200px; overflow: hidden; text-align: center;\\\"><!-- Imagen de fondo --> <img style=\\\"position: absolute; width: 100%; height: 100%; object-fit: cover; filter: brightness(70%);\\\" src=\\\"images\\/Fondos\\/horizonte-verde.png\\\" alt=\\\"horizonte-verde.png\\\"> <!-- Texto m\\u00e1s compacto --> <a style=\\\"position: absolute; \\/* hace que cubra todo *\\/ top: 0; left: 0; width: 100%; height: 100%; display: flex; justify-content: center; align-items: center; text-align: center; font-weight: 600; font-size: 1.6em; font-family: Arial, sans-serif; color: white; text-decoration: none; z-index: 2; \\/* lo pone por encima de la imagen *\\/ padding: 10px; line-height: 1.1;\\\" href=\\\"#\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> Ejemplo de boton 5 <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<hr>\\r\\n<h2>modulo testimonio ol_testimonials.<\\/h2>\\r\\n<p>{loadmoduleid 113}<\\/p>\\r\\n<hr>\\r\\n<p>modulo calendario dp_calendar<\\/p>\\r\\n<p>{loadmoduleid 112}<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2025-04-02 21:23:12\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2025-04-02 21:22:52\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":14,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":74,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(17,'com_content.article.4','','2026-04-07 15:13:38',44,2898,'f02a1b239a7b33f78282a3a6ecbd5047adec9587','{\"id\":4,\"asset_id\":120,\"title\":\"Ejes tem\\u00e1ticos\",\"alias\":\"ejes-tematicos\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong> presenta sus <strong>ejes tem\\u00e1ticos<\\/strong> como espacios de reflexi\\u00f3n, an\\u00e1lisis e innovaci\\u00f3n frente a los retos del entorno global. Cada eje invita a investigadores, acad\\u00e9micos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo econ\\u00f3mico y social sostenible.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En esta edici\\u00f3n, los ejes tem\\u00e1ticos son:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Pol\\u00edticas P\\u00fablicas y Desarrollo Territorial<\\/strong><\\/li>\\r\\n<li><strong>Sostenibilidad de las Organizaciones<\\/strong><\\/li>\\r\\n<li><strong>Crecimiento y Desarrollo Econ\\u00f3mico<\\/strong><\\/li>\\r\\n<li><strong>Gesti\\u00f3n Social, Valor y Dinero<\\/strong><\\/li>\\r\\n<li><strong>Marketing Integral<\\/strong><\\/li>\\r\\n<li><strong>Contabilidad y Finanzas Empresariales<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\" data-start=\\\"742\\\" data-end=\\\"949\\\">Estos ejes articulan una visi\\u00f3n interdisciplinaria que conecta la teor\\u00eda con la pr\\u00e1ctica, promoviendo soluciones estrat\\u00e9gicas e innovadoras para los desaf\\u00edos actuales de las organizaciones y los territorios.<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 15:13:38\",\"created_by\":44,\"created_by_alias\":\"\",\"modified\":\"2026-04-07 15:13:38\",\"modified_by\":44,\"checked_out\":null,\"checked_out_time\":null,\"publish_up\":\"2026-04-07 15:13:38\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":1,\"ordering\":0,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":0,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(18,'com_content.article.4','','2026-04-07 15:13:59',44,2850,'79aa6d7124255a1a2d7efe21b4bec82a1881d626','{\"id\":\"4\",\"asset_id\":120,\"title\":\"Ejes tem\\u00e1ticos\",\"alias\":\"ejes-tematicos\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong> presenta sus <strong>ejes tem\\u00e1ticos<\\/strong> como espacios de reflexi\\u00f3n, an\\u00e1lisis e innovaci\\u00f3n frente a los retos del entorno global. Cada eje invita a investigadores, acad\\u00e9micos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo econ\\u00f3mico y social sostenible.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En esta edici\\u00f3n, los ejes tem\\u00e1ticos son:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Pol\\u00edticas P\\u00fablicas y Desarrollo Territorial<\\/strong><\\/li>\\r\\n<li><strong>Sostenibilidad de las Organizaciones<\\/strong><\\/li>\\r\\n<li><strong>Crecimiento y Desarrollo Econ\\u00f3mico<\\/strong><\\/li>\\r\\n<li><strong>Gesti\\u00f3n Social, Valor y Dinero<\\/strong><\\/li>\\r\\n<li><strong>Marketing Integral<\\/strong><\\/li>\\r\\n<li><strong>Contabilidad y Finanzas Empresariales<\\/strong><\\/li>\\r\\n<\\/ul>\\r\\n<p>Estos ejes articulan una visi\\u00f3n interdisciplinaria que conecta la teor\\u00eda con la pr\\u00e1ctica, promoviendo soluciones estrat\\u00e9gicas e innovadoras para los desaf\\u00edos actuales de las organizaciones y los territorios.<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 15:13:38\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 15:13:59\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 15:13:38\",\"publish_up\":\"2026-04-07 15:13:38\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":2,\"ordering\":0,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":0,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(19,'com_content.article.4','','2026-04-07 15:49:25',44,1604,'8a84d37ce689b1bdf25deccccd693aebf3ae7d92','{\"id\":\"4\",\"asset_id\":120,\"title\":\"Ejes tem\\u00e1ticos\",\"alias\":\"ejes-tematicos\",\"introtext\":\"\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 15:13:38\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 15:49:25\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 15:49:04\",\"publish_up\":\"2026-04-07 15:13:38\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":3,\"ordering\":0,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":8,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(20,'com_content.article.4','','2026-04-07 15:55:49',44,2148,'d8eaad0ffacb866f6219c890489f093b397f7d82','{\"id\":\"4\",\"asset_id\":120,\"title\":\"Ejes tem\\u00e1ticos\",\"alias\":\"ejes-tematicos\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong> presenta sus <strong>ejes tem\\u00e1ticos<\\/strong> como espacios de reflexi\\u00f3n, an\\u00e1lisis e innovaci\\u00f3n frente a los retos del entorno global. Cada eje invita a investigadores, acad\\u00e9micos y profesionales a compartir conocimientos, experiencias y propuestas que contribuyan al desarrollo econ\\u00f3mico y social sostenible.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En esta edici\\u00f3n, los ejes tem\\u00e1ticos son:<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 15:13:38\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 15:55:49\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 15:55:15\",\"publish_up\":\"2026-04-07 15:13:38\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":4,\"ordering\":0,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":11,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(23,'com_content.article.3','','2026-04-07 16:22:12',44,4135,'842c457c5db6080b9b815c3ed065da12ef03eede','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:22:12\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:20:40\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":7,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":20,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(24,'com_content.article.3','','2026-04-07 16:26:43',44,4746,'f49cb81314029d0754f1a7f68d9f83b3d6ccde4f','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<div class=\\\"congreso-header\\\" style=\\\"text-align: center; margin-bottom: 40px; font-family: sans-serif;\\\">\\r\\n<h2 style=\\\"color: #2c3e50;\\\">Memorias de Congresos Anteriores<\\/h2>\\r\\n<p style=\\\"color: #7f8c8d; max-width: 800px; margin: 0 auto; line-height: 1.6;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:26:43\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:22:12\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":8,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":21,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(25,'com_content.article.3','','2026-04-07 16:27:20',44,4754,'7d489d67558f01458d26b81af8f407e408e86f93','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<div class=\\\"congreso-header\\\" style=\\\"text-align: center; margin-bottom: 40px; font-family: sans-serif;\\\">\\r\\n<h2 style=\\\"color: #2c3e50;\\\">\\u00a0<\\/h2>\\r\\n<p style=\\\"color: rgb(127, 140, 141); max-width: 800px; margin: 0px auto; line-height: 1.6; text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<\\/div>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:27:20\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:26:43\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":9,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":22,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(26,'com_content.article.3','','2026-04-07 16:28:34',44,4555,'4e7bb4f3771014e9059f186aa5eb4cefa5b37bdd','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:28:34\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:27:20\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":10,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":23,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(27,'com_content.article.3','','2026-04-07 16:28:53',44,4506,'1b2f1eda6cb6b1dab452363b8a0fedefdbe458cf','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:28:53\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:28:34\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":11,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":24,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(28,'com_content.article.3','','2026-04-07 16:29:28',44,4535,'817be79817da63c8a5db31c1f3cda2371b176019','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\" width=\\\"490\\\" height=\\\"641\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:29:28\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:28:53\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":12,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":25,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(29,'com_content.article.3','','2026-04-07 16:29:47',44,4535,'663c5d5181049d09b4be0796d1f3aace51accd20','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\" width=\\\"419\\\" height=\\\"548\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:29:47\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:29:28\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":13,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":26,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(30,'com_content.article.3','','2026-04-07 16:30:04',44,4535,'ca107d4d4b2bf7f8782edd937609f9e2ea74d755','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\" width=\\\"305\\\" height=\\\"399\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:30:04\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:29:47\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":14,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":27,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(31,'com_content.article.3','','2026-04-07 16:31:16',44,4680,'ebdf55587fd44422f93da889c59a311275b1edff','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-06 13:56:48\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 16:31:16\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 16:30:04\",\"publish_up\":\"2026-04-06 13:56:48\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":15,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":28,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(32,'com_content.article.1','','2026-04-07 20:50:32',44,1593,'df12662e810791f8d04952051644e81f74121884','{\"id\":\"1\",\"asset_id\":110,\"title\":\"Cronograma\",\"alias\":\"cronograma\",\"introtext\":\"\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 20:50:32\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 20:50:06\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":15,\"ordering\":3,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":99,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(33,'com_content.article.1','','2026-04-07 20:53:24',44,1804,'e3f6fe32241efe7fa346efbecdcb7564fc930bac','{\"id\":\"1\",\"asset_id\":110,\"title\":\"Cronograma\",\"alias\":\"cronograma\",\"introtext\":\"<p>Este cronograma re\\u00fane las fechas m\\u00e1s importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepci\\u00f3n de trabajos hasta el desarrollo del evento.<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 20:53:24\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 20:53:19\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":16,\"ordering\":3,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":101,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(34,'com_content.article.1','','2026-04-07 20:53:44',44,1835,'fc5a57c8b4ea68615e1a0b22be989b5ca20be10b','{\"id\":\"1\",\"asset_id\":110,\"title\":\"Cronograma\",\"alias\":\"cronograma\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Este cronograma re\\u00fane las fechas m\\u00e1s importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepci\\u00f3n de trabajos hasta el desarrollo del evento.<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2024-10-17 15:56:03\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 20:53:44\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 20:53:24\",\"publish_up\":\"2024-10-17 15:56:03\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":17,\"ordering\":3,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":102,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(48,'com_content.article.2','','2026-04-07 22:11:00',44,6041,'13e4ded68414b9488febddfe7b344d4932ae3e3d','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la Ponencia<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">\\u00a0<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:11:00\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 21:56:38\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":15,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":22,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(49,'com_content.article.2','','2026-04-07 22:11:42',44,6299,'bba38dd79c8c457f4a803bd3b41ce323dc67efac','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la Ponencia<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udce2 <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:11:42\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:11:00\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":16,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":23,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(50,'com_content.article.2','','2026-04-07 22:12:16',44,6299,'6fa6e26ec1ad5bf325540133fb1fb1f520603b6d','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la Ponencia<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:12:16\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:11:42\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":17,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":24,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(51,'com_content.article.2','','2026-04-07 22:12:55',44,6317,'2b7e83f2924a34095330e1cfd5b2a2683eb054b2','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la Ponencia<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:12:55\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:12:16\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":18,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":25,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(52,'com_content.article.2','','2026-04-07 22:13:17',44,6318,'c2ad1536b3608f899c54781c7ed6b213a6b0d115','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la Ponencia<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:13:17\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:13:07\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":19,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":26,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(53,'com_content.article.2','','2026-04-07 22:15:36',44,6340,'121962da2145ba3243cc7d941c2e59b71c930f65','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la presentaci\\u00f3n de Ponencias<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo (datos completos de los autores).<\\/li>\\r\\n<li>Introducci\\u00f3n (problema, objetivos e hip\\u00f3tesis).<\\/li>\\r\\n<li>Contexto te\\u00f3rico (antecedentes y justificaci\\u00f3n).<\\/li>\\r\\n<li>Materiales y m\\u00e9todos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n.<\\/li>\\r\\n<li>Conclusiones.<\\/li>\\r\\n<li>Referencias (m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:15:36\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:13:17\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":20,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":27,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(54,'com_content.article.2','','2026-04-07 22:18:39',44,6673,'b10bfe927cdad108bc438d17783645cb3d01203e','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la presentaci\\u00f3n de Ponencias<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>P\\u00e1gina de t\\u00edtulo: t\\u00edtulo de la investigaci\\u00f3n, datos completos de los autores (nombre, filiaci\\u00f3n institucional, grupo de investigaci\\u00f3n).<\\/li>\\r\\n<li>Introducci\\u00f3n: planteamiento del problema, objetivos e hip\\u00f3tesis.<\\/li>\\r\\n<li>Contexto te\\u00f3rico: antecedentes, justificaci\\u00f3n y problem\\u00e1tica.<\\/li>\\r\\n<li>Materiales y m\\u00e9todos: dise\\u00f1o de investigaci\\u00f3n, poblaci\\u00f3n, muestra, instrumentos.<\\/li>\\r\\n<li>Resultados y discusi\\u00f3n: an\\u00e1lisis, tablas y figuras (m\\u00e1x. dos por p\\u00e1gina).<\\/li>\\r\\n<li>Conclusiones: vinculadas a los objetivos.<\\/li>\\r\\n<li>Referencias: m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA (\\u00faltima edici\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:18:39\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:15:36\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":21,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":28,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(55,'com_content.article.2','','2026-04-07 22:19:58',44,6799,'7c8f0a4f8a78b81c0586c381d94cc68e0464084b','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la presentaci\\u00f3n de Ponencias<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>P\\u00e1gina de t\\u00edtulo:<\\/strong> t\\u00edtulo de la investigaci\\u00f3n, datos completos de los autores (nombre, filiaci\\u00f3n institucional, grupo de investigaci\\u00f3n).<\\/li>\\r\\n<li><strong>Introducci\\u00f3n:<\\/strong> planteamiento del problema, objetivos e hip\\u00f3tesis.<\\/li>\\r\\n<li><strong>Contexto te\\u00f3rico:<\\/strong> antecedentes, justificaci\\u00f3n y problem\\u00e1tica.<\\/li>\\r\\n<li><strong>Materiales y m\\u00e9todos: <\\/strong>dise\\u00f1o de investigaci\\u00f3n, poblaci\\u00f3n, muestra, instrumentos.<\\/li>\\r\\n<li><strong>Resultados y discusi\\u00f3n:<\\/strong> an\\u00e1lisis, tablas y figuras (m\\u00e1x. dos por p\\u00e1gina).<\\/li>\\r\\n<li><strong>Conclusiones:<\\/strong> vinculadas a los objetivos.<\\/li>\\r\\n<li><strong>Referencias: <\\/strong>m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA (\\u00faltima edici\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2025-02-24 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:19:58\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:18:39\",\"publish_up\":\"2025-02-24 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":22,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":29,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(56,'com_content.article.2','','2026-04-07 22:23:06',44,6799,'c73859099417fba0e17a9cf274a791232a9b4478','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la presentaci\\u00f3n de Ponencias<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>P\\u00e1gina de t\\u00edtulo:<\\/strong> t\\u00edtulo de la investigaci\\u00f3n, datos completos de los autores (nombre, filiaci\\u00f3n institucional, grupo de investigaci\\u00f3n).<\\/li>\\r\\n<li><strong>Introducci\\u00f3n:<\\/strong> planteamiento del problema, objetivos e hip\\u00f3tesis.<\\/li>\\r\\n<li><strong>Contexto te\\u00f3rico:<\\/strong> antecedentes, justificaci\\u00f3n y problem\\u00e1tica.<\\/li>\\r\\n<li><strong>Materiales y m\\u00e9todos: <\\/strong>dise\\u00f1o de investigaci\\u00f3n, poblaci\\u00f3n, muestra, instrumentos.<\\/li>\\r\\n<li><strong>Resultados y discusi\\u00f3n:<\\/strong> an\\u00e1lisis, tablas y figuras (m\\u00e1x. dos por p\\u00e1gina).<\\/li>\\r\\n<li><strong>Conclusiones:<\\/strong> vinculadas a los objetivos.<\\/li>\\r\\n<li><strong>Referencias: <\\/strong>m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA (\\u00faltima edici\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:23:06\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:19:58\",\"publish_up\":\"2026-04-07 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":23,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":30,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(57,'com_content.article.3','','2026-04-07 22:23:31',44,4680,'a12125c5121b8d19c876bec44777cb828e205435','{\"id\":\"3\",\"asset_id\":119,\"title\":\"Memorias\",\"alias\":\"memorias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Bienvenidos al repositorio hist\\u00f3rico del <strong>Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>. Rumbo a nuestra <strong>novena edici\\u00f3n<\\/strong>, te invitamos a explorar el conocimiento compartido en a\\u00f1os anteriores. Haz clic en las im\\u00e1genes para acceder a los documentos PDF de cada memoria.<\\/p>\\r\\n<div class=\\\"fp-features\\\">\\r\\n<div class=\\\"g-grid\\\">\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/01CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/01CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/02CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/02CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/03CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/03CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/04CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/04CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/05CongresofceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/05CongresofceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<div class=\\\"g-block size-33-3\\\">\\r\\n<div class=\\\"card\\\" style=\\\"background-color: #f4f5f7; border-color: #f4f5f7;\\\">\\r\\n<div class=\\\"card-block\\\"><a href=\\\"docus\\/memorias\\/07CongresoFceMemorias.pdf\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\"> <img class=\\\"effectck-steve\\\" style=\\\"border-radius: 0px;\\\" role=\\\"presentation\\\" src=\\\"images\\/memorias\\/07CongresoFceMemorias..png\\\" width=\\\"337\\\" height=\\\"441\\\"> <\\/a><\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\\r\\n<\\/div>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:23:31\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:23:22\",\"publish_up\":\"2026-04-07 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":16,\"ordering\":1,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":31,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(58,'com_content.article.1','','2026-04-07 22:23:43',44,1835,'d55934d0370e47a079eab60ca82cbf055cfd8809','{\"id\":\"1\",\"asset_id\":110,\"title\":\"Cronograma\",\"alias\":\"cronograma\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">Este cronograma re\\u00fane las fechas m\\u00e1s importantes del Congreso, orientando a ponentes y asistentes en cada etapa del proceso, desde la recepci\\u00f3n de trabajos hasta el desarrollo del evento.<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:23:43\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:23:35\",\"publish_up\":\"2026-04-07 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":18,\"ordering\":3,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":103,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0),(59,'com_content.article.2','','2026-04-07 22:26:11',44,7118,'0919ea9f801d4a71afcc04737e10186265d8cb03','{\"id\":\"2\",\"asset_id\":112,\"title\":\"Gu\\u00eda para ponencias\",\"alias\":\"guia-para-ponencias\",\"introtext\":\"<p style=\\\"text-align: justify;\\\">El Congreso Internacional de Ciencias Econ\\u00f3micas convoca a investigadores, acad\\u00e9micos y estudiantes a presentar sus trabajos originales en diversas \\u00e1reas de la econom\\u00eda y disciplinas afines. Este evento busca promover el intercambio de conocimientos, experiencias y avances en investigaci\\u00f3n, fomentando la participaci\\u00f3n activa y la difusi\\u00f3n de resultados relevantes para la comunidad cient\\u00edfica.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udccc<strong> Bases de Participaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La ponencia debe ser in\\u00e9dita, no haber sido sometida a otro proceso de arbitraje ni publicada previamente. Debe constituir un aporte al conocimiento te\\u00f3rico o pr\\u00e1ctico en las Ciencias Econ\\u00f3micas y disciplinas afines. Se aceptan ponencias de investigaciones en curso o concluidas.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">La autor\\u00eda podr\\u00e1 ser individual o en coautor\\u00eda (m\\u00e1ximo tres integrantes si incluye estudiantes). Todas las ponencias ser\\u00e1n sometidas a evaluaci\\u00f3n bajo la modalidad de doble ciego, y las decisiones del comit\\u00e9 evaluador ser\\u00e1n inapelables.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">En caso de ser aceptada, los autores deber\\u00e1n firmar la declaratoria de originalidad y cesi\\u00f3n de derechos del trabajo.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83c\\udfa4\\u00a0<strong>Formas de Participaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\"><strong>Ponencia oral:<\\/strong> presentaci\\u00f3n acad\\u00e9mica basada en una investigaci\\u00f3n terminada o en curso.<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"<strong>\\ud83d\\udcdd Requisitos para la Evaluaci\\u00f3n del Resumen<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>T\\u00edtulo conciso (m\\u00e1ximo 15 palabras, sin abreviaturas).<\\/li>\\r\\n<li>Eje tem\\u00e1tico al que se adscribe la ponencia.<\\/li>\\r\\n<li>Autores: nombre completo, afiliaci\\u00f3n institucional, ORCID, CvLAC y correo institucional.<\\/li>\\r\\n<li>Resumen entre 200 y 500 palabras (incluye problem\\u00e1tica, objetivos, metodolog\\u00eda, resultados y conclusiones).<\\/li>\\r\\n<li>Cinco palabras clave en espa\\u00f1ol e ingl\\u00e9s.<\\/li>\\r\\n<li>C\\u00f3digos JEL.<\\/li>\\r\\n<li>Alcance esperado.<\\/li>\\r\\n<li>Formato: letra Times New Roman, tama\\u00f1o 12, interlineado doble.<\\/li>\\r\\n<li>Normas de citaci\\u00f3n: APA (\\u00faltima versi\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">Los res\\u00famenes aceptados ser\\u00e1n incluidos en las Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas (ISSN electr\\u00f3nico No. 2357-4631).<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcca <strong>Evaluaci\\u00f3n y Aceptaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Todas las ponencias ser\\u00e1n evaluadas por el Comit\\u00e9 Cient\\u00edfico.<br>Los conceptos posibles ser\\u00e1n:<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>Aprobada para presentaci\\u00f3n oral<\\/strong><\\/li>\\r\\n<li><strong>Rechazada<\\/strong> (se devolver\\u00e1 a sus autores)<\\/li>\\r\\n<\\/ul>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udcd1 <strong>Requisitos de Contenido de la presentaci\\u00f3n de Ponencias<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li><strong>P\\u00e1gina de t\\u00edtulo:<\\/strong> t\\u00edtulo de la investigaci\\u00f3n, datos completos de los autores (nombre, filiaci\\u00f3n institucional, grupo de investigaci\\u00f3n).<\\/li>\\r\\n<li><strong>Introducci\\u00f3n:<\\/strong> planteamiento del problema, objetivos e hip\\u00f3tesis.<\\/li>\\r\\n<li><strong>Contexto te\\u00f3rico:<\\/strong> antecedentes, justificaci\\u00f3n y problem\\u00e1tica.<\\/li>\\r\\n<li><strong>Materiales y m\\u00e9todos: <\\/strong>dise\\u00f1o de investigaci\\u00f3n, poblaci\\u00f3n, muestra, instrumentos.<\\/li>\\r\\n<li><strong>Resultados y discusi\\u00f3n:<\\/strong> an\\u00e1lisis, tablas y figuras (m\\u00e1x. dos por p\\u00e1gina).<\\/li>\\r\\n<li><strong>Conclusiones:<\\/strong> vinculadas a los objetivos.<\\/li>\\r\\n<li><strong>Referencias: <\\/strong>m\\u00ednimo 15 fuentes cient\\u00edficas, normas APA (\\u00faltima edici\\u00f3n).<\\/li>\\r\\n<\\/ul>\\r\\n<p><em>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso. <\\/em><\\/p>\\r\\n<p><em>La programaci\\u00f3n de las presentaciones ser\\u00e1 comunicada al correo institucional del autor de correspondencia. Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/em><\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">{slider title=\\\"\\ud83d\\udce2 <strong>Presentaci\\u00f3n<\\/strong>\\\" class=\\\"red\\\"}<\\/p>\\r\\n<ul style=\\\"text-align: justify;\\\">\\r\\n<li>Las ponencias ser\\u00e1n presentadas de manera presencial durante las fechas del congreso.<\\/li>\\r\\n<li>La programaci\\u00f3n ser\\u00e1 enviada al correo institucional del autor de correspondencia.<\\/li>\\r\\n<li>Al finalizar, se otorgar\\u00e1n constancias de participaci\\u00f3n.<\\/li>\\r\\n<\\/ul>\\r\\n<p>{slider title=\\\"\\ud83d\\udcda <strong>Publicaci\\u00f3n<\\/strong>\\\" class=\\\"blue\\\"}<\\/p>\\r\\n<p style=\\\"text-align: justify;\\\">Los trabajos aceptados y socializados ser\\u00e1n publicados en las <strong>Memorias del Congreso Internacional de Ciencias Econ\\u00f3micas<\\/strong>, con ISSN electr\\u00f3nico No. 2357-4631.<\\/p>\\r\\n<p>\\u00a0<\\/p>\",\"fulltext\":\"\",\"state\":\"1\",\"catid\":2,\"created\":\"2026-04-07 13:56:30\",\"created_by\":\"44\",\"created_by_alias\":\"\",\"modified\":\"2026-04-07 22:26:11\",\"modified_by\":44,\"checked_out\":44,\"checked_out_time\":\"2026-04-07 22:25:23\",\"publish_up\":\"2026-04-07 13:56:30\",\"publish_down\":null,\"images\":\"{\\\"image_intro\\\":\\\"\\\",\\\"image_intro_alt\\\":\\\"\\\",\\\"float_intro\\\":\\\"\\\",\\\"image_intro_caption\\\":\\\"\\\",\\\"image_fulltext\\\":\\\"\\\",\\\"image_fulltext_alt\\\":\\\"\\\",\\\"float_fulltext\\\":\\\"\\\",\\\"image_fulltext_caption\\\":\\\"\\\"}\",\"urls\":\"{\\\"urla\\\":\\\"\\\",\\\"urlatext\\\":\\\"\\\",\\\"targeta\\\":\\\"\\\",\\\"urlb\\\":\\\"\\\",\\\"urlbtext\\\":\\\"\\\",\\\"targetb\\\":\\\"\\\",\\\"urlc\\\":\\\"\\\",\\\"urlctext\\\":\\\"\\\",\\\"targetc\\\":\\\"\\\"}\",\"attribs\":\"{\\\"article_layout\\\":\\\"\\\",\\\"show_title\\\":\\\"\\\",\\\"link_titles\\\":\\\"\\\",\\\"show_tags\\\":\\\"\\\",\\\"show_intro\\\":\\\"\\\",\\\"info_block_position\\\":\\\"\\\",\\\"info_block_show_title\\\":\\\"\\\",\\\"show_category\\\":\\\"\\\",\\\"link_category\\\":\\\"\\\",\\\"show_parent_category\\\":\\\"\\\",\\\"link_parent_category\\\":\\\"\\\",\\\"show_author\\\":\\\"\\\",\\\"link_author\\\":\\\"\\\",\\\"show_create_date\\\":\\\"\\\",\\\"show_modify_date\\\":\\\"\\\",\\\"show_publish_date\\\":\\\"\\\",\\\"show_item_navigation\\\":\\\"\\\",\\\"show_hits\\\":\\\"\\\",\\\"show_noauth\\\":\\\"\\\",\\\"urls_position\\\":\\\"\\\",\\\"alternative_readmore\\\":\\\"\\\",\\\"article_page_title\\\":\\\"\\\",\\\"show_publishing_options\\\":\\\"\\\",\\\"show_article_options\\\":\\\"\\\",\\\"show_urls_images_backend\\\":\\\"\\\",\\\"show_urls_images_frontend\\\":\\\"\\\"}\",\"version\":24,\"ordering\":2,\"metakey\":\"\",\"metadesc\":\"\",\"access\":1,\"hits\":33,\"metadata\":\"{\\\"robots\\\":\\\"\\\",\\\"author\\\":\\\"\\\",\\\"rights\\\":\\\"\\\"}\",\"featured\":\"0\",\"language\":\"*\",\"note\":\"\"}',0);
/*!40000 ALTER TABLE `jnx5e_history` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_languages`
--
DROP TABLE IF EXISTS `jnx5e_languages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_languages` (
`lang_id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0',
`lang_code` char(7) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL,
`title` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`title_native` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`sef` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(512) COLLATE utf8mb4_unicode_ci NOT NULL,
`metakey` text COLLATE utf8mb4_unicode_ci,
`metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
`sitename` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`published` int NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
PRIMARY KEY (`lang_id`),
UNIQUE KEY `idx_sef` (`sef`),
UNIQUE KEY `idx_langcode` (`lang_code`),
KEY `idx_access` (`access`),
KEY `idx_ordering` (`ordering`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_languages`
--
LOCK TABLES `jnx5e_languages` WRITE;
/*!40000 ALTER TABLE `jnx5e_languages` DISABLE KEYS */;
INSERT INTO `jnx5e_languages` VALUES (1,0,'en-GB','English (en-GB)','English (United Kingdom)','en','en_gb','','','','',1,1,2),(2,100,'es-ES','Spanish (es-ES)','Español (España)','es','es_es','',NULL,'','',0,1,1);
/*!40000 ALTER TABLE `jnx5e_languages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_mail_templates`
--
DROP TABLE IF EXISTS `jnx5e_mail_templates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_mail_templates` (
`template_id` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extension` varchar(127) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`htmlbody` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`attachments` text COLLATE utf8mb4_unicode_ci NOT NULL,
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`template_id`,`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_mail_templates`
--
LOCK TABLES `jnx5e_mail_templates` WRITE;
/*!40000 ALTER TABLE `jnx5e_mail_templates` DISABLE KEYS */;
INSERT INTO `jnx5e_mail_templates` VALUES ('com_actionlogs.notification','com_actionlogs','','COM_ACTIONLOGS_EMAIL_SUBJECT','COM_ACTIONLOGS_EMAIL_BODY','COM_ACTIONLOGS_EMAIL_HTMLBODY','','{\"tags\":[\"messages\",\"message\",\"date\",\"extension\",\"username\"]}'),('com_config.test_mail','com_config','','COM_CONFIG_SENDMAIL_SUBJECT','COM_CONFIG_SENDMAIL_BODY','','','{\"tags\":[\"sitename\",\"method\"]}'),('com_contact.mail','com_contact','','COM_CONTACT_ENQUIRY_SUBJECT','COM_CONTACT_ENQUIRY_TEXT','','','{\"tags\":[\"sitename\",\"name\",\"email\",\"subject\",\"body\",\"url\",\"customfields\"]}'),('com_contact.mail.copy','com_contact','','COM_CONTACT_COPYSUBJECT_OF','COM_CONTACT_COPYTEXT_OF','','','{\"tags\":[\"sitename\",\"name\",\"email\",\"subject\",\"body\",\"url\",\"customfields\",\"contactname\"]}'),('com_joomlaupdate.update.failed','com_joomlaupdate','','COM_JOOMLAUPDATE_UPDATE_FAILED_MAIL_SUBJECT','COM_JOOMLAUPDATE_UPDATE_FAILED_MAIL_BODY','','','{\"tags\":[\"newversion\",\"oldversion\",\"sitename\",\"url\"]}'),('com_joomlaupdate.update.success','com_joomlaupdate','','COM_JOOMLAUPDATE_UPDATE_SUCCESS_MAIL_SUBJECT','COM_JOOMLAUPDATE_UPDATE_SUCCESS_MAIL_BODY','','','{\"tags\":[\"newversion\",\"oldversion\",\"sitename\",\"url\"]}'),('com_messages.new_message','com_messages','','COM_MESSAGES_NEW_MESSAGE','COM_MESSAGES_NEW_MESSAGE_BODY','','','{\"tags\":[\"subject\",\"message\",\"fromname\",\"sitename\",\"siteurl\",\"fromemail\",\"toname\",\"toemail\"]}'),('com_privacy.notification.admin.export','com_privacy','','COM_PRIVACY_EMAIL_ADMIN_REQUEST_SUBJECT_EXPORT_REQUEST','COM_PRIVACY_EMAIL_ADMIN_REQUEST_BODY_EXPORT_REQUEST','','','{\"tags\":[\"sitename\",\"url\",\"tokenurl\",\"formurl\",\"token\"]}'),('com_privacy.notification.admin.remove','com_privacy','','COM_PRIVACY_EMAIL_ADMIN_REQUEST_SUBJECT_REMOVE_REQUEST','COM_PRIVACY_EMAIL_ADMIN_REQUEST_BODY_REMOVE_REQUEST','','','{\"tags\":[\"sitename\",\"url\",\"tokenurl\",\"formurl\",\"token\"]}'),('com_privacy.notification.export','com_privacy','','COM_PRIVACY_EMAIL_REQUEST_SUBJECT_EXPORT_REQUEST','COM_PRIVACY_EMAIL_REQUEST_BODY_EXPORT_REQUEST','','','{\"tags\":[\"sitename\",\"url\",\"tokenurl\",\"formurl\",\"token\"]}'),('com_privacy.notification.remove','com_privacy','','COM_PRIVACY_EMAIL_REQUEST_SUBJECT_REMOVE_REQUEST','COM_PRIVACY_EMAIL_REQUEST_BODY_REMOVE_REQUEST','','','{\"tags\":[\"sitename\",\"url\",\"tokenurl\",\"formurl\",\"token\"]}'),('com_privacy.userdataexport','com_privacy','','COM_PRIVACY_EMAIL_DATA_EXPORT_COMPLETED_SUBJECT','COM_PRIVACY_EMAIL_DATA_EXPORT_COMPLETED_BODY','','','{\"tags\":[\"sitename\",\"url\"]}'),('com_users.massmail.mail','com_users','','COM_USERS_MASSMAIL_MAIL_SUBJECT','COM_USERS_MASSMAIL_MAIL_BODY','','','{\"tags\":[\"subject\",\"body\",\"subjectprefix\",\"bodysuffix\"]}'),('com_users.password_reset','com_users','','COM_USERS_EMAIL_PASSWORD_RESET_SUBJECT','COM_USERS_EMAIL_PASSWORD_RESET_BODY','','','{\"tags\":[\"name\",\"email\",\"sitename\",\"link_text\",\"link_html\",\"token\"]}'),('com_users.registration.admin.new_notification','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_NOTIFICATION_TO_ADMIN_BODY','','','{\"tags\":[\"name\",\"sitename\",\"siteurl\",\"username\"]}'),('com_users.registration.admin.verification_request','com_users','','COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_SUBJECT','COM_USERS_EMAIL_ACTIVATE_WITH_ADMIN_ACTIVATION_BODY','','','{\"tags\":[\"name\",\"sitename\",\"email\",\"username\",\"activate\"]}'),('com_users.registration.user.admin_activated','com_users','','COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_SUBJECT','COM_USERS_EMAIL_ACTIVATED_BY_ADMIN_ACTIVATION_BODY','','','{\"tags\":[\"name\",\"sitename\",\"siteurl\",\"username\"]}'),('com_users.registration.user.admin_activation','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY_NOPW','','','{\"tags\":[\"name\",\"sitename\",\"activate\",\"siteurl\",\"username\"]}'),('com_users.registration.user.admin_activation_w_pw','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_WITH_ADMIN_ACTIVATION_BODY','','','{\"tags\":[\"name\",\"sitename\",\"activate\",\"siteurl\",\"username\",\"password_clear\"]}'),('com_users.registration.user.registration_mail','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_BODY_NOPW','','','{\"tags\":[\"name\",\"sitename\",\"siteurl\",\"username\"]}'),('com_users.registration.user.registration_mail_w_pw','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_BODY','','','{\"tags\":[\"name\",\"sitename\",\"siteurl\",\"username\",\"password_clear\"]}'),('com_users.registration.user.self_activation','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY_NOPW','','','{\"tags\":[\"name\",\"sitename\",\"activate\",\"siteurl\",\"username\"]}'),('com_users.registration.user.self_activation_w_pw','com_users','','COM_USERS_EMAIL_ACCOUNT_DETAILS','COM_USERS_EMAIL_REGISTERED_WITH_ACTIVATION_BODY','','','{\"tags\":[\"name\",\"sitename\",\"activate\",\"siteurl\",\"username\",\"password_clear\"]}'),('com_users.reminder','com_users','','COM_USERS_EMAIL_USERNAME_REMINDER_SUBJECT','COM_USERS_EMAIL_USERNAME_REMINDER_BODY','','','{\"tags\":[\"name\",\"username\",\"sitename\",\"email\",\"link_text\",\"link_html\"]}'),('plg_multifactorauth_email.mail','plg_multifactorauth_email','','PLG_MULTIFACTORAUTH_EMAIL_EMAIL_SUBJECT','PLG_MULTIFACTORAUTH_EMAIL_EMAIL_BODY','','','{\"tags\":[\"code\",\"sitename\",\"siteurl\",\"username\",\"email\",\"fullname\"]}'),('plg_system_tasknotification.failure_mail','plg_system_tasknotification','','PLG_SYSTEM_TASK_NOTIFICATION_FAILURE_MAIL_SUBJECT','PLG_SYSTEM_TASK_NOTIFICATION_FAILURE_MAIL_BODY','','','{\"tags\": [\"task_id\", \"task_title\", \"exit_code\", \"exec_data_time\", \"task_output\"]}'),('plg_system_tasknotification.fatal_recovery_mail','plg_system_tasknotification','','PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_SUBJECT','PLG_SYSTEM_TASK_NOTIFICATION_FATAL_MAIL_BODY','','','{\"tags\": [\"task_id\", \"task_title\"]}'),('plg_system_tasknotification.orphan_mail','plg_system_tasknotification','','PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_SUBJECT','PLG_SYSTEM_TASK_NOTIFICATION_ORPHAN_MAIL_BODY','','','{\"tags\": [\"task_id\", \"task_title\"]}'),('plg_system_tasknotification.success_mail','plg_system_tasknotification','','PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_SUBJECT','PLG_SYSTEM_TASK_NOTIFICATION_SUCCESS_MAIL_BODY','','','{\"tags\":[\"task_id\", \"task_title\", \"exec_data_time\", \"task_output\"]}'),('plg_task_privacyconsent.request.reminder','plg_task_privacyconsent','','PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_SUBJECT','PLG_TASK_PRIVACYCONSENT_EMAIL_REMIND_BODY','','','{\"tags\":[\"sitename\",\"url\",\"tokenurl\",\"formurl\",\"token\"]}'),('plg_task_updatenotification.mail','plg_task_updatenotification','','PLG_TASK_UPDATENOTIFICATION_EMAIL_SUBJECT','PLG_TASK_UPDATENOTIFICATION_EMAIL_BODY','','','{\"tags\":[\"newversion\",\"curversion\",\"sitename\",\"url\",\"link\",\"releasenews\"]}'),('plg_user_joomla.mail','plg_user_joomla','','PLG_USER_JOOMLA_NEW_USER_EMAIL_SUBJECT','PLG_USER_JOOMLA_NEW_USER_EMAIL_BODY','','','{\"tags\":[\"name\",\"sitename\",\"url\",\"username\",\"password\",\"email\"]}');
/*!40000 ALTER TABLE `jnx5e_mail_templates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_menu`
--
DROP TABLE IF EXISTS `jnx5e_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_menu` (
`id` int NOT NULL AUTO_INCREMENT,
`menutype` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The type of menu this item belongs to. FK to #__menu_types.menutype',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The display title of the menu item.',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL COMMENT 'The SEF alias of the menu item.',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`path` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The computed path of the menu item based on the alias field.',
`link` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The actually link the menu item refers to.',
`type` varchar(16) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The type of link: Component, URL, Alias, Separator',
`published` tinyint NOT NULL DEFAULT '0' COMMENT 'The published state of the menu link.',
`parent_id` int unsigned NOT NULL DEFAULT '1' COMMENT 'The parent menu item in the menu tree.',
`level` int unsigned NOT NULL DEFAULT '0' COMMENT 'The relative level in the tree.',
`component_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to #__extensions.id',
`checked_out` int unsigned DEFAULT NULL COMMENT 'FK to #__users.id',
`checked_out_time` datetime DEFAULT NULL COMMENT 'The time the menu item was checked out.',
`browserNav` tinyint NOT NULL DEFAULT '0' COMMENT 'The click behaviour of the link.',
`access` int unsigned NOT NULL DEFAULT '0' COMMENT 'The access level required to view the menu item.',
`img` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The image of the menu item.',
`template_style_id` int unsigned NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded data for the menu item.',
`lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
`rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
`home` tinyint unsigned NOT NULL DEFAULT '0' COMMENT 'Indicates if this menu item is the home or default page.',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`client_id` tinyint NOT NULL DEFAULT '0',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `idx_client_id_parent_id_alias_language` (`client_id`,`parent_id`,`alias`(100),`language`),
KEY `idx_componentid` (`component_id`,`menutype`,`published`,`access`),
KEY `idx_menutype` (`menutype`),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`(100)),
KEY `idx_path` (`path`(100)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=187 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_menu`
--
LOCK TABLES `jnx5e_menu` WRITE;
/*!40000 ALTER TABLE `jnx5e_menu` DISABLE KEYS */;
INSERT INTO `jnx5e_menu` VALUES (1,'','Menu_Item_Root','root','','','','',1,0,0,0,NULL,NULL,0,0,'',0,'',0,117,0,'*',0,NULL,NULL),(2,'main','com_banners','Banners','','Banners','index.php?option=com_banners','component',1,1,1,3,NULL,NULL,0,0,'class:bookmark',0,'',1,10,0,'*',1,NULL,NULL),(3,'main','com_banners','Banners','','Banners/Banners','index.php?option=com_banners&view=banners','component',1,2,2,3,NULL,NULL,0,0,'class:banners',0,'',2,3,0,'*',1,NULL,NULL),(4,'main','com_banners_categories','Categories','','Banners/Categories','index.php?option=com_categories&view=categories&extension=com_banners','component',1,2,2,5,NULL,NULL,0,0,'class:banners-cat',0,'',4,5,0,'*',1,NULL,NULL),(5,'main','com_banners_clients','Clients','','Banners/Clients','index.php?option=com_banners&view=clients','component',1,2,2,3,NULL,NULL,0,0,'class:banners-clients',0,'',6,7,0,'*',1,NULL,NULL),(6,'main','com_banners_tracks','Tracks','','Banners/Tracks','index.php?option=com_banners&view=tracks','component',1,2,2,3,NULL,NULL,0,0,'class:banners-tracks',0,'',8,9,0,'*',1,NULL,NULL),(7,'main','com_contact','Contacts','','Contacts','index.php?option=com_contact','component',1,1,1,7,NULL,NULL,0,0,'class:address-book',0,'',11,20,0,'*',1,NULL,NULL),(8,'main','com_contact_contacts','Contacts','','Contacts/Contacts','index.php?option=com_contact&view=contacts','component',1,7,2,7,NULL,NULL,0,0,'class:contact',0,'',12,13,0,'*',1,NULL,NULL),(9,'main','com_contact_categories','Categories','','Contacts/Categories','index.php?option=com_categories&view=categories&extension=com_contact','component',1,7,2,5,NULL,NULL,0,0,'class:contact-cat',0,'',14,15,0,'*',1,NULL,NULL),(10,'main','com_newsfeeds','News Feeds','','News Feeds','index.php?option=com_newsfeeds','component',1,1,1,16,NULL,NULL,0,0,'class:rss',0,'',23,28,0,'*',1,NULL,NULL),(11,'main','com_newsfeeds_feeds','Feeds','','News Feeds/Feeds','index.php?option=com_newsfeeds&view=newsfeeds','component',1,10,2,16,NULL,NULL,0,0,'class:newsfeeds',0,'',24,25,0,'*',1,NULL,NULL),(12,'main','com_newsfeeds_categories','Categories','','News Feeds/Categories','index.php?option=com_categories&view=categories&extension=com_newsfeeds','component',1,10,2,5,NULL,NULL,0,0,'class:newsfeeds-cat',0,'',26,27,0,'*',1,NULL,NULL),(13,'main','com_finder','Smart Search','','Smart Search','index.php?option=com_finder','component',1,1,1,23,NULL,NULL,0,0,'class:search-plus',0,'',29,38,0,'*',1,NULL,NULL),(14,'main','com_tags','Tags','','Tags','index.php?option=com_tags&view=tags','component',1,1,1,25,NULL,NULL,0,1,'class:tags',0,'',39,40,0,'',1,NULL,NULL),(15,'main','com_associations','Multilingual Associations','','Multilingual Associations','index.php?option=com_associations&view=associations','component',1,1,1,30,NULL,NULL,0,0,'class:language',0,'',21,22,0,'*',1,NULL,NULL),(16,'main','mod_menu_fields','Contact Custom Fields','','Contacts/Contact Custom Fields','index.php?option=com_fields&context=com_contact.contact','component',1,7,2,29,NULL,NULL,0,0,'class:messages-add',0,'',16,17,0,'*',1,NULL,NULL),(17,'main','mod_menu_fields_group','Contact Custom Fields Group','','Contacts/Contact Custom Fields Group','index.php?option=com_fields&view=groups&context=com_contact.contact','component',1,7,2,29,NULL,NULL,0,0,'class:messages-add',0,'',18,19,0,'*',1,NULL,NULL),(18,'main','com_finder_index','Smart-Search-Index','','Smart Search/Smart-Search-Index','index.php?option=com_finder&view=index','component',1,13,2,23,NULL,NULL,0,0,'class:finder',0,'',30,31,0,'*',1,NULL,NULL),(19,'main','com_finder_maps','Smart-Search-Maps','','Smart Search/Smart-Search-Maps','index.php?option=com_finder&view=maps','component',1,13,2,23,NULL,NULL,0,0,'class:finder-maps',0,'',32,33,0,'*',1,NULL,NULL),(20,'main','com_finder_filters','Smart-Search-Filters','','Smart Search/Smart-Search-Filters','index.php?option=com_finder&view=filters','component',1,13,2,23,NULL,NULL,0,0,'class:finder-filters',0,'',34,35,0,'*',1,NULL,NULL),(21,'main','com_finder_searches','Smart-Search-Searches','','Smart Search/Smart-Search-Searches','index.php?option=com_finder&view=searches','component',1,13,2,23,NULL,NULL,0,0,'class:finder-searches',0,'',36,37,0,'*',1,NULL,NULL),(101,'mainmenu','Inicio','home','','home','index.php?option=com_gantry5&view=custom','component',1,1,1,255,NULL,NULL,0,1,' ',13,'{\"particle\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"1\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\",\"gantry-icon\":\"fa fa-home\"}',41,42,1,'*',0,NULL,NULL),(105,'main','COM_DJIMAGESLIDER','com-djimageslider','','com-djimageslider','index.php?option=com_djimageslider','component',1,1,1,258,NULL,NULL,0,1,'components/com_djimageslider/assets/icon-16-djimageslider.png',0,'{}',45,52,0,'',1,NULL,NULL),(106,'main','COM_DJIMAGESLIDER_SUBMENU_CPANEL','com-djimageslider-submenu-cpanel','','com-djimageslider/com-djimageslider-submenu-cpanel','index.php?option=com_djimageslider&view=cpanel','component',1,105,2,258,NULL,NULL,0,1,'class:com_djimageslider-cpanel',0,'{}',46,47,0,'',1,NULL,NULL),(107,'main','COM_DJIMAGESLIDER_SUBMENU_SLIDES','com-djimageslider-submenu-slides','','com-djimageslider/com-djimageslider-submenu-slides','index.php?option=com_djimageslider&view=items','component',1,105,2,258,NULL,NULL,0,1,'class:com_djimageslider-items',0,'{}',48,49,0,'',1,NULL,NULL),(108,'main','COM_DJIMAGESLIDER_SUBMENU_CATEGORIES','com-djimageslider-submenu-categories','','com-djimageslider/com-djimageslider-submenu-categories','index.php?option=com_categories&extension=com_djimageslider','component',1,105,2,258,NULL,NULL,0,1,'class:dj-imageslider-cat',0,'{}',50,51,0,'',1,NULL,NULL),(117,'mainmenu','Ejes temáticos','ejes-tematicos','','ejes-tematicos','index.php?option=com_content&view=article&id=4','component',1,1,1,19,NULL,NULL,0,1,' ',16,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-icon\":\"fa fa-sitemap\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',43,44,0,'*',0,NULL,NULL),(131,'mainmenu','Cronograma','cronograma','','programa/cronograma','index.php?option=com_content&view=article&id=1','component',1,184,2,19,NULL,NULL,0,1,' ',17,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',106,107,0,'*',0,NULL,NULL),(132,'mainmenu','Guía Ponencias','guia-ponencias','','programa/guia-ponencias','index.php?option=com_content&view=article&id=2','component',1,184,2,19,NULL,NULL,0,1,' ',12,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',108,109,0,'*',0,NULL,NULL),(134,'menu-vertical','Buscar','buscar','','buscar','index.php?option=com_finder&view=search','component',1,1,1,23,NULL,NULL,0,1,' ',12,'{\"show_date_filters\":\"\",\"show_advanced\":\"\",\"expand_advanced\":\"\",\"show_taxonomy\":\"\",\"show_description\":\"\",\"description_length\":\"\",\"show_image\":\"\",\"image_class\":\"\",\"link_image\":\"\",\"show_date\":\"\",\"show_url\":\"\",\"show_pagination_limit\":\"\",\"show_pagination\":\"\",\"show_pagination_results\":\"\",\"list_limit\":\"20\",\"allow_empty_query\":\"\",\"show_suggested_query\":\"\",\"show_explained_query\":\"\",\"sort_order\":\"\",\"show_sort_order\":\"0\",\"sort_direction\":\"\",\"show_feed_link\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',53,54,0,'*',0,NULL,NULL),(157,'main','COM_DPCALENDAR','com-dpcalendar','','com-dpcalendar','index.php?option=com_dpcalendar&view=cpanel','component',1,1,1,269,NULL,NULL,0,1,'class:component',0,'{}',55,70,0,'',1,NULL,NULL),(158,'main','COM_DPCALENDAR_SUBMENU_CPANEL','com-dpcalendar-submenu-cpanel','','com-dpcalendar/com-dpcalendar-submenu-cpanel','index.php?option=com_dpcalendar&view=cpanel','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',56,57,0,'',1,NULL,NULL),(159,'main','COM_DPCALENDAR_SUBMENU_EVENTS','com-dpcalendar-submenu-events','','com-dpcalendar/com-dpcalendar-submenu-events','index.php?option=com_dpcalendar&view=events','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',58,59,0,'',1,NULL,NULL),(160,'main','COM_DPCALENDAR_SUBMENU_CALENDARS','com-dpcalendar-submenu-calendars','','com-dpcalendar/com-dpcalendar-submenu-calendars','index.php?option=com_categories&extension=com_dpcalendar','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',60,61,0,'',1,NULL,NULL),(161,'main','COM_DPCALENDAR_SUBMENU_LOCATIONS','com-dpcalendar-submenu-locations','','com-dpcalendar/com-dpcalendar-submenu-locations','index.php?option=com_dpcalendar&view=locations','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',62,63,0,'',1,NULL,NULL),(162,'main','JGLOBAL_FIELDS','jglobal-fields','','com-dpcalendar/jglobal-fields','index.php?option=com_fields&context=com_dpcalendar.event','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',64,65,0,'',1,NULL,NULL),(163,'main','JGLOBAL_FIELD_GROUPS','jglobal-field-groups','','com-dpcalendar/jglobal-field-groups','index.php?option=com_fields&view=groups&context=com_dpcalendar.event','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',66,67,0,'',1,NULL,NULL),(164,'main','COM_DPCALENDAR_SUBMENU_TOOLS','com-dpcalendar-submenu-tools','','com-dpcalendar/com-dpcalendar-submenu-tools','index.php?option=com_dpcalendar&view=tools','component',1,157,2,269,NULL,NULL,0,1,'class:component',0,'{}',68,69,0,'',1,NULL,NULL),(166,'main','COM_PHOCADOWNLOAD','com-phocadownload','','com-phocadownload','index.php?option=com_phocadownload','component',1,1,1,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu.png',0,'{}',71,96,0,'',1,NULL,NULL),(167,'main','COM_PHOCADOWNLOAD_CONTROLPANEL','com-phocadownload-controlpanel','','com-phocadownload/com-phocadownload-controlpanel','index.php?option=com_phocadownload','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-control-panel.png',0,'{}',72,73,0,'',1,NULL,NULL),(168,'main','COM_PHOCADOWNLOAD_FILES','com-phocadownload-files','','com-phocadownload/com-phocadownload-files','index.php?option=com_phocadownload&view=phocadownloadfiles','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-files.png',0,'{}',74,75,0,'',1,NULL,NULL),(169,'main','COM_PHOCADOWNLOAD_CATEGORIES','com-phocadownload-categories','','com-phocadownload/com-phocadownload-categories','index.php?option=com_phocadownload&view=phocadownloadcats','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-category.png',0,'{}',76,77,0,'',1,NULL,NULL),(170,'main','COM_PHOCADOWNLOAD_LICENSES','com-phocadownload-licenses','','com-phocadownload/com-phocadownload-licenses','index.php?option=com_phocadownload&view=phocadownloadlics','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-lic.png',0,'{}',78,79,0,'',1,NULL,NULL),(171,'main','COM_PHOCADOWNLOAD_STATISTICS','com-phocadownload-statistics','','com-phocadownload/com-phocadownload-statistics','index.php?option=com_phocadownload&view=phocadownloadstat','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-stat.png',0,'{}',80,81,0,'',1,NULL,NULL),(172,'main','COM_PHOCADOWNLOAD_DOWNLOADS','com-phocadownload-downloads','','com-phocadownload/com-phocadownload-downloads','index.php?option=com_phocadownload&view=phocadownloaddownloads','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-downloads.png',0,'{}',82,83,0,'',1,NULL,NULL),(173,'main','COM_PHOCADOWNLOAD_UPLOADS','com-phocadownload-uploads','','com-phocadownload/com-phocadownload-uploads','index.php?option=com_phocadownload&view=phocadownloaduploads','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-uploads.png',0,'{}',84,85,0,'',1,NULL,NULL),(174,'main','COM_PHOCADOWNLOAD_FILE_RATING','com-phocadownload-file-rating','','com-phocadownload/com-phocadownload-file-rating','index.php?option=com_phocadownload&view=phocadownloadrafile','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-vote-file.png',0,'{}',86,87,0,'',1,NULL,NULL),(175,'main','COM_PHOCADOWNLOAD_TAGS','com-phocadownload-tags','','com-phocadownload/com-phocadownload-tags','index.php?option=com_phocadownload&view=phocadownloadtags','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-tags.png',0,'{}',88,89,0,'',1,NULL,NULL),(176,'main','COM_PHOCADOWNLOAD_STYLES','com-phocadownload-styles','','com-phocadownload/com-phocadownload-styles','index.php?option=com_phocadownload&view=phocadownloadstyles','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-style.png',0,'{}',90,91,0,'',1,NULL,NULL),(177,'main','COM_PHOCADOWNLOAD_LOGGING','com-phocadownload-logging','','com-phocadownload/com-phocadownload-logging','index.php?option=com_phocadownload&view=phocadownloadlogs','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-logs.png',0,'{}',92,93,0,'',1,NULL,NULL),(178,'main','COM_PHOCADOWNLOAD_INFO','com-phocadownload-info','','com-phocadownload/com-phocadownload-info','index.php?option=com_phocadownload&view=phocadownloadinfo','component',1,166,2,274,NULL,NULL,0,1,'media/com_phocadownload/images/administrator/icon-16-pdl-menu-info.png',0,'{}',94,95,0,'',1,NULL,NULL),(179,'main','COM_GANTRY5','com-gantry5','','com-gantry5','index.php?option=com_gantry5','component',1,1,1,255,NULL,NULL,0,1,'class:component',0,'{}',97,102,0,'',1,NULL,NULL),(180,'main','COM_GANTRY5_ADMIN_MENU_THEMES','com-gantry5-admin-menu-themes','','com-gantry5/com-gantry5-admin-menu-themes','index.php?option=com_gantry5&view=themes','component',1,179,2,255,NULL,NULL,0,1,'class:component',0,'{}',98,99,0,'',1,NULL,NULL),(181,'main','COM_GANTRY5_ADMIN_MENU_THEME','com-gantry5-admin-menu-theme','','com-gantry5/com-gantry5-admin-menu-theme','index.php?option=com_gantry5','component',1,179,2,255,NULL,NULL,0,1,'class:component',0,'{}',100,101,0,'',1,NULL,NULL),(182,'main','COM_SMARTSLIDER3','com-smartslider3','','com-smartslider3','index.php?option=com_smartslider3','component',1,1,1,277,NULL,NULL,0,1,'class:component',0,'{}',103,104,0,'',1,NULL,NULL),(183,'mainmenu','Memorias ','memorias','','informacion/memorias','index.php?option=com_content&view=article&id=3','component',1,185,2,19,NULL,NULL,0,1,' ',0,'{\"show_title\":\"\",\"link_titles\":\"\",\"show_intro\":\"\",\"info_block_position\":\"\",\"info_block_show_title\":\"\",\"show_category\":\"\",\"link_category\":\"\",\"show_parent_category\":\"\",\"link_parent_category\":\"\",\"show_author\":\"\",\"link_author\":\"\",\"show_create_date\":\"\",\"show_modify_date\":\"\",\"show_publish_date\":\"\",\"show_item_navigation\":\"\",\"show_hits\":\"\",\"show_tags\":\"\",\"show_noauth\":\"\",\"urls_position\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',112,113,0,'*',0,NULL,NULL),(184,'mainmenu','Programa','programa','','programa','','heading',1,1,1,0,NULL,NULL,0,1,' ',12,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-icon\":\"fa fa-calendar-alt\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',105,110,0,'*',0,NULL,NULL),(185,'mainmenu','Información','informacion','','informacion','','heading',1,1,1,0,NULL,NULL,0,1,' ',12,'{\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-icon\":\"fa fa-info-circle\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',111,116,0,'*',0,NULL,NULL),(186,'mainmenu','contacto','contacto','','informacion/contacto','index.php?option=com_gantry5&view=custom','component',1,185,2,255,NULL,NULL,0,1,' ',15,'{\"particle\":\"\",\"menu-anchor_title\":\"\",\"menu-anchor_css\":\"\",\"menu_icon_css\":\"\",\"menu_image\":\"\",\"menu_image_css\":\"\",\"menu_text\":1,\"menu_show\":1,\"page_title\":\"\",\"show_page_heading\":\"\",\"page_heading\":\"\",\"pageclass_sfx\":\"\",\"menu-meta_description\":\"\",\"robots\":\"\",\"gantry\":1,\"gantry-dropdown_dir\":\"right\",\"gantry-width\":\"auto\",\"gantry-layout\":\"list\",\"gantry-visible\":true,\"gantry-columns\":\"[]\",\"gantry-columns_count\":\"[]\",\"gantry-options\":\"[]\"}',114,115,0,'*',0,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_menu_types`
--
DROP TABLE IF EXISTS `jnx5e_menu_types`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_menu_types` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0',
`menutype` varchar(24) COLLATE utf8mb4_unicode_ci NOT NULL,
`title` varchar(48) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`client_id` int NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_menutype` (`menutype`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_menu_types`
--
LOCK TABLES `jnx5e_menu_types` WRITE;
/*!40000 ALTER TABLE `jnx5e_menu_types` DISABLE KEYS */;
INSERT INTO `jnx5e_menu_types` VALUES (1,54,'mainmenu','Main Menu','The main menu for the site',0,1),(2,116,'menu-vertical','menu-vertical','',0,0);
/*!40000 ALTER TABLE `jnx5e_menu_types` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_messages`
--
DROP TABLE IF EXISTS `jnx5e_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_messages` (
`message_id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id_from` int unsigned NOT NULL DEFAULT '0',
`user_id_to` int unsigned NOT NULL DEFAULT '0',
`folder_id` tinyint unsigned NOT NULL DEFAULT '0',
`date_time` datetime NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`priority` tinyint unsigned NOT NULL DEFAULT '0',
`subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`message_id`),
KEY `useridto_state` (`user_id_to`,`state`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_messages`
--
LOCK TABLES `jnx5e_messages` WRITE;
/*!40000 ALTER TABLE `jnx5e_messages` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_messages_cfg`
--
DROP TABLE IF EXISTS `jnx5e_messages_cfg`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_messages_cfg` (
`user_id` int unsigned NOT NULL DEFAULT '0',
`cfg_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`cfg_value` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
UNIQUE KEY `idx_user_var_name` (`user_id`,`cfg_name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_messages_cfg`
--
LOCK TABLES `jnx5e_messages_cfg` WRITE;
/*!40000 ALTER TABLE `jnx5e_messages_cfg` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_messages_cfg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_modules`
--
DROP TABLE IF EXISTS `jnx5e_modules`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_modules` (
`id` int NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`content` text COLLATE utf8mb4_unicode_ci,
`ordering` int NOT NULL DEFAULT '0',
`position` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`module` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`access` int unsigned NOT NULL DEFAULT '0',
`showtitle` tinyint unsigned NOT NULL DEFAULT '1',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`client_id` tinyint NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`,`access`),
KEY `newsfeeds` (`module`,`published`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=117 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_modules`
--
LOCK TABLES `jnx5e_modules` WRITE;
/*!40000 ALTER TABLE `jnx5e_modules` DISABLE KEYS */;
INSERT INTO `jnx5e_modules` VALUES (1,39,'Main Menu','','',1,'sidebar-right',NULL,NULL,NULL,NULL,1,'mod_menu',1,1,'{\"menutype\":\"mainmenu\",\"startLevel\":\"0\",\"endLevel\":\"0\",\"showAllChildren\":\"1\",\"tag_id\":\"\",\"class_sfx\":\"\",\"window_open\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"itemid\"}',0,'*'),(2,40,'Login','','',1,'login',NULL,NULL,NULL,NULL,1,'mod_login',1,1,'',1,'*'),(3,41,'Popular Articles','','',6,'cpanel',NULL,NULL,NULL,NULL,1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(4,42,'Recently Added Articles','','',4,'cpanel',NULL,NULL,NULL,NULL,1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(8,43,'Toolbar','','',1,'toolbar',NULL,NULL,NULL,NULL,1,'mod_toolbar',3,1,'',1,'*'),(9,44,'Notifications','','',3,'icon',NULL,NULL,NULL,NULL,1,'mod_quickicon',3,1,'{\"context\":\"update_quickicon\",\"header_icon\":\"icon-sync\",\"show_jupdate\":\"1\",\"show_eupdate\":\"1\",\"show_oupdate\":\"1\",\"show_privacy\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(10,45,'Logged-in Users','','',2,'cpanel',NULL,NULL,NULL,NULL,1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(12,46,'Admin Menu','','',1,'menu',NULL,NULL,NULL,NULL,1,'mod_menu',3,1,'{\"layout\":\"\",\"moduleclass_sfx\":\"\",\"shownew\":\"1\",\"showhelp\":\"1\",\"cache\":\"0\"}',1,'*'),(15,49,'Title','','',1,'title',NULL,NULL,NULL,NULL,1,'mod_title',3,1,'',1,'*'),(16,50,'Login Form','','',7,'sidebar-right',NULL,NULL,NULL,NULL,1,'mod_login',1,1,'{\"greeting\":\"1\",\"name\":\"0\"}',0,'*'),(17,51,'Breadcrumbs','','',1,'breadcrumbs',NULL,NULL,NULL,NULL,1,'mod_breadcrumbs',1,1,'{\"showHere\":1,\"showHome\":1,\"homeText\":\"\",\"showLast\":1,\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":0,\"cache_time\":0,\"cachemode\":\"itemid\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(79,52,'Multilanguage status','','',2,'status',NULL,NULL,NULL,NULL,1,'mod_multilangstatus',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(86,53,'Joomla Version','','',1,'status',NULL,NULL,NULL,NULL,1,'mod_version',3,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\"}',1,'*'),(87,55,'Sample Data','','',1,'cpanel',NULL,NULL,NULL,NULL,1,'mod_sampledata',6,1,'{\"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(88,67,'Latest Actions','','',3,'cpanel',NULL,NULL,NULL,NULL,1,'mod_latestactions',6,1,'{\"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(89,68,'Privacy Dashboard','','',5,'cpanel',NULL,NULL,NULL,NULL,1,'mod_privacy_dashboard',6,1,'{\"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(90,89,'Login Support','','',1,'sidebar',NULL,NULL,NULL,NULL,1,'mod_loginsupport',1,1,'{\"forum_url\":\"https://forum.joomla.org/\",\"documentation_url\":\"https://docs.joomla.org/\",\"news_url\":\"https://www.joomla.org/announcements.html\",\"automatic_title\":1,\"prepare_content\":1,\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',1,'*'),(91,72,'System Dashboard','','',1,'cpanel-system',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"system\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\",\"style\":\"System-none\"}',1,'*'),(92,73,'Content Dashboard','','',1,'cpanel-content',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"content\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\",\"style\":\"System-none\"}',1,'*'),(93,74,'Menus Dashboard','','',1,'cpanel-menus',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"menus\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\",\"style\":\"System-none\"}',1,'*'),(94,75,'Components Dashboard','','',1,'cpanel-components',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"components\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\",\"style\":\"System-none\"}',1,'*'),(95,76,'Users Dashboard','','',1,'cpanel-users',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"users\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\",\"style\":\"System-none\"}',1,'*'),(96,86,'Popular Articles','','',3,'cpanel-content',NULL,NULL,NULL,NULL,1,'mod_popular',3,1,'{\"count\":\"5\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(97,87,'Recently Added Articles','','',4,'cpanel-content',NULL,NULL,NULL,NULL,1,'mod_latest',3,1,'{\"count\":\"5\",\"ordering\":\"c_dsc\",\"catid\":\"\",\"user_id\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(98,88,'Logged-in Users','','',2,'cpanel-users',NULL,NULL,NULL,NULL,1,'mod_logged',3,1,'{\"count\":\"5\",\"name\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"0\", \"bootstrap_size\": \"12\",\"header_tag\":\"h2\"}',1,'*'),(99,77,'Frontend Link','','',5,'status',NULL,NULL,NULL,NULL,1,'mod_frontend',1,1,'',1,'*'),(100,78,'Messages','','',4,'status',NULL,NULL,NULL,NULL,1,'mod_messages',3,1,'',1,'*'),(101,79,'Post Install Messages','','',3,'status',NULL,NULL,NULL,NULL,1,'mod_post_installation_messages',3,1,'',1,'*'),(102,80,'User Status','','',6,'status',NULL,NULL,NULL,NULL,1,'mod_user',3,1,'',1,'*'),(103,70,'Site','','',1,'icon',NULL,NULL,NULL,NULL,1,'mod_quickicon',1,1,'{\"context\":\"site_quickicon\",\"header_icon\":\"icon-desktop\",\"show_users\":\"1\",\"show_articles\":\"1\",\"show_categories\":\"1\",\"show_media\":\"1\",\"show_menuItems\":\"1\",\"show_modules\":\"1\",\"show_plugins\":\"1\",\"show_templates\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(104,71,'System','','',2,'icon',NULL,NULL,NULL,NULL,1,'mod_quickicon',1,1,'{\"context\":\"system_quickicon\",\"header_icon\":\"icon-wrench\",\"show_global\":\"1\",\"show_checkin\":\"1\",\"show_cache\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(105,82,'3rd Party','','',4,'icon',NULL,NULL,NULL,NULL,1,'mod_quickicon',1,1,'{\"context\":\"mod_quickicon\",\"header_icon\":\"icon-boxes\",\"load_plugins\":\"1\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(106,83,'Help Dashboard','','',1,'cpanel-help',NULL,NULL,NULL,NULL,1,'mod_submenu',1,0,'{\"menutype\":\"*\",\"preset\":\"help\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"style\":\"System-none\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(107,84,'Privacy Requests','','',1,'cpanel-privacy',NULL,NULL,NULL,NULL,1,'mod_privacy_dashboard',1,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"cachemode\":\"static\",\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(108,85,'Privacy Status','','',1,'cpanel-privacy',NULL,NULL,NULL,NULL,1,'mod_privacy_status',1,1,'{\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":1,\"cache_time\":900,\"cachemode\":\"static\",\"style\":\"0\",\"module_tag\":\"div\",\"bootstrap_size\":\"12\",\"header_tag\":\"h2\",\"header_class\":\"\"}',1,'*'),(109,96,'Guided Tours','','',1,'status',NULL,NULL,NULL,NULL,1,'mod_guidedtours',1,1,'',1,'*'),(110,101,'Gantry 5 Particle','','',1,'',NULL,NULL,NULL,NULL,0,'mod_gantry5_particle',1,1,'',0,'*'),(111,104,'DJ-ImageSlider','','',1,'slider',NULL,NULL,NULL,NULL,1,'mod_djimageslider',1,1,'{\"slider_source\":\"1\",\"slider_type\":\"0\",\"theme\":\"default\",\"link_image\":\"1\",\"image_folder\":\"images\\/sampledata\\/fruitshop\",\"link\":\"\",\"category\":\"8\",\"show_title\":\"0\",\"show_desc\":\"0\",\"show_readmore\":\"0\",\"readmore_text\":\"\",\"link_title\":\"1\",\"link_desc\":\"0\",\"limit_desc\":\"\",\"full_width\":\"0\",\"image_width\":\"1200\",\"image_height\":\"770\",\"fit_to\":\"0\",\"image_centering\":\"0\",\"visible_images\":\"1\",\"space_between_images\":\"10\",\"max_images\":\"20\",\"sort_by\":\"1\",\"css3\":\"1\",\"autoplay\":\"1\",\"looponce\":\"0\",\"show_buttons\":\"1\",\"show_arrows\":\"1\",\"show_custom_nav\":\"2\",\"wcag\":\"1\",\"desc_width\":\"\",\"desc_bottom\":\"0\",\"desc_horizontal\":\"0\",\"left_arrow\":\"\",\"right_arrow\":\"\",\"play_button\":\"\",\"pause_button\":\"\",\"arrows_top\":\"300\",\"arrows_horizontal\":\"10\",\"idx_style\":\"0\",\"title_color\":\"#ffffff\",\"title_font\":\"\",\"desc_color\":\"#ffffff\",\"desc_font\":\"\",\"readmore_color\":\"#ffffff\",\"readmore_font\":\"\",\"desc_bg\":\"rgba(56, 56, 56, 0.28)\",\"include_gf\":\"0\",\"border_radius\":\"0px 0px 0px 0px;\",\"effect\":\"Expo\",\"effect_type\":\"0\",\"duration\":\"\",\"delay\":\"\",\"preload\":\"800\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(112,108,'DPCalendar Mini','','',1,'',NULL,NULL,'2024-10-17 15:28:49',NULL,1,'mod_dpcalendar_mini',1,1,'{\"ids\":[\"9\"],\"compact_events\":\"0\",\"event_color\":\"#135cae\",\"open_view\":\"day\",\"default_view\":\"month\",\"weekstart\":\"1\",\"weekend\":\"1\",\"fixed_week_count\":\"0\",\"week_numbers\":\"0\",\"overlap_events\":\"1\",\"agenda_slot_minutes\":\"30\",\"calendar_height\":\"0\",\"event_limit\":\"\",\"titleformat_month\":\"F Y\",\"titleformat_week\":\"M j Y\",\"titleformat_day\":\"F j Y\",\"titleformat_list\":\"M j Y\",\"timeformat_month\":\"H:i\",\"timeformat_week\":\"H:i\",\"timeformat_day\":\"H:i\",\"timeformat_list\":\"H:i\",\"columnformat_month\":\"D\",\"columnformat_week\":\"D n\\/j\",\"columnformat_day\":\"l\",\"columnformat_list\":\"D\",\"axisformat_month\":\"l j\",\"axisformat_week\":\"H:i\",\"axisformat_day\":\"H:i\",\"dayformat_list\":\"l\",\"dateformat_list\":\"F j, Y\",\"list_range\":\"30\",\"header_show_navigation\":\"1\",\"header_show_datepicker\":\"1\",\"header_show_today\":\"0\",\"header_show_create\":\"1\",\"header_show_title\":\"1\",\"header_show_month\":\"0\",\"header_show_week\":\"0\",\"header_show_day\":\"0\",\"header_show_list\":\"0\",\"show_event_as_popup\":\"1\",\"popup_width\":\"\",\"popup_height\":\"500\",\"event_create_form\":\"1\",\"description_length\":\"100\",\"adjust_fg_color\":\"2\",\"show_map\":\"1\",\"map_zoom\":\"4\",\"map_width\":\"100%\",\"map_height\":\"350px\",\"map_lat\":\"47\",\"map_long\":\"4\",\"first_hour\":\"6\",\"min_time\":\"0\",\"max_time\":\"24\",\"current_time_indicator\":\"1\",\"business_hours_start\":\"\",\"business_hours_end\":\"\",\"calendar_filter_author\":\"0\",\"calendar_resource_views\":[\"\"],\"screen_size_list_view\":\"500\",\"start_date\":\"\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"custom_css\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(113,113,'Ol Testimonials','','',1,'',NULL,NULL,'2025-02-24 14:00:11',NULL,1,'mod_ol_testimonials',1,1,'{\"get_stars\":\"1\",\"jqueryload\":\"0\",\"get_fonto\":\"0\",\"testimonials_items\":{\"testimonials_items0\":{\"get_publish\":\"1\",\"img\":\"images\\/logos\\/m_pais.png#joomlaImage:\\/\\/local-images\\/logos\\/m_pais.png?width=50&height=45\",\"name\":\"nombre persona que da testimonio\",\"title\":\"cargo\",\"info\":\"<p style=\\\"text-align: justify;\\\">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.<\\/p>\",\"rmore\":\"\",\"rmoretxt\":\"\",\"get_target\":\"_self\",\"stars\":\"star4\"}},\"get_style\":\"default\",\"image_width\":\"1\",\"image_width_tabl\":\"3\",\"image_width_tabp\":\"3\",\"image_width_mobl\":\"2\",\"image_width_mobp\":\"1\",\"autoplay\":\"true\",\"autoplay-timeout\":\"5000\",\"autoplay-speed\":\"1000\",\"autoplay-hover-pause\":\"true\",\"dataLoop\":\"true\",\"dataNav\":\"true\",\"navPosit\":\"nav-bottom-right\",\"navStyle\":\"\",\"navRounded\":\"\",\"jpreload\":\"0\",\"container_fix\":\"0\",\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"cache\":\"1\",\"cache_time\":\"900\",\"cachemode\":\"static\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*'),(114,114,'Smart Slider 3 Module','','',4,'',NULL,NULL,'2025-02-24 14:03:09',NULL,1,'mod_smartslider3',1,1,'',0,'*'),(115,117,'buscador','',NULL,1,'buscador',NULL,NULL,NULL,NULL,1,'mod_finder',1,1,'{\"searchfilter\":\"\",\"show_autosuggest\":0,\"show_advanced\":0,\"show_label\":0,\"alt_label\":\"\",\"show_button\":1,\"opensearch\":1,\"opensearch_name\":\"\",\"set_itemid\":134,\"layout\":\"_:default\",\"moduleclass_sfx\":\"\",\"module_tag\":\"div\",\"bootstrap_size\":\"0\",\"header_tag\":\"h3\",\"header_class\":\"\",\"style\":\"0\"}',0,'*');
/*!40000 ALTER TABLE `jnx5e_modules` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_modules_menu`
--
DROP TABLE IF EXISTS `jnx5e_modules_menu`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_modules_menu` (
`moduleid` int NOT NULL DEFAULT '0',
`menuid` int NOT NULL DEFAULT '0',
PRIMARY KEY (`moduleid`,`menuid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_modules_menu`
--
LOCK TABLES `jnx5e_modules_menu` WRITE;
/*!40000 ALTER TABLE `jnx5e_modules_menu` DISABLE KEYS */;
INSERT INTO `jnx5e_modules_menu` VALUES (1,0),(2,0),(3,0),(4,0),(6,0),(7,0),(8,0),(9,0),(10,0),(12,0),(14,0),(15,0),(16,0),(17,117),(79,0),(86,0),(87,0),(88,0),(89,0),(90,0),(91,0),(92,0),(93,0),(94,0),(95,0),(96,0),(97,0),(98,0),(99,0),(100,0),(101,0),(102,0),(103,0),(104,0),(105,0),(106,0),(107,0),(108,0),(109,0),(111,101),(112,131),(113,131),(115,0);
/*!40000 ALTER TABLE `jnx5e_modules_menu` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_newsfeeds`
--
DROP TABLE IF EXISTS `jnx5e_newsfeeds`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_newsfeeds` (
`catid` int NOT NULL DEFAULT '0',
`id` int unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`link` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`published` tinyint NOT NULL DEFAULT '0',
`numarticles` int unsigned NOT NULL DEFAULT '1',
`cache_time` int unsigned NOT NULL DEFAULT '3600',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`rtl` tinyint NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified` datetime NOT NULL,
`modified_by` int unsigned NOT NULL DEFAULT '0',
`metakey` text COLLATE utf8mb4_unicode_ci,
`metadesc` text COLLATE utf8mb4_unicode_ci NOT NULL,
`metadata` text COLLATE utf8mb4_unicode_ci NOT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`version` int unsigned NOT NULL DEFAULT '1',
`hits` int unsigned NOT NULL DEFAULT '0',
`images` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_state` (`published`),
KEY `idx_catid` (`catid`),
KEY `idx_createdby` (`created_by`),
KEY `idx_language` (`language`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_newsfeeds`
--
LOCK TABLES `jnx5e_newsfeeds` WRITE;
/*!40000 ALTER TABLE `jnx5e_newsfeeds` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_newsfeeds` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_image_storage`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_image_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_image_storage` (
`id` int NOT NULL AUTO_INCREMENT,
`hash` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` text COLLATE utf8mb4_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `hash` (`hash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_image_storage`
--
LOCK TABLES `jnx5e_nextend2_image_storage` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_image_storage` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_nextend2_image_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_section_storage`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_section_storage`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_section_storage` (
`id` int NOT NULL AUTO_INCREMENT,
`application` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`section` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`referencekey` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`isSystem` int NOT NULL DEFAULT '0',
`editable` int NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `isSystem` (`isSystem`),
KEY `editable` (`editable`),
KEY `application` (`application`,`section`(50),`referencekey`(50)),
KEY `application_2` (`application`,`section`(50))
) ENGINE=InnoDB AUTO_INCREMENT=10002 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_section_storage`
--
LOCK TABLES `jnx5e_nextend2_section_storage` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_section_storage` DISABLE KEYS */;
INSERT INTO `jnx5e_nextend2_section_storage` VALUES (10000,'smartslider','settings','','{\"n2_ss3_version\":\"3.5.1.30\\/b:release-3.5.1.30\\/r:5ea20ab392ca2dc373e75a7bbc7698907363db57\"}',0,1),(10001,'smartslider','license','isActive','0',0,1);
/*!40000 ALTER TABLE `jnx5e_nextend2_section_storage` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_smartslider3_generators`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_smartslider3_generators`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_smartslider3_generators` (
`id` int NOT NULL AUTO_INCREMENT,
`group` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(254) COLLATE utf8mb4_unicode_ci NOT NULL,
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_smartslider3_generators`
--
LOCK TABLES `jnx5e_nextend2_smartslider3_generators` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_generators` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_generators` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_smartslider3_sliders`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_smartslider3_sliders`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_smartslider3_sliders` (
`id` int NOT NULL AUTO_INCREMENT,
`alias` text COLLATE utf8mb4_unicode_ci,
`title` text COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(30) COLLATE utf8mb4_unicode_ci NOT NULL,
`params` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`slider_status` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`time` datetime NOT NULL,
`thumbnail` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ordering` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `slider_status` (`slider_status`),
KEY `time` (`time`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_smartslider3_sliders`
--
LOCK TABLES `jnx5e_nextend2_smartslider3_sliders` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_sliders` DISABLE KEYS */;
INSERT INTO `jnx5e_nextend2_smartslider3_sliders` VALUES (1,NULL,'Tutorial Slider','simple','{\"aria-label\":\"Slider\",\"alias-id\":\"\",\"alias-smoothscroll\":\"\",\"alias-slideswitch\":\"\",\"background\":\"\",\"background-fixed\":\"0\",\"background-size\":\"cover\",\"background-color\":\"FFFFFF00\",\"backgroundVideoMp4\":\"\",\"backgroundVideoMuted\":\"1\",\"backgroundVideoLoop\":\"1\",\"backgroundVideoMode\":\"fill\",\"align\":\"normal\",\"margin\":\"0|*|0|*|0|*|0\",\"padding\":\"0|*|0|*|0|*|0\",\"perspective\":\"1000\",\"border-width\":\"0\",\"border-color\":\"3E3E3Eff\",\"border-radius\":\"0\",\"slider-preset\":\"\",\"slider-css\":\"\",\"width\":\"1200\",\"height\":\"600\",\"mobileportrait\":\"1\",\"mobilelandscape\":\"1\",\"tabletportrait\":\"1\",\"tabletlandscape\":\"1\",\"desktopportrait\":\"1\",\"desktoplandscape\":\"1\",\"responsiveLimitSlideWidth\":\"1\",\"responsiveSlideWidthDesktopLandscape\":\"0\",\"responsiveSlideWidthMaxDesktopLandscape\":\"1600\",\"responsiveSlideWidth\":\"0\",\"responsiveSlideWidthMax\":\"3000\",\"responsiveSlideWidthTabletLandscape\":\"0\",\"responsiveSlideWidthMaxTabletLandscape\":\"1200\",\"responsiveSlideWidthTablet\":\"0\",\"responsiveSlideWidthMaxTablet\":\"3000\",\"responsiveSlideWidthMobileLandscape\":\"0\",\"responsiveSlideWidthMaxMobileLandscape\":\"740\",\"responsiveSlideWidthMobile\":\"0\",\"responsiveSlideWidthMaxMobile\":\"480\",\"responsive-breakpoint-desktop-portrait\":\"1440\",\"responsive-breakpoint-desktop-portrait-landscape\":\"1440\",\"responsive-breakpoint-tablet-landscape\":\"1300\",\"responsive-breakpoint-tablet-landscape-landscape\":\"1300\",\"responsive-breakpoint-tablet-portrait\":\"1199\",\"responsive-breakpoint-tablet-portrait-landscape\":\"1199\",\"responsive-breakpoint-mobile-landscape\":\"900\",\"responsive-breakpoint-mobile-landscape-landscape\":\"1050\",\"responsive-breakpoint-mobile-portrait\":\"700\",\"responsive-breakpoint-mobile-portrait-landscape\":\"900\",\"responsive-breakpoint-desktop-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-landscape-enabled\":\"0\",\"responsive-breakpoint-tablet-portrait-enabled\":\"1\",\"responsive-breakpoint-mobile-landscape-enabled\":\"0\",\"responsive-breakpoint-mobile-portrait-enabled\":\"1\",\"responsive-breakpoint-global\":\"0\",\"breakpoints-orientation\":\"portrait\",\"responsive-mode\":\"fullwidth\",\"responsiveSliderHeightMin\":\"0\",\"responsiveForceFull\":\"1\",\"responsiveForceFullOverflowX\":\"body\",\"responsiveForceFullHorizontalSelector\":\"body\",\"slider-size-override\":\"0\",\"slider-size-override-mobile-portrait\":\"0\",\"mobile-portrait-width\":\"320\",\"mobile-portrait-height\":\"568\",\"slider-size-override-mobile-landscape\":\"0\",\"mobile-landscape-width\":\"568\",\"mobile-landscape-height\":\"320\",\"slider-size-override-tablet-portrait\":\"0\",\"tablet-portrait-width\":\"768\",\"tablet-portrait-height\":\"1024\",\"slider-size-override-tablet-landscape\":\"0\",\"tablet-landscape-width\":\"1024\",\"tablet-landscape-height\":\"768\",\"slider-size-override-desktop-landscape\":\"0\",\"desktop-landscape-width\":\"1440\",\"desktop-landscape-height\":\"900\",\"controlsTouch\":\"horizontal\",\"controlsScroll\":\"0\",\"controlsKeyboard\":\"1\",\"widget-arrow-enabled\":\"0\",\"widgetarrow\":\"imageEmpty\",\"widget-arrow-previous\":\"thin-horizontal.svg\",\"widget-arrow-previous-image\":\"\",\"widget-arrow-previous-color\":\"ffffffcc\",\"widget-arrow-previous-hover\":\"1\",\"widget-arrow-previous-hover-color\":\"ffffffff\",\"widget-arrow-mirror\":\"1\",\"widget-arrow-next\":\"thin-horizontal.svg\",\"widget-arrow-next-image\":\"\",\"widget-arrow-next-color\":\"ffffffcc\",\"widget-arrow-next-hover\":\"0\",\"widget-arrow-next-hover-color\":\"ffffffcc\",\"widget-arrow-style\":\"\",\"widget-arrow-previous-position-mode\":\"simple\",\"widget-arrow-previous-position-area\":\"6\",\"widget-arrow-previous-position-stack\":\"1\",\"widget-arrow-previous-position-offset\":\"15\",\"widget-arrow-previous-position-horizontal\":\"left\",\"widget-arrow-previous-position-horizontal-position\":\"0\",\"widget-arrow-previous-position-horizontal-unit\":\"px\",\"widget-arrow-previous-position-vertical\":\"top\",\"widget-arrow-previous-position-vertical-position\":\"0\",\"widget-arrow-previous-position-vertical-unit\":\"px\",\"widget-arrow-next-position-mode\":\"simple\",\"widget-arrow-next-position-area\":\"7\",\"widget-arrow-next-position-stack\":\"1\",\"widget-arrow-next-position-offset\":\"15\",\"widget-arrow-next-position-horizontal\":\"left\",\"widget-arrow-next-position-horizontal-position\":\"0\",\"widget-arrow-next-position-horizontal-unit\":\"px\",\"widget-arrow-next-position-vertical\":\"top\",\"widget-arrow-next-position-vertical-position\":\"0\",\"widget-arrow-next-position-vertical-unit\":\"px\",\"widget-arrow-animation\":\"fade\",\"widget-arrow-previous-alt\":\"previous arrow\",\"widget-arrow-next-alt\":\"next arrow\",\"widget-arrow-base64\":\"1\",\"widget-arrow-display-hover\":\"0\",\"widget-arrow-display-mobileportrait\":\"0\",\"widget-arrow-display-mobilelandscape\":\"0\",\"widget-arrow-display-tabletportrait\":\"1\",\"widget-arrow-display-tabletlandscape\":\"1\",\"widget-arrow-display-desktopportrait\":\"1\",\"widget-arrow-display-desktoplandscape\":\"1\",\"widget-arrow-exclude-slides\":\"\",\"widget-bullet-enabled\":\"1\",\"widgetbullet\":\"transition\",\"widget-bullet-position-mode\":\"simple\",\"widget-bullet-position-area\":\"10\",\"widget-bullet-position-stack\":\"1\",\"widget-bullet-position-offset\":\"5\",\"widget-bullet-position-horizontal\":\"left\",\"widget-bullet-position-horizontal-position\":\"0\",\"widget-bullet-position-horizontal-unit\":\"px\",\"widget-bullet-position-vertical\":\"top\",\"widget-bullet-position-vertical-position\":\"0\",\"widget-bullet-position-vertical-unit\":\"px\",\"widget-bullet-action\":\"click\",\"widget-bullet-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"5|*|5|*|5|*|5|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\",\\\"borderradius\\\":\\\"50\\\",\\\"extra\\\":\\\"margin: 4px;\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffcc\\\",\\\"border\\\":\\\"2|*|solid|*|ffffffcc\\\"}]}\",\"widget-bullet-bar\":\"\",\"widget-bullet-bar-full-size\":\"0\",\"widget-bullet-align\":\"center\",\"widget-bullet-orientation\":\"auto\",\"widget-bullet-thumbnail-show-image\":\"0\",\"widget-bullet-thumbnail-width\":\"60\",\"widget-bullet-thumbnail-height\":\"60\",\"widget-bullet-thumbnail-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000080\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"margin: 5px;\\\"}]}\",\"widget-bullet-thumbnail-side\":\"before\",\"widget-bullet-display-hover\":\"0\",\"widget-bullet-display-mobileportrait\":\"1\",\"widget-bullet-display-mobilelandscape\":\"1\",\"widget-bullet-display-tabletportrait\":\"1\",\"widget-bullet-display-tabletlandscape\":\"1\",\"widget-bullet-display-desktopportrait\":\"1\",\"widget-bullet-display-desktoplandscape\":\"1\",\"widget-bullet-exclude-slides\":\"\",\"widget-bar-enabled\":\"0\",\"widgetbar\":\"horizontal\",\"widget-bar-position-mode\":\"simple\",\"widget-bar-position-area\":\"10\",\"widget-bar-position-stack\":\"1\",\"widget-bar-position-offset\":\"30\",\"widget-bar-position-horizontal\":\"left\",\"widget-bar-position-horizontal-position\":\"0\",\"widget-bar-position-horizontal-unit\":\"px\",\"widget-bar-position-vertical\":\"top\",\"widget-bar-position-vertical-position\":\"0\",\"widget-bar-position-vertical-unit\":\"px\",\"widget-bar-animate\":\"0\",\"widget-bar-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"5|*|20|*|5|*|20|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"40\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-bar-show-title\":\"1\",\"widget-bar-font-title\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-show-description\":\"1\",\"widget-bar-font-description\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000c7\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":1,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\",\\\"extra\\\":\\\"vertical-align: middle;\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"Raleway,Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-bar-slide-count\":\"0\",\"widget-bar-width\":\"100%\",\"widget-bar-full-width\":\"0\",\"widget-bar-separator\":\" - \",\"widget-bar-align\":\"center\",\"widget-bar-display-hover\":\"0\",\"widget-bar-display-mobileportrait\":\"1\",\"widget-bar-display-mobilelandscape\":\"1\",\"widget-bar-display-tabletportrait\":\"1\",\"widget-bar-display-tabletlandscape\":\"1\",\"widget-bar-display-desktopportrait\":\"1\",\"widget-bar-display-desktoplandscape\":\"1\",\"widget-bar-exclude-slides\":\"\",\"widget-thumbnail-enabled\":\"0\",\"widgetthumbnail\":\"default\",\"widget-thumbnail-show-image\":\"1\",\"widget-thumbnail-width\":\"100\",\"widget-thumbnail-height\":\"60\",\"widget-thumbnail-position-mode\":\"simple\",\"widget-thumbnail-position-area\":\"12\",\"widget-thumbnail-position-stack\":\"1\",\"widget-thumbnail-position-offset\":\"0\",\"widget-thumbnail-position-horizontal\":\"left\",\"widget-thumbnail-position-horizontal-position\":\"0\",\"widget-thumbnail-position-horizontal-unit\":\"px\",\"widget-thumbnail-position-vertical\":\"top\",\"widget-thumbnail-position-vertical-position\":\"0\",\"widget-thumbnail-position-vertical-unit\":\"px\",\"widget-thumbnail-action\":\"click\",\"widget-thumbnail-align-content\":\"start\",\"widget-thumbnail-style-bar\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"242424ff\\\",\\\"padding\\\":\\\"3|*|3|*|3|*|3|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-style-slides\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"00000000\\\",\\\"padding\\\":\\\"0|*|0|*|0|*|0|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|ffffff00\\\",\\\"borderradius\\\":\\\"0\\\",\\\"opacity\\\":\\\"40\\\",\\\"extra\\\":\\\"margin: 3px;\\ntransition: all 0.4s;\\nbackground-size: cover;\\\"},{\\\"border\\\":\\\"0|*|solid|*|ffffffcc\\\",\\\"opacity\\\":\\\"100\\\",\\\"extra\\\":\\\"\\\"}]}\",\"widget-thumbnail-title-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"3|*|10|*|3|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"0\\\",\\\"extra\\\":\\\"bottom: 0;\\nleft: 0;\\\"}]}\",\"widget-thumbnail-title\":\"0\",\"widget-thumbnail-title-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-description\":\"0\",\"widget-thumbnail-description-font\":\"{\\\"data\\\":[{\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"12||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ab\\\",\\\"afont\\\":\\\"Montserrat\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"bold\\\":0,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"left\\\"},{\\\"color\\\":\\\"fc2828ff\\\",\\\"afont\\\":\\\"google(@import url(http://fonts.googleapis.com/css?family=Raleway);),Arial\\\",\\\"size\\\":\\\"25||px\\\"},{}]}\",\"widget-thumbnail-caption-placement\":\"overlay\",\"widget-thumbnail-caption-size\":\"100\",\"widget-thumbnail-arrow\":\"1\",\"widget-thumbnail-arrow-width\":\"26\",\"widget-thumbnail-arrow-offset\":\"0\",\"widget-thumbnail-arrow-prev-alt\":\"previous arrow\",\"widget-thumbnail-arrow-next-alt\":\"next arrow\",\"widget-thumbnail-arrow-image\":\"\",\"widget-thumbnail-group\":\"1\",\"widget-thumbnail-invert-group-direction\":\"0\",\"widget-thumbnail-orientation\":\"auto\",\"widget-thumbnail-size\":\"100%\",\"widget-thumbnail-display-hover\":\"0\",\"widget-thumbnail-display-mobileportrait\":\"1\",\"widget-thumbnail-display-mobilelandscape\":\"1\",\"widget-thumbnail-display-tabletportrait\":\"1\",\"widget-thumbnail-display-tabletlandscape\":\"1\",\"widget-thumbnail-display-desktopportrait\":\"1\",\"widget-thumbnail-display-desktoplandscape\":\"1\",\"widget-thumbnail-exclude-slides\":\"\",\"widget-shadow-enabled\":\"0\",\"widgetshadow\":\"shadow\",\"widget-shadow-shadow\":\"dark.png\",\"widget-shadow-shadow-image\":\"\",\"widget-shadow-width\":\"100%\",\"widget-shadow-display-mobileportrait\":\"1\",\"widget-shadow-display-mobilelandscape\":\"1\",\"widget-shadow-display-tabletportrait\":\"1\",\"widget-shadow-display-tabletlandscape\":\"1\",\"widget-shadow-display-desktopportrait\":\"1\",\"widget-shadow-display-desktoplandscape\":\"1\",\"widget-shadow-exclude-slides\":\"\",\"widget-fullscreen-enabled\":\"0\",\"widgetfullscreen\":\"image\",\"widget-fullscreen-tonormal\":\"full1.svg\",\"widget-fullscreen-tonormal-image\":\"\",\"widget-fullscreen-tonormal-color\":\"ffffffcc\",\"widget-fullscreen-mirror\":\"1\",\"widget-fullscreen-tofull\":\"full1.svg\",\"widget-fullscreen-tofull-image\":\"\",\"widget-fullscreen-tofull-color\":\"ffffffcc\",\"widget-fullscreen-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-fullscreen-position-mode\":\"simple\",\"widget-fullscreen-position-area\":\"4\",\"widget-fullscreen-position-stack\":\"1\",\"widget-fullscreen-position-offset\":\"15\",\"widget-fullscreen-position-horizontal\":\"left\",\"widget-fullscreen-position-horizontal-position\":\"0\",\"widget-fullscreen-position-horizontal-unit\":\"px\",\"widget-fullscreen-position-vertical\":\"top\",\"widget-fullscreen-position-vertical-position\":\"0\",\"widget-fullscreen-position-vertical-unit\":\"px\",\"widget-fullscreen-responsive-desktop\":\"1\",\"widget-fullscreen-responsive-tablet\":\"0.7\",\"widget-fullscreen-responsive-mobile\":\"0.5\",\"widget-fullscreen-display-hover\":\"0\",\"widget-fullscreen-display-mobileportrait\":\"1\",\"widget-fullscreen-display-mobilelandscape\":\"1\",\"widget-fullscreen-display-tabletportrait\":\"1\",\"widget-fullscreen-display-tabletlandscape\":\"1\",\"widget-fullscreen-display-desktopportrait\":\"1\",\"widget-fullscreen-display-desktoplandscape\":\"1\",\"widget-fullscreen-exclude-slides\":\"\",\"widget-html-enabled\":\"0\",\"widgethtml\":\"html\",\"widget-html-position-mode\":\"simple\",\"widget-html-position-area\":\"2\",\"widget-html-position-stack\":\"1\",\"widget-html-position-offset\":\"0\",\"widget-html-position-horizontal\":\"left\",\"widget-html-position-horizontal-position\":\"0\",\"widget-html-position-horizontal-unit\":\"px\",\"widget-html-position-vertical\":\"top\",\"widget-html-position-vertical-position\":\"0\",\"widget-html-position-vertical-unit\":\"px\",\"widget-html-code\":\"\",\"widget-html-display-hover\":\"0\",\"widget-html-display-mobileportrait\":\"1\",\"widget-html-display-mobilelandscape\":\"1\",\"widget-html-display-tabletportrait\":\"1\",\"widget-html-display-tabletlandscape\":\"1\",\"widget-html-display-desktopportrait\":\"1\",\"widget-html-display-desktoplandscape\":\"1\",\"widget-html-exclude-slides\":\"\",\"animation\":\"fade\",\"animation-duration\":\"500\",\"animation-delay\":\"0\",\"animation-easing\":\"easeOutQuad\",\"carousel\":\"1\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"normal\",\"animation-shifted-background-animation\":\"auto\",\"kenburns-animation\":\"50|*|50|*|\",\"kenburns-animation-speed\":\"default\",\"kenburns-animation-strength\":\"default\",\"shape-divider\":\"\",\"particle\":\"\",\"playfirstlayer\":\"1\",\"playonce\":\"0\",\"layer-animation-play-in\":\"end\",\"layer-animation-play-mode\":\"skippable\",\"parallax-enabled\":\"1\",\"parallax-enabled-mobile\":\"0\",\"parallax-3d\":\"0\",\"parallax-animate\":\"1\",\"parallax-horizontal\":\"mouse\",\"parallax-vertical\":\"mouse\",\"parallax-mouse-origin\":\"slider\",\"parallax-scroll-move\":\"both\",\"autoplay\":\"0\",\"autoplayDuration\":\"8000\",\"autoplayStart\":\"1\",\"autoplayAllowReStart\":\"0\",\"autoplayLoop\":\"1\",\"autoplayfinish\":\"1|*|loop|*|current\",\"loop-single-slide\":\"0\",\"autoplayStopClick\":\"1\",\"autoplayStopMouse\":\"0\",\"autoplayStopMedia\":\"1\",\"autoplayResumeClick\":\"0\",\"autoplayResumeMouse\":\"0\",\"autoplayResumeMedia\":\"1\",\"widget-autoplay-enabled\":\"0\",\"widgetautoplay\":\"image\",\"widget-autoplay-play\":\"small-light.svg\",\"widget-autoplay-play-image\":\"\",\"widget-autoplay-play-color\":\"ffffffcc\",\"widget-autoplay-style\":\"{\\\"data\\\":[{\\\"backgroundcolor\\\":\\\"000000ab\\\",\\\"padding\\\":\\\"10|*|10|*|10|*|10|*|px\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"3\\\",\\\"extra\\\":\\\"\\\"},{\\\"backgroundcolor\\\":\\\"000000ab\\\"}]}\",\"widget-autoplay-mirror\":\"1\",\"widget-autoplay-pause\":\"small-light.svg\",\"widget-autoplay-pause-image\":\"\",\"widget-autoplay-pause-color\":\"ffffffcc\",\"widget-autoplay-responsive-desktop\":\"1\",\"widget-autoplay-responsive-tablet\":\"0.7\",\"widget-autoplay-responsive-mobile\":\"0.5\",\"widget-autoplay-position-mode\":\"simple\",\"widget-autoplay-position-area\":\"4\",\"widget-autoplay-position-stack\":\"1\",\"widget-autoplay-position-offset\":\"15\",\"widget-autoplay-position-horizontal\":\"left\",\"widget-autoplay-position-horizontal-position\":\"0\",\"widget-autoplay-position-horizontal-unit\":\"px\",\"widget-autoplay-position-vertical\":\"top\",\"widget-autoplay-position-vertical-position\":\"0\",\"widget-autoplay-position-vertical-unit\":\"px\",\"widget-autoplay-display-hover\":\"0\",\"widget-autoplay-display-mobileportrait\":\"1\",\"widget-autoplay-display-mobilelandscape\":\"1\",\"widget-autoplay-display-tabletportrait\":\"1\",\"widget-autoplay-display-tabletlandscape\":\"1\",\"widget-autoplay-display-desktopportrait\":\"1\",\"widget-autoplay-display-desktoplandscape\":\"1\",\"widget-autoplay-exclude-slides\":\"\",\"widget-indicator-enabled\":\"0\",\"widgetindicator\":\"pie\",\"widget-indicator-position-mode\":\"simple\",\"widget-indicator-position-area\":\"4\",\"widget-indicator-position-stack\":\"1\",\"widget-indicator-position-offset\":\"15\",\"widget-indicator-position-horizontal\":\"left\",\"widget-indicator-position-horizontal-position\":\"0\",\"widget-indicator-position-horizontal-unit\":\"px\",\"widget-indicator-position-vertical\":\"top\",\"widget-indicator-position-vertical-position\":\"0\",\"widget-indicator-position-vertical-unit\":\"px\",\"widget-indicator-size\":\"25\",\"widget-indicator-thickness\":\"30\",\"widget-indicator-track\":\"000000ab\",\"widget-indicator-bar\":\"ffffffff\",\"widget-indicator-style\":\"\",\"widget-indicator-display-hover\":\"0\",\"widget-indicator-display-mobileportrait\":\"1\",\"widget-indicator-display-mobilelandscape\":\"1\",\"widget-indicator-display-tabletportrait\":\"1\",\"widget-indicator-display-tabletlandscape\":\"1\",\"widget-indicator-display-desktopportrait\":\"1\",\"widget-indicator-display-desktoplandscape\":\"1\",\"widget-indicator-exclude-slides\":\"\",\"imageload\":\"0\",\"imageloadNeighborSlides\":\"0\",\"optimize-scale\":\"0\",\"optimize-quality\":\"70\",\"optimize-thumbnail-scale\":\"0\",\"optimize-thumbnail-quality\":\"70\",\"optimize-slide-width-normal\":\"1920\",\"optimizeThumbnailWidth\":\"100\",\"optimizeThumbnailHeight\":\"60\",\"layer-image-optimize\":\"0\",\"layer-image-width-tablet\":\"800\",\"layer-image-width-mobile\":\"425\",\"layer-image-base64\":\"0\",\"layer-image-base64-size\":\"50\",\"slides-background-video-mobile\":\"1\",\"playWhenVisible\":\"1\",\"playWhenVisibleAt\":\"50\",\"dependency\":\"\",\"delay\":\"0\",\"is-delayed\":\"0\",\"backgroundMode\":\"fill\",\"slide-css\":\"\",\"randomize\":\"0\",\"randomizeFirst\":\"0\",\"randomize-cache\":\"1\",\"variations\":\"5\",\"reverse-slides\":\"0\",\"maximumslidecount\":\"1000\",\"maintain-session\":\"0\",\"global-lightbox\":\"0\",\"global-lightbox-label\":\"0\",\"slide-background-parallax\":\"0\",\"slide-background-parallax-strength\":\"50\",\"bg-parallax-tablet\":\"0\",\"bg-parallax-mobile\":\"0\",\"blockrightclick\":\"0\",\"controlsBlockCarouselInteraction\":\"1\",\"clear-both\":\"1\",\"clear-both-after\":\"1\",\"overflow-hidden-page\":\"0\",\"responsiveFocusUser\":\"1\",\"responsiveFocusEdge\":\"auto\",\"classes\":\"\",\"custom-css-codes\":\"\",\"callbacks\":\"\",\"related-posts\":\"\"}','published','2020-02-25 13:53:41','https://smartslider3.com/wp-content/uploads/slider404/tutorialsliderthumbnail-1.png',0);
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_sliders` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_smartslider3_sliders_xref`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_smartslider3_sliders_xref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_smartslider3_sliders_xref` (
`group_id` int NOT NULL,
`slider_id` int NOT NULL,
`ordering` int NOT NULL DEFAULT '0',
PRIMARY KEY (`group_id`,`slider_id`),
KEY `ordering` (`ordering`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_smartslider3_sliders_xref`
--
LOCK TABLES `jnx5e_nextend2_smartslider3_sliders_xref` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_sliders_xref` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_sliders_xref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_nextend2_smartslider3_slides`
--
DROP TABLE IF EXISTS `jnx5e_nextend2_smartslider3_slides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_nextend2_smartslider3_slides` (
`id` int NOT NULL AUTO_INCREMENT,
`title` text COLLATE utf8mb4_unicode_ci,
`slider` int NOT NULL,
`publish_up` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
`publish_down` datetime NOT NULL DEFAULT '1970-01-01 00:00:00',
`published` tinyint(1) NOT NULL,
`first` int NOT NULL,
`slide` longtext COLLATE utf8mb4_unicode_ci,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`thumbnail` text COLLATE utf8mb4_unicode_ci,
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ordering` int NOT NULL,
`generator_id` int NOT NULL,
PRIMARY KEY (`id`),
KEY `published` (`published`),
KEY `publish_up` (`publish_up`),
KEY `publish_down` (`publish_down`),
KEY `generator_id` (`generator_id`),
KEY `ordering` (`ordering`),
KEY `slider` (`slider`),
KEY `thumbnail` (`thumbnail`(100))
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_nextend2_smartslider3_slides`
--
LOCK TABLES `jnx5e_nextend2_smartslider3_slides` WRITE;
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_slides` DISABLE KEYS */;
INSERT INTO `jnx5e_nextend2_smartslider3_slides` VALUES (1,'Slide Background',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-IbNOabpfT5aE\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-dtwtw9DVCwgQ\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-Fjvyu081qJeK\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"01. Slide Background\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Every slide includes a background, which can be a picture or solid color.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To change the background click on the label bar and in the layer window select the style tab.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Choose a source from the background top tab then upload an image or pick a background color.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-LnImbm1HgUAv\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/background.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/slidebackground.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide1.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',1,0),(2,'Build & Design',1,'1970-01-01 00:00:00','1970-01-01 00:00:00',1,0,'[{\"type\":\"content\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":1120,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitselfalign\":\"center\",\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-TPnUuKlAWVoC\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"layers\":[{\"type\":\"row\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitinneralign\":\"inherit\",\"desktopportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"desktopportraitgutter\":0,\"desktopportraitwrapafter\":0,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"tabletportraitgutter\":20,\"mobileportraitinneralign\":\"inherit\",\"mobileportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"mobileportraitgutter\":20,\"mobileportraitwrapafter\":1,\"mobileportraitmaxwidth\":400,\"mobileportraitselfalign\":\"inherit\",\"mobilelandscapewrapafter\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-NmnNQvKK01kO\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"_self\",\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"ffffff00\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"borderwidth\":\"1|*|1|*|1|*|1\",\"borderstyle\":\"none\",\"bordercolor\":\"FFFFFFFF\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"fullwidth\":1,\"stretch\":0,\"name\":\"Row\",\"namesynced\":1,\"cols\":[{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"10|*|10|*|10|*|10|*|px\",\"desktopportraitorder\":0,\"tabletportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitmaxwidth\":0,\"mobileportraitinneralign\":\"left\",\"mobileportraitpadding\":\"10|*|0|*|10|*|0|*|px\",\"mobileportraitorder\":2,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-R5Jkk06Nmzr4\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"2/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":60,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Jeans Store Interior\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"36||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.2\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"02. Build & Design\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Lorem ipsum dolor sit amet, consect\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"24||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.3\\\",\\\"weight\\\":300,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Build any layout with layers and customize your designs limitlessly.\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 1\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"To add a layer, click the green plus button in the left sidebar and select the type of layer.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":100,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Latest Project\",\"namesynced\":1,\"item\":{\"type\":\"heading\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffdb\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"uppercase\\\"},{\\\"extra\\\":\\\"\\\"}]}\",\"style\":\"\",\"priority\":\"div\",\"fullwidth\":\"1\",\"nowrap\":\"0\",\"heading\":\"Step 2\",\"title\":\"\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"split-text-transform-origin\":\"50|*|50|*|0\",\"split-text-backface-visibility\":\"1\",\"split-text-animation-in\":\"\",\"split-text-delay-in\":\"0\",\"split-text-animation-out\":\"\",\"split-text-delay-out\":\"0\",\"class\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":90,\"mobileportraitfontsize\":70,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Text\",\"namesynced\":1,\"item\":{\"type\":\"text\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffb0\\\",\\\"size\\\":\\\"18||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.6\\\",\\\"weight\\\":400,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"inherit\\\",\\\"letterspacing\\\":\\\"normal\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"1890d7ff\\\"}]}\",\"style\":\"\",\"content\":\"Select any layer and you can edit its content and style properties in the layer window.\",\"content-tablet-enabled\":\"0\",\"contenttablet\":\"\",\"content-mobile-enabled\":\"0\",\"contentmobile\":\"\"}}},{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"20|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"tabletportraitfontsize\":80,\"mobileportraitfontsize\":80,\"mobileportraitmargin\":\"10|*|0|*|0|*|0|*|px\",\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Read More\",\"namesynced\":1,\"item\":{\"type\":\"button\",\"values\":{\"font\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"ffffffff\\\",\\\"size\\\":\\\"14||px\\\",\\\"tshadow\\\":\\\"0|*|0|*|0|*|000000ff\\\",\\\"afont\\\":\\\"Roboto\\\",\\\"lineheight\\\":\\\"1.5\\\",\\\"weight\\\":1,\\\"italic\\\":0,\\\"underline\\\":0,\\\"align\\\":\\\"center\\\",\\\"letterspacing\\\":\\\"1px\\\",\\\"wordspacing\\\":\\\"normal\\\",\\\"texttransform\\\":\\\"none\\\"},{\\\"extra\\\":\\\"\\\",\\\"color\\\":\\\"0568f6ff\\\"}]}\",\"style\":\"{\\\"data\\\":[{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"0568f6ff\\\",\\\"opacity\\\":100,\\\"padding\\\":\\\"1|*|2|*|1|*|2|*|em\\\",\\\"boxshadow\\\":\\\"0|*|0|*|0|*|0|*|000000ff\\\",\\\"border\\\":\\\"0|*|solid|*|000000ff\\\",\\\"borderradius\\\":\\\"5\\\"},{\\\"extra\\\":\\\"\\\",\\\"backgroundcolor\\\":\\\"ffffffff\\\"}]}\",\"content\":\"Next Slide\",\"nowrap\":\"1\",\"fullwidth\":\"0\",\"href\":\"NextSlide[]\",\"href-target\":\"_self\",\"href-rel\":\"\",\"class\":\"\",\"icon\":\"\",\"iconsize\":\"100\",\"iconspacing\":\"30\",\"iconplacement\":\"left\"}}}]},{\"type\":\"col\",\"pm\":\"default\",\"desktopportraitfontsize\":100,\"desktopportraitmaxwidth\":0,\"desktopportraitinneralign\":\"left\",\"desktopportraitpadding\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitorder\":0,\"mobileportraitinneralign\":\"center\",\"mobileportraitorder\":1,\"opened\":1,\"id\":\"\",\"uniqueclass\":\"n-uc-iYi6ZKk8yeVp\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"bgimage\":\"\",\"bgimagex\":50,\"bgimagey\":50,\"bgcolor\":\"00000000\",\"bgcolorgradient\":\"off\",\"bgcolorgradientend\":\"00000000\",\"verticalalign\":\"center\",\"colwidth\":\"3/5\",\"href\":\"\",\"href-target\":\"_self\",\"borderradius\":0,\"boxshadow\":\"0|*|0|*|0|*|0|*|00000080\",\"borderwidth\":\"0|*|0|*|0|*|0\",\"borderstyle\":\"solid\",\"bordercolor\":\"ffffffff\",\"name\":\"Column\",\"namesynced\":1,\"layers\":[{\"type\":\"layer\",\"pm\":\"normal\",\"desktopportraitfontsize\":100,\"desktopportraitmargin\":\"0|*|0|*|0|*|0|*|px\",\"desktopportraitheight\":0,\"desktopportraitmaxwidth\":0,\"desktopportraitselfalign\":\"inherit\",\"mobileportraitmaxwidth\":300,\"id\":\"\",\"uniqueclass\":\"\",\"generatorvisible\":\"\",\"zindex\":2,\"class\":\"\",\"crop\":\"visible\",\"rotation\":0,\"parallax\":0,\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"name\":\"Image\",\"namesynced\":1,\"item\":{\"type\":\"image\",\"values\":{\"image\":\"https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.png\",\"href\":\"#\",\"href-target\":\"_self\",\"href-rel\":\"\",\"size\":\"auto|*|auto\",\"alt\":\"\",\"title\":\"\",\"href-class\":\"\"}}}]}]}]}]','','https://smartslider3.com/wp-content/uploads/slider424/buildanddesign.jpg','{\"type\":\"slide\",\"desktopportraitfontsize\":100,\"desktopportraitpadding\":\"10|*|60|*|10|*|60\",\"tabletportraitpadding\":\"10|*|50|*|10|*|50\",\"mobileportraitpadding\":\"10|*|10|*|35|*|10\",\"record-slides\":0,\"thumbnailType\":\"default\",\"static-slide\":0,\"slide-duration\":0,\"ligthboxImage\":\"\",\"background-animation\":\"\",\"background-animation-color\":\"333333ff\",\"background-animation-speed\":\"default\",\"desktopportrait\":1,\"desktoplandscape\":1,\"tabletportrait\":1,\"tabletlandscape\":1,\"mobileportrait\":1,\"mobilelandscape\":1,\"href\":\"\",\"href-target\":\"\",\"background-type\":\"image\",\"backgroundColor\":\"ffffff00\",\"backgroundGradient\":\"off\",\"backgroundColorEnd\":\"ffffff00\",\"backgroundColorOverlay\":0,\"backgroundImage\":\"https://smartslider3.com/wp-content/uploads/slider424/slide2.png\",\"backgroundFocusX\":50,\"backgroundFocusY\":50,\"backgroundImageOpacity\":100,\"backgroundImageBlur\":0,\"backgroundAlt\":\"\",\"backgroundTitle\":\"\",\"backgroundMode\":\"default\",\"guides\":\"eyJob3Jpem9udGFsIjpbXSwidmVydGljYWwiOltdfQ==\",\"version\":\"3.4.0\"}',2,0);
/*!40000 ALTER TABLE `jnx5e_nextend2_smartslider3_slides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_overrider`
--
DROP TABLE IF EXISTS `jnx5e_overrider`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_overrider` (
`id` int NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`constant` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`string` text COLLATE utf8mb4_unicode_ci NOT NULL,
`file` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_overrider`
--
LOCK TABLES `jnx5e_overrider` WRITE;
/*!40000 ALTER TABLE `jnx5e_overrider` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_overrider` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`catid` int NOT NULL DEFAULT '0',
`sectionid` int NOT NULL DEFAULT '0',
`sid` int NOT NULL DEFAULT '0',
`owner_id` int NOT NULL DEFAULT '0',
`title` varchar(250) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`project_name` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(250) NOT NULL DEFAULT '',
`filename_play` varchar(250) NOT NULL DEFAULT '',
`filename_preview` varchar(250) NOT NULL DEFAULT '',
`filesize` int NOT NULL DEFAULT '0',
`author` varchar(255) NOT NULL DEFAULT '',
`author_email` varchar(255) NOT NULL DEFAULT '',
`author_url` varchar(255) NOT NULL DEFAULT '',
`license` varchar(255) NOT NULL DEFAULT '',
`license_url` varchar(255) NOT NULL DEFAULT '',
`image_filename` varchar(255) NOT NULL DEFAULT '',
`image_filename_spec1` varchar(255) NOT NULL DEFAULT '',
`image_filename_spec2` varchar(255) NOT NULL DEFAULT '',
`image_download` varchar(255) NOT NULL DEFAULT '',
`video_filename` varchar(255) NOT NULL DEFAULT '',
`link_external` varchar(255) NOT NULL DEFAULT '',
`mirror1link` varchar(255) NOT NULL DEFAULT '',
`mirror1title` varchar(255) NOT NULL DEFAULT '',
`mirror1target` varchar(10) NOT NULL DEFAULT '',
`mirror2link` varchar(255) NOT NULL DEFAULT '',
`mirror2title` varchar(255) NOT NULL DEFAULT '',
`mirror2target` varchar(10) NOT NULL DEFAULT '',
`description` text,
`features` text,
`changelog` text,
`notes` text,
`userid` int NOT NULL DEFAULT '0',
`version` varchar(255) NOT NULL DEFAULT '',
`directlink` tinyint(1) NOT NULL DEFAULT '0',
`date` datetime NOT NULL,
`publish_up` datetime NOT NULL,
`publish_down` datetime NOT NULL,
`hits` int NOT NULL DEFAULT '0',
`textonly` tinyint(1) NOT NULL DEFAULT '0',
`published` tinyint(1) NOT NULL DEFAULT '0',
`approved` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '0',
`confirm_license` int NOT NULL DEFAULT '0',
`unaccessible_file` int NOT NULL DEFAULT '0',
`token` char(64) DEFAULT NULL,
`tokenhits` int NOT NULL DEFAULT '0',
`tags_string` varchar(255) NOT NULL DEFAULT '',
`params` text,
`metakey` text,
`metadesc` text,
`metadata` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `catid` (`catid`,`published`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload`
--
LOCK TABLES `jnx5e_phocadownload` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload` DISABLE KEYS */;
INSERT INTO `jnx5e_phocadownload` VALUES (1,1,0,0,0,'ACTA SESION EXTRAORDINARIA N° 006 DE 2024.','acta-sesion-extraordinaria-n-006-de-2024','','normatividad/ACTA SESION EXTRAORDINARIA N° 006 DE 2024..pdf','','normatividad/ACTA SESION EXTRAORDINARIA N° 006 DE 2024..pdf',0,'','','','','','','','','','','','','','_self','','','_self','<p>\"por la cual se aprueba aaaaadsasfas jlsdjflj lk dasñfkj\"</p>','','','',0,'',0,'2024-10-23 14:39:21','2024-10-23 14:39:21','0000-00-00 00:00:00',0,0,1,1,0,'0000-00-00 00:00:00',1,1,0,0,'',0,'',NULL,'','',NULL,'*');
/*!40000 ALTER TABLE `jnx5e_phocadownload` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_categories`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_categories` (
`id` int NOT NULL AUTO_INCREMENT,
`parent_id` int NOT NULL DEFAULT '0',
`section` int NOT NULL DEFAULT '0',
`title` varchar(255) NOT NULL DEFAULT '',
`name` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`project_name` varchar(255) NOT NULL DEFAULT '',
`image` varchar(255) NOT NULL DEFAULT '',
`image_position` varchar(30) NOT NULL DEFAULT '',
`description` text,
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`editor` varchar(50) DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`access` int unsigned NOT NULL DEFAULT '0',
`uploaduserid` text,
`accessuserid` text,
`deleteuserid` text,
`date` datetime NOT NULL,
`count` int NOT NULL DEFAULT '0',
`hits` int NOT NULL DEFAULT '0',
`params` text,
`metakey` text,
`metadesc` text,
`metadata` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `cat_idx` (`section`,`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_categories`
--
LOCK TABLES `jnx5e_phocadownload_categories` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_categories` DISABLE KEYS */;
INSERT INTO `jnx5e_phocadownload_categories` VALUES (1,0,0,'Normatividad','','normatividad','','','','',1,0,'0000-00-00 00:00:00',NULL,1,1,'0','0','0','2024-10-23 14:36:42',0,0,NULL,'','',NULL,'*');
/*!40000 ALTER TABLE `jnx5e_phocadownload_categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_file_votes`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_file_votes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_file_votes` (
`id` int NOT NULL AUTO_INCREMENT,
`fileid` int NOT NULL DEFAULT '0',
`userid` int NOT NULL DEFAULT '0',
`date` datetime NOT NULL,
`rating` tinyint(1) NOT NULL DEFAULT '0',
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_file_votes`
--
LOCK TABLES `jnx5e_phocadownload_file_votes` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_file_votes` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_file_votes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_file_votes_statistics`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_file_votes_statistics`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_file_votes_statistics` (
`id` int NOT NULL AUTO_INCREMENT,
`fileid` int NOT NULL DEFAULT '0',
`count` int NOT NULL DEFAULT '0',
`average` float(8,6) NOT NULL DEFAULT '0.000000',
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_file_votes_statistics`
--
LOCK TABLES `jnx5e_phocadownload_file_votes_statistics` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_file_votes_statistics` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_file_votes_statistics` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_layout`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_layout`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_layout` (
`id` int NOT NULL AUTO_INCREMENT,
`categories` text,
`category` text,
`file` text,
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`params` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_layout`
--
LOCK TABLES `jnx5e_phocadownload_layout` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_layout` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_layout` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_licenses`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_licenses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_licenses` (
`id` int NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`description` text,
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`published` tinyint(1) NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_licenses`
--
LOCK TABLES `jnx5e_phocadownload_licenses` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_licenses` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_licenses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_logging`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_logging`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_logging` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`fileid` int NOT NULL DEFAULT '0',
`catid` int NOT NULL DEFAULT '0',
`userid` int NOT NULL DEFAULT '0',
`ip` varchar(50) NOT NULL DEFAULT '',
`page` varchar(255) NOT NULL,
`date` datetime NOT NULL,
`type` tinyint(1) NOT NULL DEFAULT '0',
`params` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_logging`
--
LOCK TABLES `jnx5e_phocadownload_logging` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_logging` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_logging` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_styles`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_styles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_styles` (
`id` int NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`filename` varchar(255) NOT NULL DEFAULT '',
`menulink` text,
`type` tinyint(1) NOT NULL DEFAULT '0',
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_styles`
--
LOCK TABLES `jnx5e_phocadownload_styles` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_styles` DISABLE KEYS */;
INSERT INTO `jnx5e_phocadownload_styles` VALUES (1,'Phocadownload','phocadownload','phocadownload.css',NULL,1,1,0,'0000-00-00 00:00:00',1,NULL,'*'),(2,'Rating','rating','rating.css',NULL,1,1,0,'0000-00-00 00:00:00',2,NULL,'*'),(5,'Default','default','default.css',NULL,2,1,0,'0000-00-00 00:00:00',1,NULL,'*');
/*!40000 ALTER TABLE `jnx5e_phocadownload_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_tags`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_tags` (
`id` int NOT NULL AUTO_INCREMENT,
`title` varchar(255) NOT NULL DEFAULT '',
`alias` varchar(255) NOT NULL DEFAULT '',
`link_ext` varchar(255) NOT NULL DEFAULT '',
`link_cat` int unsigned NOT NULL DEFAULT '0',
`description` text,
`published` tinyint(1) NOT NULL DEFAULT '0',
`checked_out` int unsigned NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`ordering` int NOT NULL DEFAULT '0',
`params` text,
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_tags`
--
LOCK TABLES `jnx5e_phocadownload_tags` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_tags` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_tags_ref`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_tags_ref`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_tags_ref` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`fileid` int NOT NULL DEFAULT '0',
`tagid` int NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `id` (`id`),
UNIQUE KEY `i_fileid` (`fileid`,`tagid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_tags_ref`
--
LOCK TABLES `jnx5e_phocadownload_tags_ref` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_tags_ref` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_tags_ref` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_phocadownload_user_stat`
--
DROP TABLE IF EXISTS `jnx5e_phocadownload_user_stat`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_phocadownload_user_stat` (
`id` int NOT NULL AUTO_INCREMENT,
`fileid` int NOT NULL DEFAULT '0',
`userid` int NOT NULL DEFAULT '0',
`count` int NOT NULL DEFAULT '0',
`date` datetime NOT NULL,
`published` tinyint(1) NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`language` char(7) NOT NULL DEFAULT '',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_phocadownload_user_stat`
--
LOCK TABLES `jnx5e_phocadownload_user_stat` WRITE;
/*!40000 ALTER TABLE `jnx5e_phocadownload_user_stat` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_phocadownload_user_stat` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_postinstall_messages`
--
DROP TABLE IF EXISTS `jnx5e_postinstall_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_postinstall_messages` (
`postinstall_message_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`extension_id` bigint NOT NULL DEFAULT '700' COMMENT 'FK to #__extensions',
`title_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Lang key for the title',
`description_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Lang key for description',
`action_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`language_extension` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'com_postinstall' COMMENT 'Extension holding lang keys',
`language_client_id` tinyint NOT NULL DEFAULT '1',
`type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'link' COMMENT 'Message type - message, link, action',
`action_file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'RAD URI to the PHP file containing action method',
`action` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT '' COMMENT 'Action method name or URL',
`condition_file` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'RAD URI to file holding display condition method',
`condition_method` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Display condition method, must return boolean',
`version_introduced` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '3.2.0' COMMENT 'Version when this message was introduced',
`enabled` tinyint NOT NULL DEFAULT '1',
PRIMARY KEY (`postinstall_message_id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_postinstall_messages`
--
LOCK TABLES `jnx5e_postinstall_messages` WRITE;
/*!40000 ALTER TABLE `jnx5e_postinstall_messages` DISABLE KEYS */;
INSERT INTO `jnx5e_postinstall_messages` VALUES (1,240,'COM_CPANEL_WELCOME_BEGINNERS_TITLE','COM_CPANEL_WELCOME_BEGINNERS_MESSAGE','','com_cpanel',1,'message','','','','','3.2.0',1),(2,240,'COM_CPANEL_MSG_STATS_COLLECTION_TITLE','COM_CPANEL_MSG_STATS_COLLECTION_BODY','','com_cpanel',1,'message','','','admin://components/com_admin/postinstall/statscollection.php','admin_postinstall_statscollection_condition','3.5.0',1),(3,240,'PLG_SYSTEM_HTTPHEADERS_POSTINSTALL_INTRODUCTION_TITLE','PLG_SYSTEM_HTTPHEADERS_POSTINSTALL_INTRODUCTION_BODY','PLG_SYSTEM_HTTPHEADERS_POSTINSTALL_INTRODUCTION_ACTION','plg_system_httpheaders',1,'action','site://plugins/system/httpheaders/postinstall/introduction.php','httpheaders_postinstall_action','site://plugins/system/httpheaders/postinstall/introduction.php','httpheaders_postinstall_condition','4.0.0',1),(4,240,'COM_USERS_POSTINSTALL_MULTIFACTORAUTH_TITLE','COM_USERS_POSTINSTALL_MULTIFACTORAUTH_BODY','COM_USERS_POSTINSTALL_MULTIFACTORAUTH_ACTION','com_users',1,'action','admin://components/com_users/postinstall/multifactorauth.php','com_users_postinstall_mfa_action','admin://components/com_users/postinstall/multifactorauth.php','com_users_postinstall_mfa_condition','4.2.0',1),(5,240,'COM_JOOMLAUPDATE_POSTINSTALL_MSG_AUTOMATED_UPDATES_TITLE','COM_JOOMLAUPDATE_POSTINSTALL_MSG_AUTOMATED_UPDATES_DESCRIPTION','COM_JOOMLAUPDATE_POSTINSTALL_MSG_AUTOMATED_UPDATES_ACTION','com_joomlaupdate',1,'action','admin://components/com_joomlaupdate/postinstall/autoupdate.php','com_joomlaupdate_postinstall_autoupdate_action','admin://components/com_joomlaupdate/postinstall/autoupdate.php','com_joomlaupdate_postinstall_autoupdate_condition','5.4.0',1);
/*!40000 ALTER TABLE `jnx5e_postinstall_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_privacy_consents`
--
DROP TABLE IF EXISTS `jnx5e_privacy_consents`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_privacy_consents` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned NOT NULL DEFAULT '0',
`state` int NOT NULL DEFAULT '1',
`created` datetime NOT NULL,
`subject` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`remind` tinyint NOT NULL DEFAULT '0',
`token` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_privacy_consents`
--
LOCK TABLES `jnx5e_privacy_consents` WRITE;
/*!40000 ALTER TABLE `jnx5e_privacy_consents` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_privacy_consents` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_privacy_requests`
--
DROP TABLE IF EXISTS `jnx5e_privacy_requests`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_privacy_requests` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`requested_at` datetime NOT NULL,
`status` tinyint NOT NULL DEFAULT '0',
`request_type` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`confirm_token` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`confirm_token_created_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_privacy_requests`
--
LOCK TABLES `jnx5e_privacy_requests` WRITE;
/*!40000 ALTER TABLE `jnx5e_privacy_requests` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_privacy_requests` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_redirect_links`
--
DROP TABLE IF EXISTS `jnx5e_redirect_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_redirect_links` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`old_url` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL,
`new_url` varchar(2048) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`referer` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL,
`comment` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`hits` int unsigned NOT NULL DEFAULT '0',
`published` tinyint NOT NULL,
`created_date` datetime NOT NULL,
`modified_date` datetime NOT NULL,
`header` smallint NOT NULL DEFAULT '301',
PRIMARY KEY (`id`),
KEY `idx_old_url` (`old_url`(100)),
KEY `idx_link_modified` (`modified_date`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_redirect_links`
--
LOCK TABLES `jnx5e_redirect_links` WRITE;
/*!40000 ALTER TABLE `jnx5e_redirect_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_redirect_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_scheduler_logs`
--
DROP TABLE IF EXISTS `jnx5e_scheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_scheduler_logs` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`taskname` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`tasktype` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'unique identifier for job defined by plugin',
`duration` decimal(5,3) NOT NULL,
`jobid` int unsigned NOT NULL,
`taskid` int unsigned NOT NULL,
`exitcode` int NOT NULL,
`lastdate` datetime DEFAULT NULL COMMENT 'Timestamp of last run',
`nextdate` datetime DEFAULT NULL COMMENT 'Timestamp of next (planned) run, referred for execution on trigger',
PRIMARY KEY (`id`),
KEY `idx_taskname` (`taskname`),
KEY `idx_tasktype` (`tasktype`),
KEY `idx_lastdate` (`lastdate`),
KEY `idx_nextdate` (`nextdate`)
) ENGINE=InnoDB AUTO_INCREMENT=31 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_scheduler_logs`
--
LOCK TABLES `jnx5e_scheduler_logs` WRITE;
/*!40000 ALTER TABLE `jnx5e_scheduler_logs` DISABLE KEYS */;
INSERT INTO `jnx5e_scheduler_logs` VALUES (1,'Session GC','Tarea - Purga de datos de sesión',0.001,2,17,0,'2025-04-24 21:47:03','2025-04-25 21:47:03'),(2,'Session GC','Tarea - Purga de datos de sesión',0.001,2,18,0,'2025-05-08 19:49:34','2025-05-09 19:49:34'),(3,'Session GC','Tarea - Purga de datos de sesión',0.001,2,19,0,'2025-06-24 15:49:48','2025-06-25 15:49:48'),(4,'Rotate Logs','Rotar registros',0.009,1,5,0,'2025-06-24 15:50:04','2025-07-24 13:00:00'),(5,'Session GC','Tarea - Purga de datos de sesión',0.001,2,20,0,'2025-08-07 18:58:19','2025-08-08 18:58:19'),(6,'Rotate Logs','Rotar registros',0.009,1,6,0,'2025-08-07 18:58:23','2025-09-06 13:00:00'),(7,'Session GC','Tarea - Purga de datos de sesión',0.001,2,21,0,'2025-10-21 12:47:18','2025-10-22 12:47:18'),(8,'Rotate Logs','Rotar registros',0.008,1,7,0,'2025-10-21 12:47:39','2025-11-20 13:00:00'),(9,'Session GC','Tarea - Purga de datos de sesión',0.003,2,23,0,'2026-04-06 13:49:10','2026-04-07 13:49:10'),(10,'Session GC','Tarea - Purga de datos de sesión',0.052,2,24,0,'2026-04-07 14:04:27','2026-04-08 14:04:31'),(11,'Session GC','Tarea - Purga de datos de sesión',0.000,2,25,0,'2026-04-08 14:04:53','2026-04-09 14:04:53'),(12,'Session GC','Tarea - Purga de datos de sesión',0.004,2,26,0,'2026-04-09 14:06:54','2026-04-10 14:06:54'),(13,'Session GC','Tarea - Purga de datos de sesión',0.000,2,27,0,'2026-04-10 14:11:19','2026-04-11 14:11:19'),(14,'Session GC','Tarea - Purga de datos de sesión',0.000,2,28,0,'2026-04-22 13:07:04','2026-04-23 13:07:04'),(15,'Session GC','Tarea - Purga de datos de sesión',0.000,2,29,0,'2026-04-23 13:08:28','2026-04-24 13:08:28'),(16,'Session GC','Tarea - Purga de datos de sesión',0.000,2,30,0,'2026-04-24 21:27:50','2026-04-25 21:27:50'),(17,'Session GC','Tarea - Purga de datos de sesión',0.000,2,31,0,'2026-04-26 19:15:58','2026-04-27 19:15:58'),(18,'Rotate Logs','Rotar registros',0.022,1,9,0,'2026-04-26 19:16:52','2026-05-26 13:00:00'),(19,'Session GC','Tarea - Purga de datos de sesión',0.000,2,32,0,'2026-04-28 00:25:37','2026-04-29 00:25:38'),(20,'Session GC','Tarea - Purga de datos de sesión',0.000,2,33,0,'2026-04-29 15:03:55','2026-04-30 15:03:55'),(21,'Session GC','Tarea - Purga de datos de sesión',0.000,2,34,0,'2026-04-30 15:12:01','2026-05-01 15:12:02'),(22,'Session GC','Tarea - Purga de datos de sesión',0.000,2,35,0,'2026-05-01 17:54:52','2026-05-02 17:54:52'),(23,'Session GC','Tarea - Purga de datos de sesión',0.000,2,36,0,'2026-05-02 18:22:57','2026-05-03 18:22:57'),(24,'Session GC','Tarea - Purga de datos de sesión',0.000,2,37,0,'2026-05-03 19:48:09','2026-05-04 19:48:09'),(25,'Session GC','Tarea - Purga de datos de sesión',0.000,2,38,0,'2026-05-05 04:49:20','2026-05-06 04:49:20'),(26,'Session GC','Tarea - Purga de datos de sesión',0.001,2,39,0,'2026-05-06 10:13:46','2026-05-07 10:13:47'),(27,'Session GC','Tarea - Purga de datos de sesión',0.000,2,40,0,'2026-05-08 05:38:41','2026-05-09 05:38:42'),(28,'Session GC','Tarea - Purga de datos de sesión',0.000,2,41,0,'2026-05-09 11:30:49','2026-05-10 11:30:49'),(29,'Session GC','Tarea - Purga de datos de sesión',0.000,2,42,0,'2026-05-10 16:08:55','2026-05-11 16:08:56'),(30,'Session GC','Tarea - Purga de datos de sesión',0.000,2,43,0,'2026-05-11 19:11:02','2026-05-12 19:11:03');
/*!40000 ALTER TABLE `jnx5e_scheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_scheduler_tasks`
--
DROP TABLE IF EXISTS `jnx5e_scheduler_tasks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_scheduler_tasks` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`type` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'unique identifier for job defined by plugin',
`execution_rules` text COLLATE utf8mb4_unicode_ci COMMENT 'Execution Rules, Unprocessed',
`cron_rules` text COLLATE utf8mb4_unicode_ci COMMENT 'Processed execution rules, crontab-like JSON form',
`state` tinyint NOT NULL DEFAULT '0',
`last_exit_code` int NOT NULL DEFAULT '0' COMMENT 'Exit code when job was last run',
`last_execution` datetime DEFAULT NULL COMMENT 'Timestamp of last run',
`next_execution` datetime DEFAULT NULL COMMENT 'Timestamp of next (planned) run, referred for execution on trigger',
`times_executed` int DEFAULT '0' COMMENT 'Count of successful triggers',
`times_failed` int DEFAULT '0' COMMENT 'Count of failures',
`locked` datetime DEFAULT NULL,
`priority` smallint NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0' COMMENT 'Configurable list ordering',
`cli_exclusive` smallint NOT NULL DEFAULT '0' COMMENT 'If 1, the task is only accessible via CLI',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`note` text COLLATE utf8mb4_unicode_ci,
`created` datetime NOT NULL,
`created_by` int unsigned NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_type` (`type`),
KEY `idx_state` (`state`),
KEY `idx_last_exit` (`last_exit_code`),
KEY `idx_next_exec` (`next_execution`),
KEY `idx_locked` (`locked`),
KEY `idx_priority` (`priority`),
KEY `idx_cli_exclusive` (`cli_exclusive`),
KEY `idx_checked_out` (`checked_out`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_scheduler_tasks`
--
LOCK TABLES `jnx5e_scheduler_tasks` WRITE;
/*!40000 ALTER TABLE `jnx5e_scheduler_tasks` DISABLE KEYS */;
INSERT INTO `jnx5e_scheduler_tasks` VALUES (1,97,'Rotate Logs','rotation.logs','{\"rule-type\":\"interval-days\",\"interval-days\":\"30\",\"exec-day\":\"17\",\"exec-time\":\"13:00\"}','{\"type\":\"interval\",\"exp\":\"P30D\"}',1,0,'2026-04-26 19:16:53','2026-05-26 13:00:00',9,0,NULL,0,0,0,'{\"individual_log\":false,\"log_file\":\"\",\"notifications\":{\"success_mail\":\"0\",\"failure_mail\":\"1\",\"fatal_failure_mail\":\"1\",\"orphan_mail\":\"1\"},\"logstokeep\":1}',NULL,'2024-10-17 13:00:52',44,NULL,NULL),(2,98,'Session GC','session.gc','{\"rule-type\":\"interval-hours\",\"interval-hours\":\"24\",\"exec-day\":\"01\",\"exec-time\":\"13:00\"}','{\"type\":\"interval\",\"exp\":\"PT24H\"}',1,0,'2026-05-11 19:11:03','2026-05-12 19:11:03',43,0,NULL,0,0,0,'{\"individual_log\":false,\"log_file\":\"\",\"notifications\":{\"success_mail\":\"0\",\"failure_mail\":\"1\",\"fatal_failure_mail\":\"1\",\"orphan_mail\":\"1\"},\"enable_session_gc\":1,\"enable_session_metadata_gc\":1}',NULL,'2024-10-17 13:00:52',44,NULL,NULL),(3,99,'Update Notification','update.notification','{\"rule-type\":\"interval-hours\",\"interval-hours\":\"24\",\"exec-day\":\"01\",\"exec-time\":\"13:00\"}','{\"type\":\"interval\",\"exp\":\"PT24H\"}',1,0,'2025-04-21 14:01:54','2025-04-22 14:02:05',15,0,NULL,0,0,0,'{\"individual_log\":false,\"log_file\":\"\",\"notifications\":{\"success_mail\":\"0\",\"failure_mail\":\"1\",\"fatal_failure_mail\":\"1\",\"orphan_mail\":\"1\"},\"email\":\"\",\"language_override\":\"\"}',NULL,'2024-10-17 13:00:52',44,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_scheduler_tasks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_schemaorg`
--
DROP TABLE IF EXISTS `jnx5e_schemaorg`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_schemaorg` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`itemId` int unsigned DEFAULT NULL,
`context` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schemaType` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schema` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_schemaorg`
--
LOCK TABLES `jnx5e_schemaorg` WRITE;
/*!40000 ALTER TABLE `jnx5e_schemaorg` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_schemaorg` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_schemas`
--
DROP TABLE IF EXISTS `jnx5e_schemas`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_schemas` (
`extension_id` int NOT NULL,
`version_id` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`extension_id`,`version_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_schemas`
--
LOCK TABLES `jnx5e_schemas` WRITE;
/*!40000 ALTER TABLE `jnx5e_schemas` DISABLE KEYS */;
INSERT INTO `jnx5e_schemas` VALUES (240,'5.4.0-2025-08-02'),(258,'4.1.1'),(269,'10.3.0'),(274,'3.1.7');
/*!40000 ALTER TABLE `jnx5e_schemas` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_session`
--
DROP TABLE IF EXISTS `jnx5e_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_session` (
`session_id` varbinary(192) NOT NULL,
`client_id` tinyint unsigned DEFAULT NULL,
`guest` tinyint unsigned DEFAULT '1',
`time` int NOT NULL DEFAULT '0',
`data` mediumtext COLLATE utf8mb4_unicode_ci,
`userid` int DEFAULT '0',
`username` varchar(150) COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`session_id`),
KEY `userid` (`userid`),
KEY `time` (`time`),
KEY `client_id_guest` (`client_id`,`guest`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_session`
--
LOCK TABLES `jnx5e_session` WRITE;
/*!40000 ALTER TABLE `jnx5e_session` DISABLE KEYS */;
INSERT INTO `jnx5e_session` VALUES (_binary '0e3ddca5505e860e93b976d73c681adb',0,1,1778594284,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MjUzO3M6NDoibGFzdCI7aToxNzc4NTk0MjUzO3M6Mzoibm93IjtpOjE3Nzg1OTQyNTM7fXM6NToidG9rZW4iO3M6MzI6IjE2Y2FjZjkyNTM0ODdjYWQ5MmRjODZmNzI3OTkyMTYzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '0f4e35241a777ce8efa57d47e914fdde',0,1,1778593439,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDI1O3M6NDoibGFzdCI7aToxNzc4NTkzNDI1O3M6Mzoibm93IjtpOjE3Nzg1OTM0MjU7fXM6NToidG9rZW4iO3M6MzI6IjgwMzdiZDFkZDBiNGRkYWJiOGUzNTU1NWRmMTI5MTFkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '1219a39ab377544d397e86eb41c0e1f4',0,1,1778561719,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTYxNzE4O3M6NDoibGFzdCI7aToxNzc4NTYxNzE4O3M6Mzoibm93IjtpOjE3Nzg1NjE3MTg7fXM6NToidG9rZW4iO3M6MzI6IjI0ZTAwMDg4MzNlZjVmYzk1YTBkYzA3YjA3NmEyZGFkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '126a1aae4e3dc72cfb457998a14f4a9c',0,1,1778582119,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTgyMTE4O3M6NDoibGFzdCI7aToxNzc4NTgyMTE4O3M6Mzoibm93IjtpOjE3Nzg1ODIxMTg7fXM6NToidG9rZW4iO3M6MzI6IjNhMDZjODFjYWVlMGY4YTJiOWJmZWUzOTI1YTVhMDE1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '12b34ef8395d22cacf1c642107688e27',0,1,1778574195,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjI7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTc0MTg0O3M6NDoibGFzdCI7aToxNzc4NTc0MTg0O3M6Mzoibm93IjtpOjE3Nzg1NzQxOTQ7fXM6NToidG9rZW4iO3M6MzI6ImQwOTE2ZTY3MTZmY2MwZjAzNDkxZmVhZTUwNzlhNzIzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '14948af9cccd21087a415779ab0dc021',0,1,1778593427,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDE4O3M6NDoibGFzdCI7aToxNzc4NTkzNDE4O3M6Mzoibm93IjtpOjE3Nzg1OTM0MTg7fXM6NToidG9rZW4iO3M6MzI6ImQ1OWZlYTgyYjM3NTZjZWUwOThmMTE5OGFmYmU1MmFmIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '152c899c57447b485b29fe531b7299f112c9039d545dcbc7e539879207e223e4',3,1,1778594564,NULL,0,''),(_binary '162dc2304b75e0f8649efb538ded0a94',0,1,1778557357,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU3MzU2O3M6NDoibGFzdCI7aToxNzc4NTU3MzU2O3M6Mzoibm93IjtpOjE3Nzg1NTczNTY7fXM6NToidG9rZW4iO3M6MzI6Ijk2NDNmNjc3YTZiNTc3NjNhODA1YzQ3NDljNTlmMWMwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '1b260b8f6d3aefd087447875ae3e7d73',0,1,1778557578,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU3NTc3O3M6NDoibGFzdCI7aToxNzc4NTU3NTc3O3M6Mzoibm93IjtpOjE3Nzg1NTc1Nzc7fXM6NToidG9rZW4iO3M6MzI6IjczZDBkNzFmMzNiMzFiNDQxZmY2YzMzNjUwOWMyMDQ0Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '296260000db65c7e58f028eb33d08b99',0,1,1778594109,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTA3O3M6NDoibGFzdCI7aToxNzc4NTk0MTA3O3M6Mzoibm93IjtpOjE3Nzg1OTQxMDc7fXM6NToidG9rZW4iO3M6MzI6ImQ3MDk5MjE4Y2MyMmY0NWY1YTY4NTcyODNjMjQxZTUyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '29b1bce23d379fc51438519712b3a576',0,1,1778561715,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTYxNzEzO3M6NDoibGFzdCI7aToxNzc4NTYxNzEzO3M6Mzoibm93IjtpOjE3Nzg1NjE3MTM7fXM6NToidG9rZW4iO3M6MzI6IjNjOGYwODM5YmFhMjVmZmExZTBjNzY2OTZiMDA4MmFjIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '2ac626774cd43e5c13ae5d7bc68a96c3e91d89bb7e3ccbf1265ac76a47d0c46f',3,1,1778593461,NULL,0,''),(_binary '301fbf92e4e35394fbb41662c71ccb21',0,1,1778567198,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY3MTk3O3M6NDoibGFzdCI7aToxNzc4NTY3MTk3O3M6Mzoibm93IjtpOjE3Nzg1NjcxOTc7fXM6NToidG9rZW4iO3M6MzI6IjA5ZWZlMTUzNmZiYWU4OWI5YjMzMDA4ZGQ0NDRjNmI2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '341c07ccb12e3d8121dd48441acd4114',0,1,1778538309,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTM4MzA4O3M6NDoibGFzdCI7aToxNzc4NTM4MzA4O3M6Mzoibm93IjtpOjE3Nzg1MzgzMDg7fXM6NToidG9rZW4iO3M6MzI6IjJhZDBmOGMyNzg1ZjU0MjI3MGFjNDE4MmI1MWE3ZjAwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '34677b33be4d197bcde7f18cbd015820',0,1,1778593412,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDExO3M6NDoibGFzdCI7aToxNzc4NTkzNDExO3M6Mzoibm93IjtpOjE3Nzg1OTM0MTE7fXM6NToidG9rZW4iO3M6MzI6IjU2MzdjMTc3MjM0NDQ3NDA0MWQ4NThjNjhjNzg3NjRjIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '374556cacae20577d73ba20790d30ba7',0,1,1778573925,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTczOTIzO3M6NDoibGFzdCI7aToxNzc4NTczOTIzO3M6Mzoibm93IjtpOjE3Nzg1NzM5MjM7fXM6NToidG9rZW4iO3M6MzI6IjdmZjJmNjljOGQ3ZGY3NmFiNWYwMGFjZGUzYmFkNWU3Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '3bd1b97a9a4eadc282b73c18b394dcf0',1,1,1778525846,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODQ1O3M6NDoibGFzdCI7aToxNzc4NTI1ODQ1O3M6Mzoibm93IjtpOjE3Nzg1MjU4NDU7fXM6NToidG9rZW4iO3M6MzI6ImU1YjA4YWIwOGViMTM3ZmVkNTgyOTBiN2YxZTcxMmIyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo1MToiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary '3e4290c3481ce705a76b62f2e23c1fc4',0,1,1778593519,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNTEyO3M6NDoibGFzdCI7aToxNzc4NTkzNTEyO3M6Mzoibm93IjtpOjE3Nzg1OTM1MTI7fXM6NToidG9rZW4iO3M6MzI6IjdmNTQ4OTQzYzJmZjQyNjkzMDdiZWQxYjA3ZDM2MmIzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '3f80cc43f91552083a66b7d431b13b04',0,1,1778597734,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk3NzM0O3M6NDoibGFzdCI7aToxNzc4NTk3NzM0O3M6Mzoibm93IjtpOjE3Nzg1OTc3MzQ7fXM6NToidG9rZW4iO3M6MzI6IjVmNDIwMzE2ZTA2YzM0YTBhNzMzN2JhN2QwMWM4Mjc4Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '3fb76b554cbca443cf0d5f3144243b70',0,1,1778594109,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTA3O3M6NDoibGFzdCI7aToxNzc4NTk0MTA3O3M6Mzoibm93IjtpOjE3Nzg1OTQxMDc7fXM6NToidG9rZW4iO3M6MzI6IjdlMWIwNWZhMTk3NjIwYTNkOGUxYTgwNmVmNTJkOWU1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '4060a31d1b7a59a9bb19a3f92c499fa3',0,1,1778593490,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDYxO3M6NDoibGFzdCI7aToxNzc4NTkzNDYxO3M6Mzoibm93IjtpOjE3Nzg1OTM0NjE7fXM6NToidG9rZW4iO3M6MzI6IjAxN2IyNmNjYmYwMWFiN2I5YTY3Y2Y1NzEzZTYxNDkyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '42ee0cf20bbdd5295605300b916da7aa',0,1,1778593512,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNTA0O3M6NDoibGFzdCI7aToxNzc4NTkzNTA0O3M6Mzoibm93IjtpOjE3Nzg1OTM1MDQ7fXM6NToidG9rZW4iO3M6MzI6IjM5MDYxYjg0NzgzOGQxOGJlYzgxYmUyYTBlOTc4MjI4Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '445ad47079b7c5f21ea27b4f0b1fa771',0,1,1778549341,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTQ5MzQxO3M6NDoibGFzdCI7aToxNzc4NTQ5MzQxO3M6Mzoibm93IjtpOjE3Nzg1NDkzNDE7fXM6NToidG9rZW4iO3M6MzI6ImNhZmY2ZDI1MDM1MmI4NTc1MTdhYjkwZDQ3NGQ0YjkzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '450931c1ec0195858cde469d8da31f65',0,1,1778588987,'joomla|s:628:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mjp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTg4OTg1O3M6NDoibGFzdCI7aToxNzc4NTg4OTg1O3M6Mzoibm93IjtpOjE3Nzg1ODg5ODU7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '45cc9520ad625fb14865195fa4fc8b90',0,1,1778549340,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTQ5MzQwO3M6NDoibGFzdCI7aToxNzc4NTQ5MzQwO3M6Mzoibm93IjtpOjE3Nzg1NDkzNDA7fXM6NToidG9rZW4iO3M6MzI6Ijc4YjY5ZWQ2NGQ4M2FjZTBiMTViZGJiMDk3MTExZmJjIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '4a61d00746c846dfacecdb262d554c40',0,1,1778559172,'joomla|s:628:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mjp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU5MTcyO3M6NDoibGFzdCI7aToxNzc4NTU5MTcyO3M6Mzoibm93IjtpOjE3Nzg1NTkxNzI7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '53f6840b0bfa7a44ede83d291ffae879',0,1,1778560499,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTYwNDg5O3M6NDoibGFzdCI7aToxNzc4NTYwNDg5O3M6Mzoibm93IjtpOjE3Nzg1NjA0ODk7fXM6NToidG9rZW4iO3M6MzI6IjVmMjhiZDQ3MmFiMTQ3MGFmY2Y3N2E3YzhmYWY4YTQzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '5637cb8942b8264c3fc7335d092eb517',0,1,1778538136,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTM4MTM0O3M6NDoibGFzdCI7aToxNzc4NTM4MTM0O3M6Mzoibm93IjtpOjE3Nzg1MzgxMzQ7fXM6NToidG9rZW4iO3M6MzI6IjlmOGVhMzU0MmMwNDBhMzNhYTZjNDIyZGRkOTRkMjA2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '590cc97ce1422576539bf5ab1e6670be',0,1,1778525838,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODM2O3M6NDoibGFzdCI7aToxNzc4NTI1ODM2O3M6Mzoibm93IjtpOjE3Nzg1MjU4MzY7fXM6NToidG9rZW4iO3M6MzI6IjQxZjU5Zjk4OGRkZjU4ODc1MThlNmIxNjM1ZWNkMTM1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '5aa6657836d2d557942b723404825db9',0,1,1778614343,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NjE0MzQxO3M6NDoibGFzdCI7aToxNzc4NjE0MzQxO3M6Mzoibm93IjtpOjE3Nzg2MTQzNDE7fXM6NToidG9rZW4iO3M6MzI6IjBjNjNkYzhiY2ZjYTQ5M2JiMTZjZjcxZWZiYzg4Y2ViIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '5d28e8e50704e265642e23cca42a4969',0,1,1778570776,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTcwNzc2O3M6NDoibGFzdCI7aToxNzc4NTcwNzc2O3M6Mzoibm93IjtpOjE3Nzg1NzA3NzY7fXM6NToidG9rZW4iO3M6MzI6IjZkMmM2ZmFiYzE3OTYwYjg4MzIyMzc5MTdiODdlODQwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '6a0b6c08dcab96a9800772f61b5a808c53b1255853356c84ecaf49932cbacabb',3,1,1778594120,NULL,0,''),(_binary '6c89cb0e9c2d944a6891cc1668ceed00',0,1,1778590580,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkwNTc4O3M6NDoibGFzdCI7aToxNzc4NTkwNTc4O3M6Mzoibm93IjtpOjE3Nzg1OTA1Nzg7fXM6NToidG9rZW4iO3M6MzI6ImQ0OTgwN2QzNGFlMzk0ZWY3Y2MwYmI3ZGU1N2UzNWFmIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '6db9e8efd79c612849a2527dfdf8903767854039d5b81b727bec6ae5725f3d7e',3,1,1778594120,NULL,0,''),(_binary '7036452ff05e9c404aa543dfdc166dd1',0,1,1778594561,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTYwO3M6NDoibGFzdCI7aToxNzc4NTk0NTYwO3M6Mzoibm93IjtpOjE3Nzg1OTQ1NjA7fXM6NToidG9rZW4iO3M6MzI6IjU3YTA1MDQzMjYwMjllNjM3NWJiMDQ3ODU4YWU2NWMzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '73b4ef2d81cbd1be1c9243b248953c7a',0,1,1778593427,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDE4O3M6NDoibGFzdCI7aToxNzc4NTkzNDE4O3M6Mzoibm93IjtpOjE3Nzg1OTM0MTg7fXM6NToidG9rZW4iO3M6MzI6ImQ5YjkxYjAwNDhjNjVkZWNmZDg3OWQ3OTBhNjUwZDcwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '75f0dd3443189cfe4a88162d29d05c92',0,1,1778591573,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkxMjAyO3M6NDoibGFzdCI7aToxNzc4NTkxNTcyO3M6Mzoibm93IjtpOjE3Nzg1OTE1NzM7fXM6NToidG9rZW4iO3M6MzI6ImUwODc5ZDI1NDM2ZGVmMWU3MTU2OGRjNzc4ZDFkOGUzIjtzOjc6ImNvdW50ZXIiO2k6NDt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '7622f945352b5e1b1c30ef4fb3e7dec9',0,1,1778533039,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTMzMDM4O3M6NDoibGFzdCI7aToxNzc4NTMzMDM4O3M6Mzoibm93IjtpOjE3Nzg1MzMwMzg7fXM6NToidG9rZW4iO3M6MzI6IjIxOGNlZTQwZTc4NDBhYzI2MGNmZmQ0NTNhYjBjZDBkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '771f3a4f90e55b864e406e8be53fe0b4',0,1,1778596983,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk2OTgyO3M6NDoibGFzdCI7aToxNzc4NTk2OTgyO3M6Mzoibm93IjtpOjE3Nzg1OTY5ODI7fXM6NToidG9rZW4iO3M6MzI6IjMyY2ZkMjI4NjkxMzIxZWU0ODIxNDI0NzExNmJlNGU0Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '78c274e7c62231ec16a5e3b68bbd358c',0,1,1778593463,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDM1O3M6NDoibGFzdCI7aToxNzc4NTkzNDM1O3M6Mzoibm93IjtpOjE3Nzg1OTM0MzU7fXM6NToidG9rZW4iO3M6MzI6IjkxZjRlMjg2MTkzZjlmYzJhOWEwODc0NGUwMGE2NGIwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '79c04ea81fb8f2fe98d6c9a1085e14ac',0,1,1778559940,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU5OTM5O3M6NDoibGFzdCI7aToxNzc4NTU5OTM5O3M6Mzoibm93IjtpOjE3Nzg1NTk5Mzk7fXM6NToidG9rZW4iO3M6MzI6ImZkYTM4OWE4Y2MyZDdkZTAxMzRhOTAzMjA4MjMwOTFiIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '7e2dd1c39bcad3ab50e30daa47ff0c82',0,1,1778594768,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NzY4O3M6NDoibGFzdCI7aToxNzc4NTk0NzY4O3M6Mzoibm93IjtpOjE3Nzg1OTQ3Njg7fXM6NToidG9rZW4iO3M6MzI6Ijc4NDI2YTQ4NzFhNGM4MTQ5ZTc5Y2VhZWRiYWE5NWIxIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8301d6f641db12813567f5de87766f6f',0,1,1778593410,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDA4O3M6NDoibGFzdCI7aToxNzc4NTkzNDA4O3M6Mzoibm93IjtpOjE3Nzg1OTM0MDg7fXM6NToidG9rZW4iO3M6MzI6IjllMWUzMzIyMmQxNzc1MTNiZGUwYWUzNDY5YzBkMWI1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8501bcd615cf80868d816651da141141',0,1,1778594684,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0Njg0O3M6NDoibGFzdCI7aToxNzc4NTk0Njg0O3M6Mzoibm93IjtpOjE3Nzg1OTQ2ODQ7fXM6NToidG9rZW4iO3M6MzI6ImQ4M2MzN2I2MDQyZDI5YTQ3MDQzZTlkOWM5MjkwNDJhIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8859231b7c88665c205967aded8c37ad',0,1,1778567197,'joomla|s:628:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mjp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY3MTk3O3M6NDoibGFzdCI7aToxNzc4NTY3MTk3O3M6Mzoibm93IjtpOjE3Nzg1NjcxOTc7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '890e31333efe0c557a47b2c971cf8d34',0,1,1778594094,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MDkzO3M6NDoibGFzdCI7aToxNzc4NTk0MDkzO3M6Mzoibm93IjtpOjE3Nzg1OTQwOTM7fXM6NToidG9rZW4iO3M6MzI6IjczNDFjMDUxN2U2YjdiYmFmY2U2MjEwZTg2NmI4MTVmIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '897f12a2b18db891594c91e71e1cd3b6',0,1,1778571763,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTcxNzYyO3M6NDoibGFzdCI7aToxNzc4NTcxNzYyO3M6Mzoibm93IjtpOjE3Nzg1NzE3NjI7fXM6NToidG9rZW4iO3M6MzI6ImU4MGE2M2UwNDcxNjdhMTFhZmNlOWZkOTllYjk5MzZkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8dd65311c71f65f0e1108f324a2cec8e',0,1,1778593490,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDYxO3M6NDoibGFzdCI7aToxNzc4NTkzNDYxO3M6Mzoibm93IjtpOjE3Nzg1OTM0NjE7fXM6NToidG9rZW4iO3M6MzI6IjdjYWQ4MGM4NWM3MWY3ZTVmZGU1Y2FlMTYwYzkxMDY0Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8e64d7e10b3168f2eb693ea3243a4eef',0,1,1778525840,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODM5O3M6NDoibGFzdCI7aToxNzc4NTI1ODM5O3M6Mzoibm93IjtpOjE3Nzg1MjU4Mzk7fXM6NToidG9rZW4iO3M6MzI6IjFmYjk2MmJhOGJkNTg2ZGQ4ZDVhOWQxZjgxNWUyNzhlIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '8f3ea533cd278a6ee510c3f5ae8116bd0a80b28173ab02a064ba024d027f64a9',3,1,1778593418,NULL,0,''),(_binary '8f4fcd7f0bf4bd349aa183f1ea964d65',0,1,1778594108,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTA2O3M6NDoibGFzdCI7aToxNzc4NTk0MTA2O3M6Mzoibm93IjtpOjE3Nzg1OTQxMDY7fXM6NToidG9rZW4iO3M6MzI6ImMwMmNlODU1NjRhY2NmZDBjNmM3ZDhkMjY1YWJiNzViIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '91b426681b9c43da6a348f148ccd444b',0,1,1778594113,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTEwO3M6NDoibGFzdCI7aToxNzc4NTk0MTEwO3M6Mzoibm93IjtpOjE3Nzg1OTQxMTA7fXM6NToidG9rZW4iO3M6MzI6IjZiYjczOGYyNTdiODc2YmU2OWE2YzNlYzExNjVmNjdhIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '949204431155c5c68ea10435d9ea49c8',0,1,1778594106,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTA1O3M6NDoibGFzdCI7aToxNzc4NTk0MTA1O3M6Mzoibm93IjtpOjE3Nzg1OTQxMDU7fXM6NToidG9rZW4iO3M6MzI6ImVlNDcwODkzNmY5YjMzYzM0MjE1ZGQyMGE2NDEyMTQ2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '97391a7ac0c1dd4bc8fd89a764499764',0,1,1778564709,'joomla|s:628:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mjp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY0NzA5O3M6NDoibGFzdCI7aToxNzc4NTY0NzA5O3M6Mzoibm93IjtpOjE3Nzg1NjQ3MDk7fX1zOjg6InJlZ2lzdHJ5IjtPOjI0OiJKb29tbGFcUmVnaXN0cnlcUmVnaXN0cnkiOjM6e3M6NzoiACoAZGF0YSI7Tzo4OiJzdGRDbGFzcyI6MDp7fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO31zOjQ6InVzZXIiO086MjA6Ikpvb21sYVxDTVNcVXNlclxVc2VyIjoxOntzOjI6ImlkIjtpOjA7fX1zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9\";',0,''),(_binary '978a87fdb63266572fc463cf844fc167',1,1,1778529606,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI5NjAzO3M6NDoibGFzdCI7aToxNzc4NTI5NjAzO3M6Mzoibm93IjtpOjE3Nzg1Mjk2MDM7fXM6NToidG9rZW4iO3M6MzI6Ijg3NGM4NmMwMjk2MDA0YWNkZWUwZWEyNWJkNWRlM2FkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo1MToiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary '99d8a68178f51e85c7e1b3e2a75fafb3',0,1,1778568180,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY4MTc5O3M6NDoibGFzdCI7aToxNzc4NTY4MTc5O3M6Mzoibm93IjtpOjE3Nzg1NjgxNzk7fXM6NToidG9rZW4iO3M6MzI6IjU5MGJjNTAwNTAxMDk4Mjk2OTI5MmFjODZjZTUxZTIxIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '9a49920d3ecd5b5059fef4d053cb9067',0,1,1778545948,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTQ1OTQ4O3M6NDoibGFzdCI7aToxNzc4NTQ1OTQ4O3M6Mzoibm93IjtpOjE3Nzg1NDU5NDg7fXM6NToidG9rZW4iO3M6MzI6IjM0OGZkZDZkN2RiMjE4MjVkMDU1ZjEyMTgzMjQyOWYzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary '9bbd0267de637270e84f5319a14bce56',0,1,1778594562,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTYyO3M6NDoibGFzdCI7aToxNzc4NTk0NTYyO3M6Mzoibm93IjtpOjE3Nzg1OTQ1NjI7fXM6NToidG9rZW4iO3M6MzI6ImE2YjA3NGFmMDgwNGM5ZWFiZDMzYjIxMTdkMjZlMWVhIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'a6d27e8e89fdd1d3babf0c51935e7b49',0,1,1778525842,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODQyO3M6NDoibGFzdCI7aToxNzc4NTI1ODQyO3M6Mzoibm93IjtpOjE3Nzg1MjU4NDI7fXM6NToidG9rZW4iO3M6MzI6ImM1OTM1NzdlN2Q3YjkwZTZkOTYyMzU5NzViN2M0ZmNjIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'abe37da4e6e6c69ab3c906bc96b571bf',1,1,1778558069,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU4MDY4O3M6NDoibGFzdCI7aToxNzc4NTU4MDY4O3M6Mzoibm93IjtpOjE3Nzg1NTgwNjg7fXM6NToidG9rZW4iO3M6MzI6Ijc0MmU2ZDM4NmYzZDgzODU1NTAyYzYxMmJkNWNkYWUwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo1MToiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'b0e5cc11bfa23ab07c1f2d1585cb11b7',0,1,1778528286,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjM7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI4MjgxO3M6NDoibGFzdCI7aToxNzc4NTI4MjgzO3M6Mzoibm93IjtpOjE3Nzg1MjgyODU7fXM6NToidG9rZW4iO3M6MzI6ImI2YjI1YWRiY2M3MTg4ZWVmN2IzYjA3ZTNlYTc3YTBkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'b0ea6644216b258a7e5a7a7849e17a6e',0,1,1778593422,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTkzNDE0O3M6NDoibGFzdCI7aToxNzc4NTkzNDE0O3M6Mzoibm93IjtpOjE3Nzg1OTM0MTQ7fXM6NToidG9rZW4iO3M6MzI6IjJkZDMwMjA2MjU1YmNhZTM0MjRkMjk1ZjNlZDU4NzdjIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'b358c6c9c7daf34d6a796837c3b00ffd',0,1,1778577239,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTc3MjM4O3M6NDoibGFzdCI7aToxNzc4NTc3MjM4O3M6Mzoibm93IjtpOjE3Nzg1NzcyMzg7fXM6NToidG9rZW4iO3M6MzI6ImU2YmRhNWJhZmY5NTkzNDFhOThhNDQ1M2RjODRiY2JkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'b75c53fd0ca6089eb49a9c83c855e6ad',1,1,1778534478,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTM0NDc4O3M6NDoibGFzdCI7aToxNzc4NTM0NDc4O3M6Mzoibm93IjtpOjE3Nzg1MzQ0Nzg7fXM6NToidG9rZW4iO3M6MzI6ImFiOTVjYzMyMmJjMGViMWQzMzAwNWNjOGFmNTU2NGRkIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo1MToiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'be437228e9fa5bc58c25236c1be273b1',0,1,1778578830,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTc4ODI5O3M6NDoibGFzdCI7aToxNzc4NTc4ODI5O3M6Mzoibm93IjtpOjE3Nzg1Nzg4Mjk7fXM6NToidG9rZW4iO3M6MzI6IjM3YTUwMzNjZGJiZGIzMTMyN2ZmMjE2ODYxYTBhMGUzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'beb852f1f8ad5566449951a4171e5bfb',0,1,1778534460,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTM0NDU5O3M6NDoibGFzdCI7aToxNzc4NTM0NDU5O3M6Mzoibm93IjtpOjE3Nzg1MzQ0NTk7fXM6NToidG9rZW4iO3M6MzI6IjBhMmUxNzNiMjk2NDFiNjM0YThhMTQ4MGYwZTBkODg2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'c8addf059535d76bf0abe02c07225f0e038976f83201c0910576bc9209f1defb',3,1,1778594564,NULL,0,''),(_binary 'cb19d333a40043fd52dff6fa8ea347b4',0,1,1778525843,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODQzO3M6NDoibGFzdCI7aToxNzc4NTI1ODQzO3M6Mzoibm93IjtpOjE3Nzg1MjU4NDM7fXM6NToidG9rZW4iO3M6MzI6IjkyMmJmZTcwYzFkMmI4ZjExMzE3NTIzM2U5YWZjYTc2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'ced5567caed0bed6480e25bfa71da0f0',0,1,1778594562,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTYyO3M6NDoibGFzdCI7aToxNzc4NTk0NTYyO3M6Mzoibm93IjtpOjE3Nzg1OTQ1NjI7fXM6NToidG9rZW4iO3M6MzI6IjA2YzJkMjQ2ODI4YTA0OTcyYmExMWUyZTg5NDJhMzYyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'cedead562b503487059126a63d404e1d',0,1,1778613985,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NjEzOTgzO3M6NDoibGFzdCI7aToxNzc4NjEzOTgzO3M6Mzoibm93IjtpOjE3Nzg2MTM5ODM7fXM6NToidG9rZW4iO3M6MzI6ImJlOTcyNGI2MTA2MWU3ZGI3OTJkMmQ4OGRiMTBiZTI1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'd40aaf9fa4dde1aa245c09aa5f7ec256',1,1,1778525845,'joomla|s:872:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODQ0O3M6NDoibGFzdCI7aToxNzc4NTI1ODQ0O3M6Mzoibm93IjtpOjE3Nzg1MjU4NDQ7fXM6NToidG9rZW4iO3M6MzI6ImU5N2Y5ODA0Njg4ZTFmNjMxZWY3ZDQ2MWNmN2IyZGMyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo2MDoiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvaW5kZXgucGhwIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'd5be07a1b8bb77fd912ccc05ae9c8102',0,1,1778594113,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTEwO3M6NDoibGFzdCI7aToxNzc4NTk0MTEwO3M6Mzoibm93IjtpOjE3Nzg1OTQxMTA7fXM6NToidG9rZW4iO3M6MzI6ImEyMjQzYTg0MTAwZmYwYTU1ZTJhZjQ0NzhkNjBjMDBmIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'da9ecdcc058752541984178f405cedda',0,1,1778594561,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTYwO3M6NDoibGFzdCI7aToxNzc4NTk0NTYwO3M6Mzoibm93IjtpOjE3Nzg1OTQ1NjA7fXM6NToidG9rZW4iO3M6MzI6IjA1MmQ3YmE3YjM4NmQ0NDZkYTc1NTM1ZTZkYmIyNzg3Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'daea1e1a3093319c1edef3035b124cfc',0,1,1778544677,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTQ0Njc1O3M6NDoibGFzdCI7aToxNzc4NTQ0Njc1O3M6Mzoibm93IjtpOjE3Nzg1NDQ2NzU7fXM6NToidG9rZW4iO3M6MzI6IjdiZDllMTRmYzE3MDUyY2NmY2RlMTM0YWNkNjY4ZTEwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'db05eaf0a1194a97bc47c3fe7f13c9a3',0,1,1778577431,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjM7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTc3NDI3O3M6NDoibGFzdCI7aToxNzc4NTc3NDI4O3M6Mzoibm93IjtpOjE3Nzg1Nzc0MzE7fXM6NToidG9rZW4iO3M6MzI6IjgxZDYyMzk5ZmJmMzdhOTA1NjcyZjBiNWViZDNlMzcwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'ddc516c631cd00d62e51e401f3af4d85',1,1,1778525844,'joomla|s:860:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjQ6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI1ODQzO3M6NDoibGFzdCI7aToxNzc4NTI1ODQzO3M6Mzoibm93IjtpOjE3Nzg1MjU4NDM7fXM6NToidG9rZW4iO3M6MzI6ImZlY2U4MGU3YzgwNWIwNjFjNGZhOTE5NTViMjBlNWZhIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO31zOjE5OiJwbGdfc3lzdGVtX3dlYmF1dGhuIjtPOjg6InN0ZENsYXNzIjoxOntzOjk6InJldHVyblVybCI7czo1MToiaHR0cHM6Ly9jb25ncmVzb2ZjZS51bmlsbGFub3MuZWR1LmNvL2FkbWluaXN0cmF0b3IvIjt9fXM6MTQ6IgAqAGluaXRpYWxpemVkIjtiOjA7czoxMjoiACoAc2VwYXJhdG9yIjtzOjE6Ii4iO30=\";',0,''),(_binary 'e103b42fb3371f22d916cbd072278cac',NULL,1,1778549671,'joomla|s:348:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjE6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6MTp7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTQ5NjcxO3M6NDoibGFzdCI7aToxNzc4NTQ5NjcxO3M6Mzoibm93IjtpOjE3Nzg1NDk2NzE7fX19czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'e221a2a1da526f6e5271c4be7aa2020c',0,1,1778582717,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTgyNzE2O3M6NDoibGFzdCI7aToxNzc4NTgyNzE2O3M6Mzoibm93IjtpOjE3Nzg1ODI3MTY7fXM6NToidG9rZW4iO3M6MzI6ImMxODE0MzFjOTc3YjQzZDE3NjlmZmFlNGViOGUyNGQwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'e3a31fb6fcf57c02c903cc513ebc9b62',0,1,1778526663,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjI7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTI2NjU0O3M6NDoibGFzdCI7aToxNzc4NTI2NjU0O3M6Mzoibm93IjtpOjE3Nzg1MjY2NjI7fXM6NToidG9rZW4iO3M6MzI6IjY5Y2E2MTllZjI4YWUwNTA4MTNkYTIxOTQ0Njk3ODYyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'e61dda5eec98f1e7233c700e2ae04edc2cb9b5e2b835aa437f945ad95c19dab0',3,1,1778594564,NULL,0,''),(_binary 'e8e669dcd1dd3e1787c78c9eb2451d86',0,1,1778598428,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk4NDI3O3M6NDoibGFzdCI7aToxNzc4NTk4NDI3O3M6Mzoibm93IjtpOjE3Nzg1OTg0Mjc7fXM6NToidG9rZW4iO3M6MzI6IjNmZDFmNzUxY2YzNjI0MTZmZGFiM2NmODljOGZhNDBlIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'ed8913bc57bc1c8d52e9adf3138ccad6dacead3de79130b3070c5f55e0cf609f',3,1,1778594116,NULL,0,''),(_binary 'edf35dec7931e7d8eb6fcfe38b201b6c',0,1,1778585718,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjM7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTg1NzA4O3M6NDoibGFzdCI7aToxNzc4NTg1NzEyO3M6Mzoibm93IjtpOjE3Nzg1ODU3MTY7fXM6NToidG9rZW4iO3M6MzI6IjMyNjNhMzU1Njg1NTk0OTIwYTQ0MTcyZjc3OTc1ZTMwIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'ee984f774c2feb3fa12dd7499f2d0672',0,1,1778594561,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTYxO3M6NDoibGFzdCI7aToxNzc4NTk0NTYxO3M6Mzoibm93IjtpOjE3Nzg1OTQ1NjE7fXM6NToidG9rZW4iO3M6MzI6IjVhZDVmNmM3OWMwZDc2Mjk5MWI3OTc0M2RhOGU4M2M0Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'ef71b638722dfd59898c5c9018312902',0,1,1778558629,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTU4NjI5O3M6NDoibGFzdCI7aToxNzc4NTU4NjI5O3M6Mzoibm93IjtpOjE3Nzg1NTg2Mjk7fXM6NToidG9rZW4iO3M6MzI6IjNlN2Y0NGFjZTIxYmU1Y2FiNGVmOGRkMDdjNjhkMDBlIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f08c1719b4723a2129275258f4fd26ce',0,1,1778595924,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk1OTIyO3M6NDoibGFzdCI7aToxNzc4NTk1OTIyO3M6Mzoibm93IjtpOjE3Nzg1OTU5MjI7fXM6NToidG9rZW4iO3M6MzI6IjVhMjRlOTg4YjkwYTQwYzFkMzYzMjg5ODg0ZDBkZTA0Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f1a943e40241d3ab230ee67c67ba0bf7',0,1,1778594110,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0MTA3O3M6NDoibGFzdCI7aToxNzc4NTk0MTA3O3M6Mzoibm93IjtpOjE3Nzg1OTQxMDc7fXM6NToidG9rZW4iO3M6MzI6IjZlOWQ0MzMxZDYzMzJhOGM4ZjQ3YmRmOTM3NmE3YTY1Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f27b1a3076fca79b5177ee908f6673d7',0,1,1778569440,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY5NDM5O3M6NDoibGFzdCI7aToxNzc4NTY5NDM5O3M6Mzoibm93IjtpOjE3Nzg1Njk0Mzk7fXM6NToidG9rZW4iO3M6MzI6ImFhMDNlZmQ4OGFkMTA5YTkwZGQwZjAwZGJjZGRjZGFmIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f4918f2485818789d0e2c07228148ac3',0,1,1778614069,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NjE0MDY4O3M6NDoibGFzdCI7aToxNzc4NjE0MDY4O3M6Mzoibm93IjtpOjE3Nzg2MTQwNjg7fXM6NToidG9rZW4iO3M6MzI6ImQ3OTk5NmI3ZGVmYTVjZjExMTdlZGE3OWE1YWE4ZmM3Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f49f42decb3ab004707ac1b9d8663f4d',0,1,1778566585,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTY2NTg0O3M6NDoibGFzdCI7aToxNzc4NTY2NTg0O3M6Mzoibm93IjtpOjE3Nzg1NjY1ODQ7fXM6NToidG9rZW4iO3M6MzI6IjMwN2NlNTdmNzVhNmViZWU5OGRjMDBhZjg1YTU5OWQzIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f71278dfba8396e3558c0f812bb5bb49',0,1,1778552616,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTUyNjE1O3M6NDoibGFzdCI7aToxNzc4NTUyNjE1O3M6Mzoibm93IjtpOjE3Nzg1NTI2MTU7fXM6NToidG9rZW4iO3M6MzI6IjVhNTlhMzYwMjI3ZTk2YzYyODYzNDMyMjA2YTI3NjkyIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'f8f5d04bc2012381ecddb461de8ba3a7',0,1,1778594561,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTU5O3M6NDoibGFzdCI7aToxNzc4NTk0NTU5O3M6Mzoibm93IjtpOjE3Nzg1OTQ1NTk7fXM6NToidG9rZW4iO3M6MzI6IjA4NWViZjAxYWI3MWU0NDVlZTU4ZGQwZjFiODk4YWE2Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'faa8fecf46f6eedb8acc5c3def224a5d',0,1,1778598707,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk4NzA3O3M6NDoibGFzdCI7aToxNzc4NTk4NzA3O3M6Mzoibm93IjtpOjE3Nzg1OTg3MDc7fXM6NToidG9rZW4iO3M6MzI6IjkzMTYyNTBmZTJhMTUwZDA0MjBhZmI5MGY3YjIyMmUxIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'fd6fedf90948bceb79ae9ff2463a359c',0,1,1778604886,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NjA0ODgzO3M6NDoibGFzdCI7aToxNzc4NjA0ODgzO3M6Mzoibm93IjtpOjE3Nzg2MDQ4ODM7fXM6NToidG9rZW4iO3M6MzI6IjA5OWM5NzUyYjY2MjY2ZTg3NDgwZDg0YWQ4ZmM1ZjlhIjt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,''),(_binary 'fe8c91ca1c5f144ab809a531dadc64e9',0,1,1778594561,'joomla|s:700:\"TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjM6e3M6Nzoic2Vzc2lvbiI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo3OiJjb3VudGVyIjtpOjE7czo1OiJ0aW1lciI7Tzo4OiJzdGRDbGFzcyI6Mzp7czo1OiJzdGFydCI7aToxNzc4NTk0NTU5O3M6NDoibGFzdCI7aToxNzc4NTk0NTU5O3M6Mzoibm93IjtpOjE3Nzg1OTQ1NTk7fXM6NToidG9rZW4iO3M6MzI6IjA3YTkyOGU5YmNjMjg1MzczMzE4YzI0ODQ1YTYzY2I4Ijt9czo4OiJyZWdpc3RyeSI7TzoyNDoiSm9vbWxhXFJlZ2lzdHJ5XFJlZ2lzdHJ5IjozOntzOjc6IgAqAGRhdGEiO086ODoic3RkQ2xhc3MiOjA6e31zOjE0OiIAKgBpbml0aWFsaXplZCI7YjowO3M6MTI6IgAqAHNlcGFyYXRvciI7czoxOiIuIjt9czo0OiJ1c2VyIjtPOjIwOiJKb29tbGFcQ01TXFVzZXJcVXNlciI6MTp7czoyOiJpZCI7aTowO319czoxNDoiACoAaW5pdGlhbGl6ZWQiO2I6MDtzOjEyOiIAKgBzZXBhcmF0b3IiO3M6MToiLiI7fQ==\";',0,'');
/*!40000 ALTER TABLE `jnx5e_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_tags`
--
DROP TABLE IF EXISTS `jnx5e_tags`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_tags` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`parent_id` int unsigned NOT NULL DEFAULT '0',
`lft` int NOT NULL DEFAULT '0',
`rgt` int NOT NULL DEFAULT '0',
`level` int unsigned NOT NULL DEFAULT '0',
`path` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`note` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`access` int unsigned NOT NULL DEFAULT '0',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`metadesc` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'The meta description for the page.',
`metakey` varchar(1024) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'The keywords for the page.',
`metadata` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded metadata properties.',
`created_user_id` int unsigned NOT NULL DEFAULT '0',
`created_time` datetime NOT NULL,
`created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`modified_user_id` int unsigned NOT NULL DEFAULT '0',
`modified_time` datetime NOT NULL,
`images` text COLLATE utf8mb4_unicode_ci NOT NULL,
`urls` text COLLATE utf8mb4_unicode_ci NOT NULL,
`hits` int unsigned NOT NULL DEFAULT '0',
`language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL,
`version` int unsigned NOT NULL DEFAULT '1',
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `tag_idx` (`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`),
KEY `idx_path` (`path`(100)),
KEY `idx_left_right` (`lft`,`rgt`),
KEY `idx_alias` (`alias`(100)),
KEY `idx_language` (`language`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_tags`
--
LOCK TABLES `jnx5e_tags` WRITE;
/*!40000 ALTER TABLE `jnx5e_tags` DISABLE KEYS */;
INSERT INTO `jnx5e_tags` VALUES (1,0,0,1,0,'','ROOT','root','','',1,NULL,NULL,1,'','','','',44,'2024-10-17 13:00:51','',44,'2024-10-17 13:00:51','','',0,'*',1,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_tags` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_template_overrides`
--
DROP TABLE IF EXISTS `jnx5e_template_overrides`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_template_overrides` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`template` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`hash_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`extension_id` int DEFAULT '0',
`state` tinyint NOT NULL DEFAULT '0',
`action` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`client_id` tinyint unsigned NOT NULL DEFAULT '0',
`created_date` datetime NOT NULL,
`modified_date` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_template` (`template`),
KEY `idx_extension_id` (`extension_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_template_overrides`
--
LOCK TABLES `jnx5e_template_overrides` WRITE;
/*!40000 ALTER TABLE `jnx5e_template_overrides` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_template_overrides` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_template_styles`
--
DROP TABLE IF EXISTS `jnx5e_template_styles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_template_styles` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`template` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`client_id` tinyint unsigned NOT NULL DEFAULT '0',
`home` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`inheritable` tinyint NOT NULL DEFAULT '0',
`parent` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT '',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
KEY `idx_template` (`template`),
KEY `idx_client_id` (`client_id`),
KEY `idx_client_id_home` (`client_id`,`home`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_template_styles`
--
LOCK TABLES `jnx5e_template_styles` WRITE;
/*!40000 ALTER TABLE `jnx5e_template_styles` DISABLE KEYS */;
INSERT INTO `jnx5e_template_styles` VALUES (10,'atum',1,'1','Atum - Default',1,'','{\"hue\":\"hsl(214, 63%, 20%)\",\"bg-light\":\"#f0f4fb\",\"text-dark\":\"#495057\",\"text-light\":\"#ffffff\",\"link-color\":\"#2a69b8\",\"special-color\":\"#001b4c\",\"colorScheme\":\"os\",\"monochrome\":\"0\",\"loginLogo\":\"\",\"loginLogoAlt\":\"\",\"logoBrandLarge\":\"\",\"logoBrandLargeAlt\":\"\",\"logoBrandSmall\":\"\",\"logoBrandSmallAlt\":\"\"}'),(11,'cassiopeia',0,'0','Cassiopeia - Default',1,'','{\"brand\":\"1\",\"logoFile\":\"\",\"siteTitle\":\"\",\"siteDescription\":\"\",\"useFontScheme\":\"0\",\"colorName\":\"colors_standard\",\"fluidContainer\":\"0\",\"stickyHeader\":0,\"backTop\":0}'),(12,'g5_helium',0,'1','Helium - Predeterminado',0,'','{\"configuration\":\"12\",\"preset\":\"default\"}'),(13,'g5_helium',0,'0','Helium - Home - Inicio',0,'','{\"configuration\":\"13\",\"preset\":\"home_-_particles\"}'),(14,'g5_helium',0,'0','Helium - Helium - menu vertical',0,'','{\"configuration\":\"14\",\"preset\":\"default\"}'),(15,'g5_helium',0,'0','Helium - Helium - contacto',0,'','{\"configuration\":\"15\",\"preset\":\"home_-_particles\"}'),(16,'g5_helium',0,'0','Helium - Helium - Ejes tematicos',0,'','{\"configuration\":\"16\",\"preset\":\"default\"}'),(17,'g5_helium',0,'0','Helium - Helium - cronograma',0,'','{\"configuration\":\"17\",\"preset\":\"default\"}');
/*!40000 ALTER TABLE `jnx5e_template_styles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_tuf_metadata`
--
DROP TABLE IF EXISTS `jnx5e_tuf_metadata`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_tuf_metadata` (
`id` int NOT NULL AUTO_INCREMENT,
`update_site_id` int DEFAULT '0',
`root` text COLLATE utf8mb4_unicode_ci,
`targets` text COLLATE utf8mb4_unicode_ci,
`snapshot` text COLLATE utf8mb4_unicode_ci,
`timestamp` text COLLATE utf8mb4_unicode_ci,
`mirrors` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Secure TUF Updates';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_tuf_metadata`
--
LOCK TABLES `jnx5e_tuf_metadata` WRITE;
/*!40000 ALTER TABLE `jnx5e_tuf_metadata` DISABLE KEYS */;
INSERT INTO `jnx5e_tuf_metadata` VALUES (1,1,'{\"signed\":{\"_type\":\"root\",\"spec_version\":\"1.0\",\"version\":12,\"expires\":\"2026-12-16T13:18:16Z\",\"keys\":{\"00e432b504508246e2bd536dd6c13e55e8b3256f0be9f767fae26da6c2a28663\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"250f8d293c49817a83909dead96ad82b62f7ac16844cf589f8d2f0e0b15cab21\"}},\"07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"9b2af2d9b9727227735253d795bd27ea8f0e294a5f3603e822dc5052b44802b9\"}},\"179d107f20a2354ac5bd9a1f32a2df1763c0059617f0c132bebeb4816a1a8637\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"159a4195cbafce2bb959f09ab2b36a2127b8967f94d389f65f1e7892fccfe8b8\"}},\"192ad7343e7d431533d9577fd957b6f924680177db4dc6c0e146dad6810a90a4\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"042b66e1431a1f5c2c15b4a16ea60f23f466851b58e9ff057dbfc2a5e0d821d1\"}},\"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"a18e5ebabc19d5d5984b601a292ece61ba3662ab2d071dc520da5bd4f8948799\"}},\"273e94e5477e306ad6de75be1524860e219e265ff9a57c81ababd0691e45706c\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"1cb6702338830ef1c9e76a022fed27172d475bbaace754d8141ebc96dad8b15f\"}},\"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"cb0a7a131961a20edea051d6dc2b091fb650bd399bd8514adb67b3c60db9f8f9\"}},\"31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"589d029a68b470deff1ca16dbf3eea6b5b3fcba0ae7bb52c468abc7fb058b2a2\"}},\"9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"6043c8bacc76ac5c9750f45454dd865c6ca1fc57d69e14cc192cfd420f6a66a9\"}},\"9eabc37383b243cd236375c66693db385911914b52556e1ec05fc70ed45e1bfe\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"a4b8509488f1c29ab0b1f610e7452fbec78b4f33f1fba5a418d6ff087c567429\"}},\"a1a4b7fdbeedfdeff12d7776de098a2f8de8d2ab7bfe10062a281b3819b078c1\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"ea764b0b475b3c396627ac6689cbd8f54a5f93e87b6f5e3eb44a7ccafb542ff3\"}},\"a599a27a3ec4d520059c591338759dc401006b1c4cb1db85a286e667253d28b6\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"45e416d24d13a60ace5ab028827d5cfc8ba177bb9466bf2acd8efa6e3547911a\"}},\"bfee044dd4574a281c9b7c0b6829913ef292c66c0512d1091a298cfca8493da9\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"6eb44460e5914e8e0df726ddb90bd1f3771b8ce5af19b40fb01ac5a85b023a6f\"}},\"e2229942b0fc1e6d7f82adf258e5bdadac10046d1470b7ec459c9eb4e076026b\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"ad1950e117b29ebe7a38635a2e574123e07571e4f9a011783e053b5f15d2562a\"}},\"ecc851a051c8d6439331ff0a37c7727321fc39896a34f950f73638b8a7cb472e\":{\"keytype\":\"ed25519\",\"scheme\":\"ed25519\",\"keyid_hash_algorithms\":[\"sha256\",\"sha512\"],\"keyval\":{\"public\":\"5d451915bc2b93a0e4e4745bc6a8b292d58996d50e0fb66c78c7827152a65879\"}}},\"roles\":{\"root\":{\"keyids\":[\"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669\",\"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e\",\"192ad7343e7d431533d9577fd957b6f924680177db4dc6c0e146dad6810a90a4\"],\"threshold\":1},\"snapshot\":{\"keyids\":[\"07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f\",\"2dcaf3d0e552f150792f7c636d45429246dcfa34ac35b46a44f5c87cd17d457e\",\"ecc851a051c8d6439331ff0a37c7727321fc39896a34f950f73638b8a7cb472e\",\"e2229942b0fc1e6d7f82adf258e5bdadac10046d1470b7ec459c9eb4e076026b\",\"bfee044dd4574a281c9b7c0b6829913ef292c66c0512d1091a298cfca8493da9\",\"9eabc37383b243cd236375c66693db385911914b52556e1ec05fc70ed45e1bfe\",\"273e94e5477e306ad6de75be1524860e219e265ff9a57c81ababd0691e45706c\",\"00e432b504508246e2bd536dd6c13e55e8b3256f0be9f767fae26da6c2a28663\",\"179d107f20a2354ac5bd9a1f32a2df1763c0059617f0c132bebeb4816a1a8637\",\"a1a4b7fdbeedfdeff12d7776de098a2f8de8d2ab7bfe10062a281b3819b078c1\",\"192ad7343e7d431533d9577fd957b6f924680177db4dc6c0e146dad6810a90a4\",\"a599a27a3ec4d520059c591338759dc401006b1c4cb1db85a286e667253d28b6\"],\"threshold\":1},\"targets\":{\"keyids\":[\"31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3\",\"ecc851a051c8d6439331ff0a37c7727321fc39896a34f950f73638b8a7cb472e\",\"e2229942b0fc1e6d7f82adf258e5bdadac10046d1470b7ec459c9eb4e076026b\",\"bfee044dd4574a281c9b7c0b6829913ef292c66c0512d1091a298cfca8493da9\",\"9eabc37383b243cd236375c66693db385911914b52556e1ec05fc70ed45e1bfe\",\"273e94e5477e306ad6de75be1524860e219e265ff9a57c81ababd0691e45706c\",\"00e432b504508246e2bd536dd6c13e55e8b3256f0be9f767fae26da6c2a28663\",\"179d107f20a2354ac5bd9a1f32a2df1763c0059617f0c132bebeb4816a1a8637\",\"a1a4b7fdbeedfdeff12d7776de098a2f8de8d2ab7bfe10062a281b3819b078c1\"],\"threshold\":1},\"timestamp\":{\"keyids\":[\"9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc\"],\"threshold\":1}},\"consistent_snapshot\":true},\"signatures\":[{\"keyid\":\"1b1b1dd55b2c1c7258714cf1c1ae06f23e4607b28c762d016a9d81c48ffe5669\",\"sig\":\"566d6aa10932b36ebda6fbb56f17a683c0044cc1e94947fa26f454319e544bf83ccaaca8197874ef51c2eb51ba252297bc1b4f8c6d8b58ed31f30d6d8e100801\"}]}','{\"signed\":{\"_type\":\"targets\",\"spec_version\":\"1.0\",\"version\":93,\"expires\":\"2026-07-14T15:39:48Z\",\"targets\":{\"Joomla_5.1.2-Stable-Upgrade_Package.zip\":{\"length\":28134889,\"hashes\":{\"sha512\":\"d6b46cdedb9b31d01a607fe4c2f3a830a3265ed6ae5c0cb7b0f836b1b016ee7c639bd8948df00baf1b61a87f2fc71368a80b39e67ef9ec2b8842ee0ab09a620f\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.1.2 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-1-2/Joomla_5.1.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.1.2/Joomla_5.1.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.1.2/Joomla_5.1.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5909-joomla-5-1-2-and-joomla-4-4-6-security-and-bug-fix-release.html\",\"title\":\"Joomla! 5.1.2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.1.2\",\"php_minimum\":\"8.1.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.1.2\"}},\"Joomla_5.4.1-Stable-Update_Package.zip\":{\"length\":30009045,\"hashes\":{\"sha512\":\"aeddd1143cd574ff3f6e9bc7d7c67bf5d21dc1b404d98498a691b1fff12f5d245b48424f97155f20e2807e4ee2c1aed7313fae3ab8c0d27a08a20947c166c43e\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.1 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-4-1/Joomla_5.4.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.1/Joomla_5.4.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.4.1/Joomla_5.4.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5941-joomla-6-0-1-and-5-4-1-bugfix-release.html\",\"title\":\"Joomla! 5.4.1 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.1\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.1\"}},\"Joomla_5.4.2-Stable-Update_Package.zip\":{\"length\":30316442,\"hashes\":{\"sha512\":\"e83add95a43103ec2d6ccada9e33a29fa6feb2d8e27b6bd16376f4a75d9b588c029b1f24c97b0772e3a6eb0e20d2b8e0e3526cf2af242d90c280ef63abeddaa9\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.2 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-4-2/Joomla_5.4.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.2/Joomla_5.4.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.4.2/Joomla_5.4.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5942-joomla-6-0-2-and-5-4-2-security-bugfix-release.html\",\"title\":\"Joomla! 5.4.2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.2\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.2\"}},\"Joomla_5.4.3-Stable-Update_Package.zip\":{\"length\":30403970,\"hashes\":{\"sha512\":\"63901b3cca37a59fe8028e0adb01eda3bb3669dc410c21b1ab7cb040997980c75d2d52b242d053800a542f4d60cf6a15e5fdabc963014c35aef80f6b8b02857f\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.3 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-4-3/Joomla_5.4.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.3/Joomla_5.4.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.4.3/Joomla_5.4.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5943-joomla-6-0-3-and-5-4-3-bugfix-release.html\",\"title\":\"Joomla! 5.4.3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.3\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.3\"}},\"Joomla_5.4.4-Stable-Update_Package.zip\":{\"length\":30488702,\"hashes\":{\"sha512\":\"56497e3c1bf1b9b21e8149a15e36dd1590f6adffd13b38005af40afdf2a33761fbacc9628c5ea6b0e21eb04fb1ca20ca9bc96b2add4b626ed0b567f43994a65e\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.4 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-4-4/Joomla_5.4.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.4/Joomla_5.4.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.4.4/Joomla_5.4.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5944-joomla-6-0-4-5-4-4-security-bugfix-release.html\",\"title\":\"Joomla! 5.4.4 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.4\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.4\"}},\"Joomla_5.4.5-Stable-Update_Package.zip\":{\"length\":30498375,\"hashes\":{\"sha512\":\"c4ebb9a6782c6ef1a3fe58231b78dbf301e212f0f33325e2a17e8014331dab5dee99ebaf2f90eb3e795d1c24ddc55d9485dba095e3f76d0780a80d0f61204ef2\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.5 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla5/5-4-5/Joomla_5.4.5-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.5/Joomla_5.4.5-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/5.4.5/Joomla_5.4.5-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5951-joomla-5-4-5-bugfix-release.html\",\"title\":\"Joomla! 5.4.5 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.5\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.5\"}},\"Joomla_5.4.5-rc1-Release_Candidate-Update_Package.zip\":{\"length\":30498394,\"hashes\":{\"sha512\":\"902e15b690f8bb33de3d139bc861362bd9f073fef506ce150bdc0f29bf8bde6c10aefa0518bb4f57f39576117913cddf59a8c325c7a517c21d7b6b1aea48aee8\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 5.4.5-rc1 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/5.4.5-rc1/Joomla_5.4.5-rc1-Release_Candidate-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://github.com/joomla/joomla-cms/releases/tag/5.4.5-rc1\",\"title\":\"Joomla! 5.4.5-rc1 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 5.4.5-rc1\",\"php_minimum\":\"8.1.0\",\"channel\":\"5.x\",\"stability\":\"RC\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"11.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(5\\\\.[0-4])|^(4\\\\.4)\"},\"type\":\"file\",\"version\":\"5.4.5-rc1\"}},\"Joomla_6.0.1-Stable-Update_Package.zip\":{\"length\":30247182,\"hashes\":{\"sha512\":\"38f8dd3ff1fd48b9973193a4484591b3b9f4a7516eb7640ff1687d84c81d4dc8cd05f6f58b9f48172bae41a466442f4a5af4a23e3d63869aeb1b05f4fdd6512e\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.0.1 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla6/6-0-1/Joomla_6.0.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.0.1/Joomla_6.0.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/6.0.1/Joomla_6.0.1-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5941-joomla-6-0-1-and-5-4-1-bugfix-release.html\",\"title\":\"Joomla! 6.0.1 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.0.1\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.0.1\"}},\"Joomla_6.0.2-Stable-Update_Package.zip\":{\"length\":30555623,\"hashes\":{\"sha512\":\"c0cff255fcf8e0359453c18365f4906afcce115981a5114e3388da583ad192bde320c8bdd191cd8ca4e55ad5585c9c4cd098c2e1661d8a109d37b94340e4b6a6\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.0.2 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla6/6-0-2/Joomla_6.0.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.0.2/Joomla_6.0.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/6.0.2/Joomla_6.0.2-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5942-joomla-6-0-2-and-5-4-2-security-bugfix-release.html\",\"title\":\"Joomla! 6.0.2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.0.2\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.0.2\"}},\"Joomla_6.0.3-Stable-Update_Package.zip\":{\"length\":30645479,\"hashes\":{\"sha512\":\"212a681935d260925cbb15e0fa4d9c9e40978aa32ab7137ff1e0775be26eaa6634317521ec8a411aed3f76990758cbe4dcec3c86186458238dc45f8a3886e5dc\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.0.3 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla6/6-0-3/Joomla_6.0.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.0.3/Joomla_6.0.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/6.0.3/Joomla_6.0.3-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5943-joomla-6-0-3-and-5-4-3-bugfix-release.html\",\"title\":\"Joomla! 6.0.3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.0.3\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.0.3\"}},\"Joomla_6.0.4-Stable-Update_Package.zip\":{\"length\":30730380,\"hashes\":{\"sha512\":\"39de3d222482dc1d6ba3041c9cbfb259dbf17762d917af59906c1c5c43b5da5016d5fb54d788f8b866fb473e4b57e3f1780db74be115300c181897c75e38c2e5\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.0.4 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla6/6-0-4/Joomla_6.0.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.0.4/Joomla_6.0.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/6.0.4/Joomla_6.0.4-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5944-joomla-6-0-4-5-4-4-security-bugfix-release.html\",\"title\":\"Joomla! 6.0.4 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.0.4\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.0.4\"}},\"Joomla_6.1.0-Stable-Update_Package.zip\":{\"length\":31441199,\"hashes\":{\"sha512\":\"e066487307a7952450d4f37ce97a576ae185728793d081c98416db9bb2a830fa4cfea0c5f6c7828bb91523cd26d6120c0d5111fc39962fa71cd875a8983c2c1a\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0 Release\",\"downloads\":[{\"url\":\"https://downloads.joomla.org/cms/joomla6/6-1-0/Joomla_6.1.0-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0/Joomla_6.1.0-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"},{\"url\":\"https://update.joomla.org/releases/6.1.0/Joomla_6.1.0-Stable-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5950-joomla-6-1-is-here.html\",\"title\":\"Joomla! 6.1.0 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Stable\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0\"}},\"Joomla_6.1.0-alpha2-Alpha-Full_Package.zip\":{\"length\":33107068,\"hashes\":{\"sha512\":\"be9711e1bda18981f077369105399eff9e8ab9203cad43d2c5385689e32db7bc6e11f3b5e406194dd9c2d7f5892bb92c6702cf5436badf3d971150ffcfda0a72\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-alpha2 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-alpha2/Joomla_6.1.0-alpha2-Alpha-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://developer.joomla.org/news/1015-joomla-6-1-alpha2-see-how-its-coming-together.html\",\"title\":\"Joomla! 6.1.0-alpha2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-alpha2\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Alpha\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-alpha2\"}},\"Joomla_6.1.0-alpha2-Alpha-Update_Package.zip\":{\"length\":30736927,\"hashes\":{\"sha512\":\"388790c8b32f624e5b33531f4a41eefa85b5273e76e20a847b01c7eaa59367939317581e5f75ade6c024f25894740c9651ce2faaa330ac8a7fb863434c170879\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-alpha2 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-alpha2/Joomla_6.1.0-alpha2-Alpha-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://developer.joomla.org/news/1015-joomla-6-1-alpha2-see-how-its-coming-together.html\",\"title\":\"Joomla! 6.1.0-alpha2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-alpha2\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Alpha\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-alpha2\"}},\"Joomla_6.1.0-alpha3-Alpha-Full_Package.zip\":{\"length\":33216519,\"hashes\":{\"sha512\":\"16eb1fb81ef4b0c2f3ebca14538945d291623f544d77946e556fc2f17561bda55c256be4f56c0f5034609bbc10e7dcbf0995691b0cd613f5dc58658fe964333b\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-alpha3 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-alpha3/Joomla_6.1.0-alpha3-Alpha-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://developer.joomla.org/news/1018-joomla-6-1-alpha3-wrapping-up-the-alpha-phase.html\",\"title\":\"Joomla! 6.1.0-alpha3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-alpha3\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Alpha\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-alpha3\"}},\"Joomla_6.1.0-alpha3-Alpha-Update_Package.zip\":{\"length\":30842460,\"hashes\":{\"sha512\":\"9290f78cdba43c0bbb4e9b812a1e06cd548e6a4e14b51529d50d5acab3fdb4f7ab5cc6828655596159af41962b51f5a14008a26f06e3f9c5b3781f309cb52a19\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-alpha3 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-alpha3/Joomla_6.1.0-alpha3-Alpha-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://developer.joomla.org/news/1018-joomla-6-1-alpha3-wrapping-up-the-alpha-phase.html\",\"title\":\"Joomla! 6.1.0-alpha3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-alpha3\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Alpha\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-alpha3\"}},\"Joomla_6.1.0-beta3-Beta-Update_Package.zip\":{\"length\":31413826,\"hashes\":{\"sha512\":\"9f03df89f3112706026cd9e99f4e3e1cc46a706db8492957e093ae416aadc568b422bcebbf74d45ffc07072d011c0d64e64e9891adcc3f56326da22ccb62d449\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-beta3 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-beta3/Joomla_6.1.0-beta3-Beta-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://developer.joomla.org/news/1026-joomla-6-1-beta3-help-make-it-stable.html\",\"title\":\"Joomla! 6.1.0-beta3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-beta3\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"Beta\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-beta3\"}},\"Joomla_6.1.0-rc1-Release_Candidate-Update_Package.zip\":{\"length\":31432633,\"hashes\":{\"sha512\":\"6b06981c9e3dc2f0345fc7ef6372d14fa4d84f5f8f424465139dd0ec9c596cf297a554a61b0bcbe02d1c4b494f5e8f1abb821f715222f1f3610045ea7c5f60cc\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-rc1 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-rc1/Joomla_6.1.0-rc1-Release_Candidate-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/news/5945-joomla-6-1-release-candidate-test-the-final-package.html\",\"title\":\"Joomla! 6.1.0-rc1 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-rc1\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"RC\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-rc1\"}},\"Joomla_6.1.0-rc2-Release_Candidate-Update_Package.zip\":{\"length\":31433359,\"hashes\":{\"sha512\":\"b9b85aa048c26face653f9fb62f4ca28c294fa2a9c643aed73b581742d07db6d9d0b3169b4f7a437d1b233fe4771e0efe6395280a22139afa0a459908ba5d9b3\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-rc2 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-rc2/Joomla_6.1.0-rc2-Release_Candidate-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5949-joomla-6-1-release-candidate-2-test-the-final-package.html\",\"title\":\"Joomla! 6.1.0-rc2 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-rc2\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"RC\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-rc2\"}},\"Joomla_6.1.0-rc3-Release_Candidate-Update_Package.zip\":{\"length\":31441220,\"hashes\":{\"sha512\":\"5e66b9407f56f0d5d948a85743872e034a1e45b2d8b0cd876cbedb16edcfe39a32f95172677e2a12514a062aae8e1eb94ca3612ea1adb757c3911865cf2e242b\"},\"custom\":{\"client\":\"site\",\"description\":\"Joomla! 6.1.0-rc3 Release\",\"downloads\":[{\"url\":\"https://github.com/joomla/joomla-cms/releases/download/6.1.0-rc3/Joomla_6.1.0-rc3-Release_Candidate-Update_Package.zip\",\"format\":\"zip\",\"type\":\"full\"}],\"element\":\"joomla\",\"infourl\":{\"url\":\"https://www.joomla.org/announcements/release-news/5952-joomla-6-1-release-candidate-3-test-the-final-package.html\",\"title\":\"Joomla! 6.1.0-rc3 Release\"},\"maintainer\":\"Joomla! Production Department\",\"maintainerurl\":\"https://www.joomla.org\",\"name\":\"Joomla! 6.1.0-rc3\",\"php_minimum\":\"8.3.0\",\"channel\":\"6.x\",\"stability\":\"RC\",\"supported_databases\":{\"mariadb\":\"10.4\",\"mysql\":\"8.0.13\",\"postgresql\":\"12.0\"},\"targetplatform\":{\"name\":\"joomla\",\"version\":\"(6\\\\.[0-4])|^(5\\\\.4)\"},\"type\":\"file\",\"version\":\"6.1.0-rc3\"}}}},\"signatures\":[{\"keyid\":\"a1a4b7fdbeedfdeff12d7776de098a2f8de8d2ab7bfe10062a281b3819b078c1\",\"sig\":\"e8f4fd7a0c512c7b20ea5601aa7e632abd9d29facd802a07cdefa168e62a78b07ca498e49af1bd63dd5f6624e26dc147d200809e5bd7426c3a542df1f749b30a\"},{\"keyid\":\"31dd7c7290d664c9b88c0dead2697175293ea7df81b7f24153a37370fd3901c3\",\"sig\":\"6660cd30ec6534a216b676c2337a54a89d6a9f56e5ea0177ce007de105f87325a0597d479a5e4c23e0cda94fa82e1c07e12e848f4d56929ebc4edf012bc08408\"}]}','{\"signed\":{\"_type\":\"snapshot\",\"spec_version\":\"1.0\",\"version\":104,\"expires\":\"2026-11-10T15:40:40Z\",\"meta\":{\"targets.json\":{\"length\":22494,\"hashes\":{\"sha512\":\"9cb982a888ca4011b848f3c41419263e225d1836118ed577c3803f8e04569bc84c3b27297cde7badbac1af1f9c71e4b42c667358f9ddfc09eb3bea7309957e06\"},\"version\":93}}},\"signatures\":[{\"keyid\":\"07eb082f367c034a95878687f6648aa76d93652b6ee73e58817053d89af6c44f\",\"sig\":\"1649a05750356f8a1c5bf6244a5b61de4c1ecd835f022fd1819467e8f8c4a1978aba61931ac9c0244002ee30903aeff0804b8033a43fcc2969393d628a294d0c\"}]}','{\"signed\":{\"_type\":\"timestamp\",\"spec_version\":\"1.0\",\"version\":1045,\"expires\":\"2026-04-24T01:31:41Z\",\"meta\":{\"snapshot.json\":{\"length\":533,\"hashes\":{\"sha512\":\"beda8714f9e8c5cce3800d26ff2d51f526fb02e7d5923619dc345d892c8f8705eb461a6a931935e91ab84ec3187fe54101834cde49eff84d77f2811f6444069e\"},\"version\":104}}},\"signatures\":[{\"keyid\":\"9e41a9d62d94c6a1c8a304f62c5bd72d84a9f286f27e8327cedeacb09e5156cc\",\"sig\":\"13ca17a69013b386b4a3d327f263b7139f2f4f32ae26342031b1fa270d1da45e86d39bf638ddf2a9320f8fe6245d4fcaeca5d26f2f3dbe35a7e3d5ccab02ac0c\"}]}',NULL);
/*!40000 ALTER TABLE `jnx5e_tuf_metadata` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_ucm_base`
--
DROP TABLE IF EXISTS `jnx5e_ucm_base`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_ucm_base` (
`ucm_id` int unsigned NOT NULL,
`ucm_item_id` int NOT NULL,
`ucm_type_id` int NOT NULL,
`ucm_language_id` int NOT NULL,
PRIMARY KEY (`ucm_id`),
KEY `idx_ucm_item_id` (`ucm_item_id`),
KEY `idx_ucm_type_id` (`ucm_type_id`),
KEY `idx_ucm_language_id` (`ucm_language_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_ucm_base`
--
LOCK TABLES `jnx5e_ucm_base` WRITE;
/*!40000 ALTER TABLE `jnx5e_ucm_base` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_ucm_base` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_ucm_content`
--
DROP TABLE IF EXISTS `jnx5e_ucm_content`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_ucm_content` (
`core_content_id` int unsigned NOT NULL AUTO_INCREMENT,
`core_type_alias` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'FK to the content types table',
`core_title` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`core_alias` varchar(400) CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL DEFAULT '',
`core_body` mediumtext COLLATE utf8mb4_unicode_ci,
`core_state` tinyint NOT NULL DEFAULT '0',
`core_checked_out_time` datetime DEFAULT NULL,
`core_checked_out_user_id` int unsigned DEFAULT NULL,
`core_access` int unsigned NOT NULL DEFAULT '0',
`core_params` text COLLATE utf8mb4_unicode_ci,
`core_featured` tinyint unsigned NOT NULL DEFAULT '0',
`core_metadata` varchar(2048) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'JSON encoded metadata properties.',
`core_created_user_id` int unsigned NOT NULL DEFAULT '0',
`core_created_by_alias` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`core_created_time` datetime NOT NULL,
`core_modified_user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Most recent user that modified',
`core_modified_time` datetime NOT NULL,
`core_language` char(7) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`core_publish_up` datetime DEFAULT NULL,
`core_publish_down` datetime DEFAULT NULL,
`core_content_item_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'ID from the individual type table',
`asset_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'FK to the #__assets table.',
`core_images` text COLLATE utf8mb4_unicode_ci,
`core_urls` text COLLATE utf8mb4_unicode_ci,
`core_hits` int unsigned NOT NULL DEFAULT '0',
`core_version` int unsigned NOT NULL DEFAULT '1',
`core_ordering` int NOT NULL DEFAULT '0',
`core_metakey` text COLLATE utf8mb4_unicode_ci,
`core_metadesc` text COLLATE utf8mb4_unicode_ci,
`core_catid` int unsigned NOT NULL DEFAULT '0',
`core_type_id` int unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`core_content_id`),
KEY `tag_idx` (`core_state`,`core_access`),
KEY `idx_access` (`core_access`),
KEY `idx_alias` (`core_alias`(100)),
KEY `idx_language` (`core_language`),
KEY `idx_title` (`core_title`(100)),
KEY `idx_modified_time` (`core_modified_time`),
KEY `idx_created_time` (`core_created_time`),
KEY `idx_content_type` (`core_type_alias`(100)),
KEY `idx_core_modified_user_id` (`core_modified_user_id`),
KEY `idx_core_checked_out_user_id` (`core_checked_out_user_id`),
KEY `idx_core_created_user_id` (`core_created_user_id`),
KEY `idx_core_type_id` (`core_type_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Contains core content data in name spaced fields';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_ucm_content`
--
LOCK TABLES `jnx5e_ucm_content` WRITE;
/*!40000 ALTER TABLE `jnx5e_ucm_content` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_ucm_content` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_update_sites`
--
DROP TABLE IF EXISTS `jnx5e_update_sites`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_update_sites` (
`update_site_id` int NOT NULL AUTO_INCREMENT,
`name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '',
`location` text COLLATE utf8mb4_unicode_ci NOT NULL,
`enabled` int DEFAULT '0',
`last_check_timestamp` bigint DEFAULT '0',
`extra_query` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT '',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
PRIMARY KEY (`update_site_id`)
) ENGINE=InnoDB AUTO_INCREMENT=23 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Update Sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_update_sites`
--
LOCK TABLES `jnx5e_update_sites` WRITE;
/*!40000 ALTER TABLE `jnx5e_update_sites` DISABLE KEYS */;
INSERT INTO `jnx5e_update_sites` VALUES (1,'Joomla! Core','tuf','https://update.joomla.org/cms/',1,1776867474,'',NULL,NULL),(2,'Accredited Joomla! Translations','collection','https://update.joomla.org/language/translationlist_5.xml',1,1776867474,'',NULL,NULL),(3,'Joomla! Update Component','extension','https://update.joomla.org/core/extensions/com_joomlaupdate.xml',1,1776867474,'',NULL,NULL),(4,'Gantry 5','extension','http://updates.gantry.org/5.0/joomla/pkg_gantry5.xml',1,1776867475,'',NULL,NULL),(5,'Gantry 5','collection','http://updates.gantry.org/5.0/joomla/list.xml',1,1776867476,'',NULL,NULL),(6,'Helium Template','extension','https://updates.gantry.org/5.0/joomla/tpl_g5_helium.xml',1,1776867476,'',NULL,NULL),(7,'DJ-ImageSlider Package','extension','https://dj-extensions.com/index.php?option=com_ars&view=update&task=stream&format=xml&id=3',1,1776867477,'',NULL,NULL),(8,'Simple Tabs Plugin','extension','http://www.lesarbresdesign.info/jupdate?product=plg_simpletabs',1,1776867482,'',NULL,NULL),(9,'Simple Sliders Plugin','extension','http://www.lesarbresdesign.info/jupdate?product=plg_simplesliders',1,1776867487,'',NULL,NULL),(10,'DPCalendar Free','extension','https://cdn.digital-peak.com/update/stream.php?id=4',1,1776867488,'',NULL,NULL),(11,'DPCalendar Module Mini','extension','https://cdn.digital-peak.com/update/stream.php?id=50',1,1776867490,'',NULL,NULL),(12,'Image Effect CK Light','extension','https://update.joomlack.fr/imageeffectck_light_update.xml',1,1776867491,'',NULL,NULL),(13,'COM_PHOCADOWNLOAD','extension','https://raw.githubusercontent.com/PhocaCz/PhocaDownload/master/manifest.xml',1,1776867491,'',NULL,NULL),(14,'plg_captcha_hcaptcha','extension','https://data2site.com/updates/hcaptcha',1,1776867492,'',NULL,NULL),(15,'Ol Testimonials','extension','https://www.olwebdesign.com/updates/mod_ol_testimonials.xml',1,1776867493,'',NULL,NULL),(18,'PLG_FINDER_PHOCADOWNLOAD','extension','https://raw.githubusercontent.com/PhocaCz/PhocaDownloadFinderPlugin/master/manifest.xml',1,1776867493,'',NULL,NULL),(22,'Smart Slider 3 Updates','extension','https://api.nextendweb.com/v1/?action=joomla_version&platform=joomla&product=smartslider3&pro=0&channel=stable',1,1776867494,'',NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_update_sites` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_update_sites_extensions`
--
DROP TABLE IF EXISTS `jnx5e_update_sites_extensions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_update_sites_extensions` (
`update_site_id` int NOT NULL DEFAULT '0',
`extension_id` int NOT NULL DEFAULT '0',
PRIMARY KEY (`update_site_id`,`extension_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Links extensions to update sites';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_update_sites_extensions`
--
LOCK TABLES `jnx5e_update_sites_extensions` WRITE;
/*!40000 ALTER TABLE `jnx5e_update_sites_extensions` DISABLE KEYS */;
INSERT INTO `jnx5e_update_sites_extensions` VALUES (1,240),(2,241),(2,248),(2,286),(2,293),(3,24),(4,256),(5,256),(6,257),(7,260),(8,261),(9,262),(10,270),(11,271),(12,272),(13,274),(14,275),(15,276),(18,282),(22,277);
/*!40000 ALTER TABLE `jnx5e_update_sites_extensions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_updates`
--
DROP TABLE IF EXISTS `jnx5e_updates`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_updates` (
`update_id` int NOT NULL AUTO_INCREMENT,
`update_site_id` int DEFAULT '0',
`extension_id` int DEFAULT '0',
`name` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`element` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT '',
`type` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '',
`folder` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT '',
`client_id` tinyint DEFAULT '0',
`version` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT '',
`data` text COLLATE utf8mb4_unicode_ci NOT NULL,
`detailsurl` text COLLATE utf8mb4_unicode_ci NOT NULL,
`infourl` text COLLATE utf8mb4_unicode_ci NOT NULL,
`changelogurl` text COLLATE utf8mb4_unicode_ci,
`extra_query` varchar(1000) COLLATE utf8mb4_unicode_ci DEFAULT '',
PRIMARY KEY (`update_id`)
) ENGINE=InnoDB AUTO_INCREMENT=264 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Available Updates';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_updates`
--
LOCK TABLES `jnx5e_updates` WRITE;
/*!40000 ALTER TABLE `jnx5e_updates` DISABLE KEYS */;
INSERT INTO `jnx5e_updates` VALUES (196,1,240,'Joomla! 5.4.5','Joomla! 5.4.5 Release','joomla','file','',0,'5.4.5','','https://update.joomla.org/cms/','https://www.joomla.org/announcements/release-news/5951-joomla-5-4-5-bugfix-release.html',NULL,''),(197,2,0,'Afrikaans','','pkg_af-ZA','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/af-ZA_details.xml','','',''),(198,2,0,'Arabic Unitag','','pkg_ar-AA','package','',0,'5.3.2.3','','https://update.joomla.org/language/details5/ar-AA_details.xml','','',''),(199,2,0,'Belarusian','','pkg_be-BY','package','',0,'5.4.0.1','','https://update.joomla.org/language/details5/be-BY_details.xml','','',''),(200,2,0,'Bulgarian','','pkg_bg-BG','package','',0,'5.3.1.4','','https://update.joomla.org/language/details5/bg-BG_details.xml','','',''),(201,2,0,'Catalan','','pkg_ca-ES','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/ca-ES_details.xml','','',''),(202,2,0,'Chinese, Simplified','','pkg_zh-CN','package','',0,'5.4.1.1','','https://update.joomla.org/language/details5/zh-CN_details.xml','','',''),(203,2,0,'Chinese, Traditional','','pkg_zh-TW','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/zh-TW_details.xml','','',''),(204,2,0,'Croatian','','pkg_hr-HR','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/hr-HR_details.xml','','',''),(205,2,0,'Czech','','pkg_cs-CZ','package','',0,'5.4.2.1','','https://update.joomla.org/language/details5/cs-CZ_details.xml','','',''),(206,2,0,'Danish','','pkg_da-DK','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/da-DK_details.xml','','',''),(207,2,0,'Dutch','','pkg_nl-NL','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/nl-NL_details.xml','','',''),(208,2,0,'English, Australia','','pkg_en-AU','package','',0,'5.3.0.1','','https://update.joomla.org/language/details5/en-AU_details.xml','','',''),(209,2,0,'English, Canada','','pkg_en-CA','package','',0,'5.4.2.1','','https://update.joomla.org/language/details5/en-CA_details.xml','','',''),(210,2,0,'English, New Zealand','','pkg_en-NZ','package','',0,'5.4.2.1','','https://update.joomla.org/language/details5/en-NZ_details.xml','','',''),(211,2,0,'English, USA','','pkg_en-US','package','',0,'5.4.2.1','','https://update.joomla.org/language/details5/en-US_details.xml','','',''),(212,2,0,'Estonian','','pkg_et-EE','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/et-EE_details.xml','','',''),(213,2,0,'Finnish','','pkg_fi-FI','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/fi-FI_details.xml','','',''),(214,2,0,'Flemish','','pkg_nl-BE','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/nl-BE_details.xml','','',''),(215,2,0,'French','','pkg_fr-FR','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/fr-FR_details.xml','','',''),(216,2,0,'French, Canada','','pkg_fr-CA','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/fr-CA_details.xml','','',''),(217,2,0,'Georgian','','pkg_ka-GE','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/ka-GE_details.xml','','',''),(218,2,0,'German','','pkg_de-DE','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/de-DE_details.xml','','',''),(219,2,0,'German, Austria','','pkg_de-AT','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/de-AT_details.xml','','',''),(220,2,0,'German, Liechtenstein','','pkg_de-LI','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/de-LI_details.xml','','',''),(221,2,0,'German, Luxembourg','','pkg_de-LU','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/de-LU_details.xml','','',''),(222,2,0,'German, Switzerland','','pkg_de-CH','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/de-CH_details.xml','','',''),(223,2,0,'Greek','','pkg_el-GR','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/el-GR_details.xml','','',''),(224,2,0,'Hungarian','','pkg_hu-HU','package','',0,'5.4.0.2','','https://update.joomla.org/language/details5/hu-HU_details.xml','','',''),(225,2,0,'Italian','','pkg_it-IT','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/it-IT_details.xml','','',''),(226,2,0,'Japanese','','pkg_ja-JP','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/ja-JP_details.xml','','',''),(227,2,0,'Kazakh','','pkg_kk-KZ','package','',0,'5.0.0.4','','https://update.joomla.org/language/details5/kk-KZ_details.xml','','',''),(228,2,0,'Korean','','pkg_ko-KR','package','',0,'5.0.2.1','','https://update.joomla.org/language/details5/ko-KR_details.xml','','',''),(229,2,0,'Laotian','','pkg_lo-LA','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/lo-LA_details.xml','','',''),(230,2,0,'Latvian','','pkg_lv-LV','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/lv-LV_details.xml','','',''),(231,2,0,'Lithuanian','','pkg_lt-LT','package','',0,'5.3.0.1','','https://update.joomla.org/language/details5/lt-LT_details.xml','','',''),(232,2,0,'Malay','','pkg_ms-MY','package','',0,'5.4.3.5','','https://update.joomla.org/language/details5/ms-MY_details.xml','','',''),(233,2,0,'Norwegian Bokmål','','pkg_nb-NO','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/nb-NO_details.xml','','',''),(234,2,0,'Pashto Afghanistan','','pkg_ps-AF','package','',0,'5.0.1.1','','https://update.joomla.org/language/details5/ps-AF_details.xml','','',''),(235,2,0,'Persian Farsi','','pkg_fa-IR','package','',0,'5.4.3.1','','https://update.joomla.org/language/details5/fa-IR_details.xml','','',''),(236,2,0,'Polish','','pkg_pl-PL','package','',0,'5.4.0.1','','https://update.joomla.org/language/details5/pl-PL_details.xml','','',''),(237,2,0,'Portuguese, Brazil','','pkg_pt-BR','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/pt-BR_details.xml','','',''),(238,2,0,'Portuguese, Portugal','','pkg_pt-PT','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/pt-PT_details.xml','','',''),(239,2,0,'Romanian','','pkg_ro-RO','package','',0,'5.4.0.1','','https://update.joomla.org/language/details5/ro-RO_details.xml','','',''),(240,2,0,'Russian','','pkg_ru-RU','package','',0,'5.4.1.1','','https://update.joomla.org/language/details5/ru-RU_details.xml','','',''),(241,2,0,'Serbian, Cyrillic','','pkg_sr-RS','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/sr-RS_details.xml','','',''),(242,2,0,'Serbian, Latin','','pkg_sr-YU','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/sr-YU_details.xml','','',''),(243,2,0,'Slovak','','pkg_sk-SK','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/sk-SK_details.xml','','',''),(244,2,0,'Slovenian','','pkg_sl-SI','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/sl-SI_details.xml','','',''),(245,2,293,'Spanish','','pkg_es-ES','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/es-ES_details.xml','','',''),(246,2,0,'Swedish','','pkg_sv-SE','package','',0,'5.4.4.1','','https://update.joomla.org/language/details5/sv-SE_details.xml','','',''),(247,2,0,'Tamil, India','','pkg_ta-IN','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/ta-IN_details.xml','','',''),(248,2,0,'Thai','','pkg_th-TH','package','',0,'5.4.0.1','','https://update.joomla.org/language/details5/th-TH_details.xml','','',''),(249,2,0,'Turkish','','pkg_tr-TR','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/tr-TR_details.xml','','',''),(250,2,0,'Ukrainian','','pkg_uk-UA','package','',0,'5.4.0.2','','https://update.joomla.org/language/details5/uk-UA_details.xml','','',''),(251,2,0,'Urdu, Pakistan','','pkg_ur-PK','package','',0,'5.1.2.1','','https://update.joomla.org/language/details5/ur-PK_details.xml','','',''),(252,2,0,'Welsh','','pkg_cy-GB','package','',0,'5.4.5.1','','https://update.joomla.org/language/details5/cy-GB_details.xml','','',''),(253,4,0,'Gantry 5','Gantry 5 Framework','pkg_gantry5','package','',1,'5.6.1','','http://updates.gantry.org/5.0/joomla/pkg_gantry5.xml','https://docs.gantry.org/gantry5',NULL,''),(254,5,0,'Gantry 5','Gantry 5 Framework','pkg_gantry5','package','',0,'5.6.1','','https://updates.gantry.org/5.0/joomla/pkg_gantry5.xml','','',''),(255,5,257,'Helium','Helium Template','g5_helium','template','',0,'5.6.1','','https://updates.gantry.org/5.0/joomla/tpl_g5_helium.xml','','',''),(256,5,0,'Hydrogen','Hydrogen Template','g5_hydrogen','template','',0,'5.6.1','','https://updates.gantry.org/5.0/joomla/tpl_g5_hydrogen.xml','','',''),(257,6,0,'Helium','Helium Template','g5_helium','template','',1,'5.6.1','','https://updates.gantry.org/5.0/joomla/tpl_g5_helium.xml','https://docs.gantry.org/gantry5',NULL,''),(258,10,0,'DPCalendar Free','DPCalendar Free','pkg_dpcalendar','package','',0,'10.8.0','','https://cdn.digital-peak.com/update/stream.php?id=4','https://joomla.digital-peak.com/download/dpcalendar/dpcalendar-10.8.0',NULL,''),(259,11,271,'DPCalendar Module Mini','DPCalendar Module Mini','mod_dpcalendar_mini','module','',0,'10.8.0','','https://cdn.digital-peak.com/update/stream.php?id=50','https://joomla.digital-peak.com/download/dpcalendar/dpcalendar-10.8.0',NULL,''),(260,12,0,'Image Effect CK','Style any image in your page','imageeffectck','plugin','system',1,'2.6.0','','https://update.joomlack.fr/imageeffectck_light_update.xml','https://www.joomlack.fr/en/joomla-extensions/image-effect-ck',NULL,''),(261,13,274,' Phoca Download ',' Phoca Download is download manager for Joomla! CMS. It includes component, modules and plugins and allows displaying files on website which can be downloaded (previewed, played) by website visitors. ','com_phocadownload','component','',1,'6.1.0','','https://raw.githubusercontent.com/PhocaCz/PhocaDownload/master/manifest.xml','http://www.phoca.cz/version/index.php?phocadownload=6.1.0',NULL,''),(262,15,276,'Testimonials','Testimonials','mod_ol_testimonials','module','',0,'4.2.3','','https://www.olwebdesign.com/updates/mod_ol_testimonials.xml','https://www.olwebdesign.com',NULL,''),(263,22,277,'Smart Slider 3','','com_smartslider3','component','',1,'3.5.1.36','','https://api.nextendweb.com/v1/?action=joomla_version&platform=joomla&product=smartslider3&pro=0&channel=stable','https://smartslider.helpscoutdocs.com/article/1746-changelog',NULL,'');
/*!40000 ALTER TABLE `jnx5e_updates` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_user_keys`
--
DROP TABLE IF EXISTS `jnx5e_user_keys`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_user_keys` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`series` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`time` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL,
`uastring` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `series` (`series`),
KEY `user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_user_keys`
--
LOCK TABLES `jnx5e_user_keys` WRITE;
/*!40000 ALTER TABLE `jnx5e_user_keys` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_user_keys` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_user_mfa`
--
DROP TABLE IF EXISTS `jnx5e_user_mfa`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_user_mfa` (
`id` int NOT NULL AUTO_INCREMENT,
`user_id` int unsigned NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`method` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`default` tinyint NOT NULL DEFAULT '0',
`options` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_on` datetime NOT NULL,
`last_used` datetime DEFAULT NULL,
`tries` int NOT NULL DEFAULT '0',
`last_try` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Multi-factor Authentication settings';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_user_mfa`
--
LOCK TABLES `jnx5e_user_mfa` WRITE;
/*!40000 ALTER TABLE `jnx5e_user_mfa` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_user_mfa` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_user_notes`
--
DROP TABLE IF EXISTS `jnx5e_user_notes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_user_notes` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`user_id` int unsigned NOT NULL DEFAULT '0',
`catid` int unsigned NOT NULL DEFAULT '0',
`subject` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`body` text COLLATE utf8mb4_unicode_ci NOT NULL,
`state` tinyint NOT NULL DEFAULT '0',
`checked_out` int unsigned DEFAULT NULL,
`checked_out_time` datetime DEFAULT NULL,
`created_user_id` int unsigned NOT NULL DEFAULT '0',
`created_time` datetime NOT NULL,
`modified_user_id` int unsigned NOT NULL DEFAULT '0',
`modified_time` datetime NOT NULL,
`review_time` datetime DEFAULT NULL,
`publish_up` datetime DEFAULT NULL,
`publish_down` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_user_id` (`user_id`),
KEY `idx_category_id` (`catid`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_user_notes`
--
LOCK TABLES `jnx5e_user_notes` WRITE;
/*!40000 ALTER TABLE `jnx5e_user_notes` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_user_notes` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_user_profiles`
--
DROP TABLE IF EXISTS `jnx5e_user_profiles`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_user_profiles` (
`user_id` int NOT NULL,
`profile_key` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
`profile_value` text COLLATE utf8mb4_unicode_ci NOT NULL,
`ordering` int NOT NULL DEFAULT '0',
UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='Simple user profile storage table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_user_profiles`
--
LOCK TABLES `jnx5e_user_profiles` WRITE;
/*!40000 ALTER TABLE `jnx5e_user_profiles` DISABLE KEYS */;
INSERT INTO `jnx5e_user_profiles` VALUES (44,'guidedtour.id.12','{\"state\":\"completed\"}',0),(44,'guidedtour.id.13','{\"state\":\"completed\"}',0),(44,'guidedtour.id.14','{\"state\":\"completed\"}',0),(44,'joomlatoken.enabled','1',2),(44,'joomlatoken.token','DmKcFc8qw6rmme1zYPTTKG2sebr+QTAH33w2bRw7HZ4=',1),(45,'guidedtour.id.12','{\"state\":\"delayed\",\"time\":{\"date\":\"2025-04-11 22:22:08.568233\",\"timezone_type\":3,\"timezone\":\"UTC\"}}',0),(45,'joomlatoken.enabled','1',2),(45,'joomlatoken.token','KBpPoOc2bysxlYGbUjCq8vWp2AvmZeLihZx89yCurtk=',1);
/*!40000 ALTER TABLE `jnx5e_user_profiles` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_user_usergroup_map`
--
DROP TABLE IF EXISTS `jnx5e_user_usergroup_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_user_usergroup_map` (
`user_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__users.id',
`group_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Foreign Key to #__usergroups.id',
PRIMARY KEY (`user_id`,`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_user_usergroup_map`
--
LOCK TABLES `jnx5e_user_usergroup_map` WRITE;
/*!40000 ALTER TABLE `jnx5e_user_usergroup_map` DISABLE KEYS */;
INSERT INTO `jnx5e_user_usergroup_map` VALUES (44,8),(45,8);
/*!40000 ALTER TABLE `jnx5e_user_usergroup_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_usergroups`
--
DROP TABLE IF EXISTS `jnx5e_usergroups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_usergroups` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`parent_id` int unsigned NOT NULL DEFAULT '0' COMMENT 'Adjacency List Reference Id',
`lft` int NOT NULL DEFAULT '0' COMMENT 'Nested set lft.',
`rgt` int NOT NULL DEFAULT '0' COMMENT 'Nested set rgt.',
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_usergroup_parent_title_lookup` (`parent_id`,`title`),
KEY `idx_usergroup_title_lookup` (`title`),
KEY `idx_usergroup_adjacency_lookup` (`parent_id`),
KEY `idx_usergroup_nested_set_lookup` (`lft`,`rgt`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_usergroups`
--
LOCK TABLES `jnx5e_usergroups` WRITE;
/*!40000 ALTER TABLE `jnx5e_usergroups` DISABLE KEYS */;
INSERT INTO `jnx5e_usergroups` VALUES (1,0,1,18,'Public'),(2,1,8,15,'Registered'),(3,2,9,14,'Author'),(4,3,10,13,'Editor'),(5,4,11,12,'Publisher'),(6,1,4,7,'Manager'),(7,6,5,6,'Administrator'),(8,1,16,17,'Super Users'),(9,1,2,3,'Guest');
/*!40000 ALTER TABLE `jnx5e_usergroups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_users`
--
DROP TABLE IF EXISTS `jnx5e_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_users` (
`id` int NOT NULL AUTO_INCREMENT,
`name` varchar(400) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`username` varchar(150) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`password` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`block` tinyint NOT NULL DEFAULT '0',
`sendEmail` tinyint DEFAULT '0',
`registerDate` datetime NOT NULL,
`lastvisitDate` datetime DEFAULT NULL,
`activation` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`params` text COLLATE utf8mb4_unicode_ci NOT NULL,
`lastResetTime` datetime DEFAULT NULL COMMENT 'Date of last password reset',
`resetCount` int NOT NULL DEFAULT '0' COMMENT 'Count of password resets since lastResetTime',
`otpKey` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Two factor authentication encrypted keys',
`otep` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Backup Codes',
`requireReset` tinyint NOT NULL DEFAULT '0' COMMENT 'Require user to reset password on next login',
`authProvider` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT 'Name of used authentication plugin',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_username` (`username`),
KEY `idx_name` (`name`(100)),
KEY `idx_block` (`block`),
KEY `email` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=46 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_users`
--
LOCK TABLES `jnx5e_users` WRITE;
/*!40000 ALTER TABLE `jnx5e_users` DISABLE KEYS */;
INSERT INTO `jnx5e_users` VALUES (44,'admin','admin','[email protected]','$2y$12$DOl5BzlFJIyJ6v7QqTMPweYFVV3gqtFyf7yYIi/wFuMgZlN7ENdae',0,1,'2024-10-17 13:00:55','2026-04-22 14:17:48','0','{\"admin_style\":\"\",\"colorScheme\":\"\",\"allowTourAutoStart\":\"\",\"admin_language\":\"\",\"language\":\"\",\"editor\":\"\",\"timezone\":\"\",\"a11y_mono\":\"0\",\"a11y_contrast\":\"0\",\"a11y_highlight\":\"0\",\"a11y_font\":\"0\",\"token\":\"\"}',NULL,0,'','',0,''),(45,'pts','pts','[email protected]','$2y$10$LMChzwaZC81QzikfyuH9e.20ZHJyWEWcaRvgVUCwHpHfbYuc6aJQW',0,1,'2025-04-12 00:12:41','2025-04-11 22:22:04','','{}',NULL,0,'','',0,'');
/*!40000 ALTER TABLE `jnx5e_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_viewlevels`
--
DROP TABLE IF EXISTS `jnx5e_viewlevels`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_viewlevels` (
`id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'Primary Key',
`title` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`ordering` int NOT NULL DEFAULT '0',
`rules` varchar(5120) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
UNIQUE KEY `idx_assetgroup_title_lookup` (`title`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_viewlevels`
--
LOCK TABLES `jnx5e_viewlevels` WRITE;
/*!40000 ALTER TABLE `jnx5e_viewlevels` DISABLE KEYS */;
INSERT INTO `jnx5e_viewlevels` VALUES (1,'Public',0,'[1]'),(2,'Registered',2,'[6,2,8]'),(3,'Special',3,'[6,3,8]'),(5,'Guest',1,'[9]'),(6,'Super Users',4,'[8]');
/*!40000 ALTER TABLE `jnx5e_viewlevels` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_webauthn_credentials`
--
DROP TABLE IF EXISTS `jnx5e_webauthn_credentials`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_webauthn_credentials` (
`id` varchar(1000) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Credential ID',
`user_id` varchar(128) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'User handle',
`label` varchar(190) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Human readable label',
`credential` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'Credential source data, JSON format',
PRIMARY KEY (`id`(100)),
KEY `user_id` (`user_id`(100))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_webauthn_credentials`
--
LOCK TABLES `jnx5e_webauthn_credentials` WRITE;
/*!40000 ALTER TABLE `jnx5e_webauthn_credentials` DISABLE KEYS */;
/*!40000 ALTER TABLE `jnx5e_webauthn_credentials` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_workflow_associations`
--
DROP TABLE IF EXISTS `jnx5e_workflow_associations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_workflow_associations` (
`item_id` int NOT NULL DEFAULT '0' COMMENT 'Extension table id value',
`stage_id` int NOT NULL COMMENT 'Foreign Key to #__workflow_stages.id',
`extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`item_id`,`extension`),
KEY `idx_item_stage_extension` (`item_id`,`stage_id`,`extension`),
KEY `idx_item_id` (`item_id`),
KEY `idx_stage_id` (`stage_id`),
KEY `idx_extension` (`extension`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_workflow_associations`
--
LOCK TABLES `jnx5e_workflow_associations` WRITE;
/*!40000 ALTER TABLE `jnx5e_workflow_associations` DISABLE KEYS */;
INSERT INTO `jnx5e_workflow_associations` VALUES (1,1,'com_content.article'),(2,1,'com_content.article'),(3,1,'com_content.article'),(4,1,'com_content.article');
/*!40000 ALTER TABLE `jnx5e_workflow_associations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_workflow_stages`
--
DROP TABLE IF EXISTS `jnx5e_workflow_stages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_workflow_stages` (
`id` int NOT NULL AUTO_INCREMENT,
`asset_id` int DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`workflow_id` int NOT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`default` tinyint NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`checked_out` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_workflow_id` (`workflow_id`),
KEY `idx_checked_out` (`checked_out`),
KEY `idx_title` (`title`(191)),
KEY `idx_asset_id` (`asset_id`),
KEY `idx_default` (`default`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_workflow_stages`
--
LOCK TABLES `jnx5e_workflow_stages` WRITE;
/*!40000 ALTER TABLE `jnx5e_workflow_stages` DISABLE KEYS */;
INSERT INTO `jnx5e_workflow_stages` VALUES (1,57,1,1,1,'COM_WORKFLOW_BASIC_STAGE','',1,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_workflow_stages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_workflow_transitions`
--
DROP TABLE IF EXISTS `jnx5e_workflow_transitions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_workflow_transitions` (
`id` int NOT NULL AUTO_INCREMENT,
`asset_id` int DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`workflow_id` int NOT NULL,
`published` tinyint NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`from_stage_id` int NOT NULL,
`to_stage_id` int NOT NULL,
`options` text COLLATE utf8mb4_unicode_ci NOT NULL,
`checked_out_time` datetime DEFAULT NULL,
`checked_out` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_title` (`title`(191)),
KEY `idx_asset_id` (`asset_id`),
KEY `idx_checked_out` (`checked_out`),
KEY `idx_from_stage_id` (`from_stage_id`),
KEY `idx_to_stage_id` (`to_stage_id`),
KEY `idx_workflow_id` (`workflow_id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_workflow_transitions`
--
LOCK TABLES `jnx5e_workflow_transitions` WRITE;
/*!40000 ALTER TABLE `jnx5e_workflow_transitions` DISABLE KEYS */;
INSERT INTO `jnx5e_workflow_transitions` VALUES (1,58,1,1,1,'UNPUBLISH','',-1,1,'{\"publishing\":\"0\"}',NULL,NULL),(2,59,2,1,1,'PUBLISH','',-1,1,'{\"publishing\":\"1\"}',NULL,NULL),(3,60,3,1,1,'TRASH','',-1,1,'{\"publishing\":\"-2\"}',NULL,NULL),(4,61,4,1,1,'ARCHIVE','',-1,1,'{\"publishing\":\"2\"}',NULL,NULL),(5,62,5,1,1,'FEATURE','',-1,1,'{\"featuring\":\"1\"}',NULL,NULL),(6,63,6,1,1,'UNFEATURE','',-1,1,'{\"featuring\":\"0\"}',NULL,NULL),(7,64,7,1,1,'PUBLISH_AND_FEATURE','',-1,1,'{\"publishing\":\"1\",\"featuring\":\"1\"}',NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_workflow_transitions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `jnx5e_workflows`
--
DROP TABLE IF EXISTS `jnx5e_workflows`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `jnx5e_workflows` (
`id` int NOT NULL AUTO_INCREMENT,
`asset_id` int DEFAULT '0',
`published` tinyint NOT NULL DEFAULT '0',
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` text COLLATE utf8mb4_unicode_ci NOT NULL,
`extension` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
`default` tinyint NOT NULL DEFAULT '0',
`ordering` int NOT NULL DEFAULT '0',
`created` datetime NOT NULL,
`created_by` int NOT NULL DEFAULT '0',
`modified` datetime NOT NULL,
`modified_by` int NOT NULL DEFAULT '0',
`checked_out_time` datetime DEFAULT NULL,
`checked_out` int unsigned DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `idx_asset_id` (`asset_id`),
KEY `idx_title` (`title`(191)),
KEY `idx_extension` (`extension`),
KEY `idx_default` (`default`),
KEY `idx_created` (`created`),
KEY `idx_created_by` (`created_by`),
KEY `idx_modified` (`modified`),
KEY `idx_modified_by` (`modified_by`),
KEY `idx_checked_out` (`checked_out`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `jnx5e_workflows`
--
LOCK TABLES `jnx5e_workflows` WRITE;
/*!40000 ALTER TABLE `jnx5e_workflows` DISABLE KEYS */;
INSERT INTO `jnx5e_workflows` VALUES (1,56,1,'COM_WORKFLOW_BASIC_WORKFLOW','','com_content.article',1,1,'2024-10-17 13:00:51',44,'2024-10-17 13:00:51',44,NULL,NULL);
/*!40000 ALTER TABLE `jnx5e_workflows` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Dumping routines for database 'congresofce'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2026-05-12 14:42:14