-- phpMyAdmin SQL Dump
-- version 5.2.0
-- https://www.phpmyadmin.net/
--
-- Host: localhost:8889
-- Generation Time: May 31, 2025 at 08:15 AM
-- Server version: 5.7.39
-- PHP Version: 8.2.0

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;

--
-- Database: `staygo_1.0_installer`
--

-- --------------------------------------------------------

--
-- Table structure for table `additional_sections`
--

CREATE TABLE `additional_sections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `page_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'home ,about	',
  `possition` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `serial_number` int(11) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `additional_section_contents`
--

CREATE TABLE `additional_section_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) DEFAULT NULL,
  `addition_section_id` bigint(20) DEFAULT NULL,
  `section_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `admins`
--

CREATE TABLE `admins` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `role_id` int(11) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '0 - deactive, 1 - active',
  `token` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `admins`
--

INSERT INTO `admins` (`id`, `role_id`, `username`, `email`, `first_name`, `last_name`, `image`, `password`, `status`, `token`, `created_at`, `updated_at`) VALUES
(1, NULL, 'admin', 'ponesi6014@fanicle.com', 'Michael', 'Clark', '680e0f379d654.png', '$2y$10$9EKXTuew8FRsBN1lIPEf1OtHqWV5TsxvzDjJikRanEIc5SiwK6HPq', 1, NULL, NULL, '2025-05-31 08:02:57');

-- --------------------------------------------------------

--
-- Table structure for table `basic_extendeds`
--

CREATE TABLE `basic_extendeds` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `cookie_alert_status` tinyint(4) NOT NULL DEFAULT '1',
  `cookie_alert_text` blob,
  `cookie_alert_button_text` varchar(255) DEFAULT NULL,
  `to_mail` varchar(255) DEFAULT NULL,
  `default_language_direction` varchar(20) NOT NULL DEFAULT 'ltr' COMMENT 'ltr / rtl',
  `from_mail` varchar(255) DEFAULT NULL,
  `testimonial_img` varchar(255) DEFAULT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `is_smtp` tinyint(4) NOT NULL DEFAULT '0',
  `smtp_host` varchar(255) DEFAULT NULL,
  `smtp_port` varchar(30) DEFAULT NULL,
  `encryption` varchar(30) DEFAULT NULL,
  `smtp_username` varchar(255) DEFAULT NULL,
  `smtp_password` varchar(255) DEFAULT NULL,
  `base_currency_symbol` blob,
  `base_currency_symbol_position` varchar(10) NOT NULL DEFAULT 'left',
  `base_currency_text` varchar(100) DEFAULT NULL,
  `base_currency_text_position` varchar(10) NOT NULL DEFAULT 'right',
  `base_currency_rate` decimal(8,2) NOT NULL DEFAULT '0.00',
  `hero_section_title` varchar(255) DEFAULT NULL,
  `hero_section_subtitle` varchar(255) DEFAULT NULL,
  `hero_section_text` varchar(255) DEFAULT NULL,
  `hero_section_button_text` varchar(30) DEFAULT NULL,
  `hero_section_button_url` text,
  `hero_img` varchar(50) DEFAULT NULL,
  `hero_img_right` varchar(255) DEFAULT NULL,
  `timezone` text,
  `contact_addresses` text,
  `contact_numbers` text,
  `contact_mails` text,
  `is_whatsapp` tinyint(4) NOT NULL DEFAULT '1',
  `whatsapp_number` varchar(50) DEFAULT NULL,
  `whatsapp_header_title` varchar(255) DEFAULT NULL,
  `whatsapp_popup_message` text,
  `whatsapp_popup` tinyint(4) NOT NULL DEFAULT '1',
  `domain_request_success_message` varchar(255) DEFAULT NULL,
  `cname_record_section_title` varchar(255) DEFAULT NULL,
  `cname_record_section_text` text,
  `package_features` text,
  `expiration_reminder` int(11) NOT NULL DEFAULT '3',
  `max_video_size` decimal(11,2) NOT NULL DEFAULT '20.00',
  `max_file_size` decimal(11,2) NOT NULL DEFAULT '10.00',
  `is_ticket` tinyint(1) NOT NULL DEFAULT '1',
  `page_not_found_image` varchar(255) DEFAULT NULL,
  `page_not_found_title` varchar(255) DEFAULT NULL,
  `page_not_found_subtitle` varchar(255) DEFAULT NULL,
  `about_testimonial_section_title` varchar(255) DEFAULT NULL,
  `about_testimonial_section_image` varchar(255) DEFAULT NULL,
  `about_features_section_title` varchar(255) DEFAULT NULL,
  `about_features_section_subtitle` varchar(255) DEFAULT NULL,
  `about_features_section_image` varchar(255) DEFAULT NULL,
  `about_features_section_text` text,
  `about_features_section_button_text` varchar(255) DEFAULT NULL,
  `about_features_section_url` varchar(255) DEFAULT NULL,
  `about_features_section_video_url` varchar(255) DEFAULT NULL,
  `about_process_section_title` varchar(255) DEFAULT NULL,
  `about_blog_section_title` varchar(255) DEFAULT NULL,
  `about_counter_title` varchar(255) DEFAULT NULL,
  `about_counter_text` text,
  `about_counter_image` varchar(255) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `basic_extendeds`
--

INSERT INTO `basic_extendeds` (`id`, `language_id`, `cookie_alert_status`, `cookie_alert_text`, `cookie_alert_button_text`, `to_mail`, `default_language_direction`, `from_mail`, `testimonial_img`, `from_name`, `is_smtp`, `smtp_host`, `smtp_port`, `encryption`, `smtp_username`, `smtp_password`, `base_currency_symbol`, `base_currency_symbol_position`, `base_currency_text`, `base_currency_text_position`, `base_currency_rate`, `hero_section_title`, `hero_section_subtitle`, `hero_section_text`, `hero_section_button_text`, `hero_section_button_url`, `hero_img`, `hero_img_right`, `timezone`, `contact_addresses`, `contact_numbers`, `contact_mails`, `is_whatsapp`, `whatsapp_number`, `whatsapp_header_title`, `whatsapp_popup_message`, `whatsapp_popup`, `domain_request_success_message`, `cname_record_section_title`, `cname_record_section_text`, `package_features`, `expiration_reminder`, `max_video_size`, `max_file_size`, `is_ticket`, `page_not_found_image`, `page_not_found_title`, `page_not_found_subtitle`, `about_testimonial_section_title`, `about_testimonial_section_image`, `about_features_section_title`, `about_features_section_subtitle`, `about_features_section_image`, `about_features_section_text`, `about_features_section_button_text`, `about_features_section_url`, `about_features_section_video_url`, `about_process_section_title`, `about_blog_section_title`, `about_counter_title`, `about_counter_text`, `about_counter_image`) VALUES
(147, 176, 1, 0x3c703e57652075736520636f6f6b69657320746f206769766520796f75207468652062657374206f6e6c696e6520657870657269656e63652e3c6272202f3e427920636f6e74696e75696e6720746f2062726f77736520746865207369746520796f7520617265206167726565696e6720746f206f757220757365206f6620636f6f6b6965732e3c2f703e, 'Allow Cookies', 'vaxine8324@excederm.com', 'ltr', NULL, '1745748492.png', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0x24, 'left', 'USD', 'right', '1.00', 'Build Your Own Hotel Booking Website', 'Our Platform, Your Success Build', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.The point of using Lorem Ipsum', 'Explore Plans', '/pricing', '682b2a44bde43.png', '682b2dc1eca6a.png', 'Asia/Dhaka', 'California, USA', '+8434197502,+2350575099', 'contact@example.com,support@example.com', 1, NULL, NULL, NULL, 1, 'We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.', 'Read Before Sending Custom Domain Request', '<ul>\r\n<li>\r\n<p>Before submitting a custom domain request, you must first point your custom domain to our domain (<code>ecommet</code><strong>.xyz</strong>).</p>\r\n<p>To point custom domain to ecommet.xyz, you need to add the necessary DNS records in your custom domain form your domain registrar’s control panel (e.g., Namecheap, GoDaddy, Bluehost, etc.).<br /><br /></p>\r\n<h2>Necessary DNS Record Tables for below Domain Registrars:</h2>\r\n<h3><strong>1️⃣ GoDaddy </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">A</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>YOUR_SERVER_IP</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>2️⃣ Namecheap </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Automatic</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Automatic</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>3️⃣ Bluehost </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">A</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>YOUR_SERVER_IP</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>4️⃣ Domain.com </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">A</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>YOUR_SERVER_IP</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>5️⃣ HostGator </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">A</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>YOUR_SERVER_IP</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Default</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>6️⃣ Google Domains </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-width: 1px; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"border-width:1px;\"><strong>Type</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Host</strong></th>\r\n<th style=\"border-width:1px;\"><strong>Value (Target)</strong></th>\r\n<th style=\"border-width:1px;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"border-width: 1px;\">ALIAS</td>\r\n<td style=\"border-width: 1px;\">@</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Automatic</td>\r\n</tr>\r\n<tr>\r\n<td style=\"border-width: 1px;\">CNAME</td>\r\n<td style=\"border-width: 1px;\">www</td>\r\n<td style=\"border-width: 1px;\"><code>ecommet.xyz</code></td>\r\n<td style=\"border-width: 1px;\">Automatic</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3 style=\"line-height:1;\"> </h3>\r\n<h3><strong>7️⃣ Hostinger </strong></h3>\r\n<table style=\"border-collapse: collapse; width: 44.058%; border-style: dashed;\" border=\"1\">\r\n<thead>\r\n<tr>\r\n<th style=\"width:22.7723%;\"><strong>Type</strong></th>\r\n<th style=\"width:16.1716%;\"><strong>Host</strong></th>\r\n<th style=\"width:39.604%;\"><strong>Value (Target)</strong></th>\r\n<th style=\"width:21.4521%;\"><strong>TTL</strong></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<td style=\"width: 22.7723%;\">A</td>\r\n<td style=\"width: 16.1716%;\">@</td>\r\n<td style=\"width: 39.604%;\"><code>YOUR_SERVER_IP</code></td>\r\n<td style=\"width: 21.4521%;\">Default</td>\r\n</tr>\r\n<tr>\r\n<td style=\"width: 22.7723%;\">CNAME</td>\r\n<td style=\"width: 16.1716%;\">www</td>\r\n<td style=\"width: 39.604%;\"><code>ecommet.xyz</code></td>\r\n<td style=\"width: 21.4521%;\">Default</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<p style=\"line-height:1;\"> </p>\r\n<p><strong>If the Tenant has purchased custom domain from other domain registrars than above mentioned registrars, then they will need to contact their domain registrar to collect the correct DNS record so that their custom domain can point to ecommet.xyz.</strong></p>\r\n</li>\r\n</ul>', '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Room Coupon\",\"Tour Package\",\"Package Coupon\",\"Custom Page\",\"Support Ticket\",\"Advertisement\"]', 3, '40.00', '5.00', 0, '68283ce233bec.png', 'You\'re lost...', 'The page you are looking for might have been moved, renamed, or might never existed.', 'What Our Customers Are Saying', '6829ca6578665.png', 'Why You Choose Our Template', 'Bring More Profit With More Features', '6808928de5f77.jpg', 'With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success. ss', 'Signup Now', 'https://www.xolebosu.biz', 'https://www.youtube.com/watch?v=cXX6wpMVt1c', 'How it works ?', 'Our Latest Blog', 'Our Overall Achievements', 'Users interested in investing in real estate can register on the platform by providing their own bank account', '6829ca657c7ca.png'),
(148, 177, 1, 0x3c70207374796c653d22746578742d616c69676e3a72696768743b223ed8b3d98ad8aad98520d8aad8add8b3d98ad98620d8aad8acd8b1d8a8d8aad98320d8b9d984d98920d987d8b0d8a720d8a7d984d985d988d982d8b920d985d98620d8aed984d8a7d98420d8a7d984d8b3d985d8a7d8ad20d8a8d985d984d981d8a7d8aa20d8aad8b9d8b1d98ad98120d8a7d984d8a7d8b1d8aad8a8d8a7d8b73c2f703e, 'السماح للكوكيز', 'vaxine8324@excederm.com', 'ltr', NULL, '1745748492.png', NULL, 0, NULL, NULL, NULL, NULL, NULL, 0x24, 'left', 'USD', 'right', '1.00', 'أنشئ موقعك الإلكتروني لحجز الفناد', 'قمنصتنا، نجاحك', 'من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو', 'اكتشف الخطط', '/pricing', '682b2dcf064c6.png', '682b2dcf06cd9.png', 'Asia/Dhaka', 'منزل - 44 ، طريق - 03 ، قطاع - 11 ، أوتارا ، دكا\r\nدهانوندي ، دكا\r\nمحمدبور ، دكا', '237237237,72372332,+8967936437', 'contact@example.com,support@example.com,query@example.com', 1, NULL, NULL, NULL, 1, NULL, NULL, NULL, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Room Coupon\",\"Tour Package\",\"Package Coupon\",\"Custom Page\",\"Support Ticket\",\"Advertisement\"]', 3, '40.00', '5.00', 0, '68283d0b6b4f1.png', 'لقد ضاعت...', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', 'ماذا يقول عملاؤن', '6828875e69af0.png', 'لماذا تختار قالبنا', 'جلب المزيد من الأرباح مع المزيد من الميزات', NULL, 'مع منصتنا، ستحصل على أدوات قوية وعمليات تكامل سلسة ودعم من الدرجة الأولى لتنمية أعمالك. نحن نقدم أداءً موثوقًا به وميزات سهلة الاستخدام والمرونة للتوسع حسب رغبتك. اخترنا لنكون شريكًا في', 'سجل الآن', '/pricing', 'https://www.youtube.com/watch?v=qqob4D3BoZc', 'كيف يعمل؟', 'أحدث مدوناتنا', 'إنجازاتنا الشاملة', 'يمكن للمستخدمين المهتمين بالاستثمار في العقارات التسجيل على المنصة من خلال توفير حساب', '6828877d95425.png');

-- --------------------------------------------------------

--
-- Table structure for table `basic_settings`
--

CREATE TABLE `basic_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `favicon` varchar(50) DEFAULT NULL,
  `logo` varchar(50) DEFAULT NULL,
  `preloader_status` tinyint(4) NOT NULL DEFAULT '1',
  `preloader` varchar(50) DEFAULT NULL,
  `website_title` varchar(255) DEFAULT NULL,
  `base_color` varchar(30) DEFAULT NULL,
  `base_color2` varchar(30) DEFAULT NULL,
  `breadcrumb` varchar(50) DEFAULT NULL,
  `footer_logo` varchar(50) DEFAULT NULL,
  `footer_text` varchar(255) DEFAULT NULL,
  `newsletter_text` varchar(255) DEFAULT NULL,
  `copyright_text` blob,
  `intro_subtitle` varchar(50) DEFAULT NULL,
  `intro_title` varchar(50) DEFAULT NULL,
  `intro_text` text,
  `intro_main_image` varchar(191) DEFAULT NULL,
  `contact_form_title` varchar(255) DEFAULT NULL,
  `contact_text` varchar(255) DEFAULT NULL,
  `contact_info_title` varchar(191) DEFAULT NULL,
  `tawk_to_script` text,
  `is_recaptcha` tinyint(4) NOT NULL DEFAULT '0',
  `google_recaptcha_site_key` varchar(255) DEFAULT NULL,
  `google_recaptcha_secret_key` varchar(255) DEFAULT NULL,
  `is_tawkto` tinyint(4) NOT NULL DEFAULT '1',
  `tawkto_property_id` varchar(255) DEFAULT NULL,
  `tawkto_chat_link` varchar(255) DEFAULT NULL,
  `is_disqus` tinyint(4) NOT NULL DEFAULT '1',
  `is_user_disqus` tinyint(4) NOT NULL DEFAULT '1',
  `disqus_shortname` varchar(255) DEFAULT NULL,
  `disqus_script` text,
  `maintainance_mode` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 - active, 0 - deactive',
  `maintainance_text` text,
  `maintenance_img` varchar(50) DEFAULT NULL,
  `maintenance_status` tinyint(4) NOT NULL DEFAULT '0',
  `secret_path` varchar(255) DEFAULT NULL,
  `home_section` tinyint(4) NOT NULL DEFAULT '1',
  `process_section` tinyint(4) NOT NULL DEFAULT '1',
  `featured_users_section` tinyint(4) NOT NULL DEFAULT '1',
  `pricing_section` tinyint(4) NOT NULL DEFAULT '1',
  `partners_section` tinyint(4) NOT NULL DEFAULT '1',
  `partner_title` varchar(255) DEFAULT NULL,
  `partner_subtitle` varchar(255) DEFAULT NULL,
  `intro_section` tinyint(4) NOT NULL DEFAULT '1',
  `intro_section_button_text` varchar(255) DEFAULT NULL,
  `intro_section_button_url` varchar(255) DEFAULT NULL,
  `intro_section_video_url` varchar(255) DEFAULT NULL,
  `testimonial_section` tinyint(4) NOT NULL DEFAULT '1',
  `feature_title` varchar(255) DEFAULT NULL,
  `work_process_title` varchar(255) DEFAULT NULL,
  `work_process_subtitle` varchar(255) DEFAULT NULL,
  `preview_templates_title` varchar(255) DEFAULT NULL,
  `preview_templates_subtitle` varchar(255) DEFAULT NULL,
  `featured_users_title` varchar(255) DEFAULT NULL,
  `featured_users_subtitle` varchar(255) DEFAULT NULL,
  `pricing_title` varchar(255) DEFAULT NULL,
  `pricing_subtitle` varchar(255) DEFAULT NULL,
  `testimonial_title` varchar(255) DEFAULT NULL,
  `testimonial_subtitle` varchar(255) DEFAULT NULL,
  `news_section` tinyint(4) NOT NULL DEFAULT '1',
  `template_section` tinyint(4) NOT NULL DEFAULT '1',
  `top_footer_section` tinyint(4) NOT NULL DEFAULT '1',
  `copyright_section` tinyint(4) NOT NULL DEFAULT '1',
  `blog_title` varchar(255) DEFAULT NULL,
  `blog_subtitle` varchar(255) DEFAULT NULL,
  `useful_links_title` varchar(50) DEFAULT NULL,
  `newsletter_title` varchar(50) DEFAULT NULL,
  `newsletter_subtitle` varchar(255) DEFAULT NULL,
  `is_whatsapp` tinyint(4) NOT NULL DEFAULT '1',
  `whatsapp_number` varchar(50) DEFAULT NULL,
  `whatsapp_header_title` varchar(255) DEFAULT NULL,
  `whatsapp_popup_message` text,
  `whatsapp_popup` tinyint(4) NOT NULL DEFAULT '1',
  `additional_section_status` varchar(255) DEFAULT NULL,
  `about_additional_section_status` varchar(255) DEFAULT NULL,
  `about_features_section_status` tinyint(4) NOT NULL DEFAULT '1',
  `about_work_process_section_status` tinyint(4) NOT NULL DEFAULT '1',
  `about_counter_section_status` tinyint(4) NOT NULL DEFAULT '1',
  `about_testimonial_section_status` tinyint(4) NOT NULL DEFAULT '1',
  `about_blog_section_status` tinyint(4) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `basic_settings`
--

INSERT INTO `basic_settings` (`id`, `language_id`, `favicon`, `logo`, `preloader_status`, `preloader`, `website_title`, `base_color`, `base_color2`, `breadcrumb`, `footer_logo`, `footer_text`, `newsletter_text`, `copyright_text`, `intro_subtitle`, `intro_title`, `intro_text`, `intro_main_image`, `contact_form_title`, `contact_text`, `contact_info_title`, `tawk_to_script`, `is_recaptcha`, `google_recaptcha_site_key`, `google_recaptcha_secret_key`, `is_tawkto`, `tawkto_property_id`, `tawkto_chat_link`, `is_disqus`, `is_user_disqus`, `disqus_shortname`, `disqus_script`, `maintainance_mode`, `maintainance_text`, `maintenance_img`, `maintenance_status`, `secret_path`, `home_section`, `process_section`, `featured_users_section`, `pricing_section`, `partners_section`, `partner_title`, `partner_subtitle`, `intro_section`, `intro_section_button_text`, `intro_section_button_url`, `intro_section_video_url`, `testimonial_section`, `feature_title`, `work_process_title`, `work_process_subtitle`, `preview_templates_title`, `preview_templates_subtitle`, `featured_users_title`, `featured_users_subtitle`, `pricing_title`, `pricing_subtitle`, `testimonial_title`, `testimonial_subtitle`, `news_section`, `template_section`, `top_footer_section`, `copyright_section`, `blog_title`, `blog_subtitle`, `useful_links_title`, `newsletter_title`, `newsletter_subtitle`, `is_whatsapp`, `whatsapp_number`, `whatsapp_header_title`, `whatsapp_popup_message`, `whatsapp_popup`, `additional_section_status`, `about_additional_section_status`, `about_features_section_status`, `about_work_process_section_status`, `about_counter_section_status`, `about_testimonial_section_status`, `about_blog_section_status`) VALUES
(153, 176, '682b299e8a7dc.png', '682b29978be06.png', 1, '680e0999384d3.gif', 'StayGo', 'FEA116', 'EBEAFF', '682b29e80760e.png', '682b2eda5c8d7.png', 'We are a awward winning multinaitonal Company. We Believe quality and standard worlwidex Consider.', 'Subscribe to gate Latest News, Offer and connect With Us.', 0x3c703e436f7079726967687420c2a920323032352e20416c6c2072696768747320726573657276656420627920486f7474656c69612e3c2f703e, 'Why You Chosse Our Template', 'Bring more profit with more features', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.', '62b2b131e6f12.png', 'Leave Reply', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum.', 'Contact Info', '<!--Start of Tawk.to Script-->\r\n<script type=\"text/javascript\">\r\nvar Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();\r\n(function(){\r\nvar s1=document.createElement(\"script\"),s0=document.getElementsByTagName(\"script\")[0];\r\ns1.async=true;\r\ns1.src=\'https://embed.tawk.to/5f5e445f4704467e89ee918d/default\';\r\ns1.charset=\'UTF-8\';\r\ns1.setAttribute(\'crossorigin\',\'*\');\r\ns0.parentNode.insertBefore(s1,s0);\r\n})();\r\n</script>\r\n<!--End of Tawk.to Script-->', 0, NULL, NULL, 1, '60b886bbde99a4282a1b22a3', 'https://tawk.to/chat/654f2647cec6a912820ed3aa/1heuir292', 0, 0, NULL, '<script>\r\n\r\n/**\r\n*  RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.\r\n*  LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/\r\n/*\r\nvar disqus_config = function () {\r\nthis.page.url = PAGE_URL;  // Replace PAGE_URL with your page\'s canonical URL variable\r\nthis.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page\'s unique identifier variable\r\n};\r\n*/\r\n(function() { // DON\'T EDIT BELOW THIS LINE\r\nvar d = document, s = d.createElement(\'script\');\r\ns.src = \'https://plusagency.disqus.com/embed.js\';\r\ns.setAttribute(\'data-timestamp\', +new Date());\r\n(d.head || d.body).appendChild(s);\r\n})();\r\n</script>', 0, 'We are upgrading our site. We will come back soon. \r\nPlease stay with us.\r\nThank you....', '6805e627d7f4a.jpg', 0, 'saifssss', 1, 1, 1, 1, 1, 'We Completed 500+ Projects With Clints Satisfiction', 'Our Great Achivment Proved Us!', 1, 'Purchase', 'https://hoteliasaas.test/pricing', 'https://www.youtube.com/watch?v=HOHAAA929Rw&ab_channel=ATNNewsLive', 1, 'Features', 'Make Hotel Booking Website', NULL, 'See Our Booking Website Template', 'Creative & User  Friendly Design', 'Featured Websites', 'Take a Look at The Featured Hotel  Websites', 'Choose Your Package', 'Build Your Relationship With Price', 'What Say Our Happy Clients About Us', 'Sed ut perspiciatis unde omnis istenat aeruwr oieueu dporirir ntium doloremque laudantium, totam riierop.Sed  persp.', 1, 1, 1, 1, 'Read Our Latest Blog Post', 'Our latest blogs', 'Useful Links', 'Newsletter', 'Get latest updates first', 0, NULL, NULL, 'Hi', 0, '{\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\"}', '{\"23\":\"1\",\"26\":\"1\",\"27\":\"1\"}', 1, 1, 1, 1, 1),
(154, 177, '682b299e8a7dc.png', '682b29978be06.png', 1, '680e0999384d3.gif', 'StayGo', 'FEA116', 'EBEAFF', '682b29e80760e.png', '682894336b25e.png', 'نحن شركة متعددة الأطراف فائزة بشكل كبير. نحن نؤمن بالجودة والمعايير التي نأخذها بعين الاعتبار.', 'Subscribe to gate Latest News, Offer and connect With Us.', 0x3c64697620636c6173733d2274772d74612d636f6e7461696e6572204630617a48662074772d6c666c223ed8add982d988d98220d8a7d984d8b7d8a8d8b920d988d8a7d984d986d8b4d8b120c2a920323032352e20d8acd985d98ad8b920d8a7d984d8add982d988d98220d985d8add981d988d8b8d8a920d984d8b4d8b1d983d8a920d8a5d98ad983d988d9852e3c2f6469763e0d0a3c64697620636c6173733d2274772d7461726765742d726d6e2074772d74612d636f6e7461696e6572204630617a48662074772d6e666c223ec2a03c2f6469763e, 'احصل على المزيد من الأرباح مع المزيد من الميزات', 'لماذا تختار قالبنا؟', 'مع منصتنا، ستحصل على أدوات قوية وعمليات تكامل سلسة ودعم من الدرجة الأولى لتنمية أعمالك. نحن نقدم أداءً موثوقًا به وميزات سهلة الاستخدام والمرونة للتوسع حسب رغبتك. اخترنا لنكون شريكًا في نجاحك.', '6195e994095b0.png', 'اترك الرد', 'هناك حقيقة مثبتة منذ زمن طويل وهي أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على الشكل الخارجي للنص أو شكل', 'معلومات الاتصال', '<!--Start of Tawk.to Script-->\r\n<script type=\"text/javascript\">\r\nvar Tawk_API=Tawk_API||{}, Tawk_LoadStart=new Date();\r\n(function(){\r\nvar s1=document.createElement(\"script\"),s0=document.getElementsByTagName(\"script\")[0];\r\ns1.async=true;\r\ns1.src=\'https://embed.tawk.to/5f5e445f4704467e89ee918d/default\';\r\ns1.charset=\'UTF-8\';\r\ns1.setAttribute(\'crossorigin\',\'*\');\r\ns0.parentNode.insertBefore(s1,s0);\r\n})();\r\n</script>\r\n<!--End of Tawk.to Script-->', 0, NULL, NULL, 1, '60b886bbde99a4282a1b22a3', 'https://tawk.to/chat/654f2647cec6a912820ed3aa/1heuir292', 0, 0, NULL, '<script>\r\n\r\n/**\r\n*  RECOMMENDED CONFIGURATION VARIABLES: EDIT AND UNCOMMENT THE SECTION BELOW TO INSERT DYNAMIC VALUES FROM YOUR PLATFORM OR CMS.\r\n*  LEARN WHY DEFINING THESE VARIABLES IS IMPORTANT: https://disqus.com/admin/universalcode/#configuration-variables*/\r\n/*\r\nvar disqus_config = function () {\r\nthis.page.url = PAGE_URL;  // Replace PAGE_URL with your page\'s canonical URL variable\r\nthis.page.identifier = PAGE_IDENTIFIER; // Replace PAGE_IDENTIFIER with your page\'s unique identifier variable\r\n};\r\n*/\r\n(function() { // DON\'T EDIT BELOW THIS LINE\r\nvar d = document, s = d.createElement(\'script\');\r\ns.src = \'https://plusagency.disqus.com/embed.js\';\r\ns.setAttribute(\'data-timestamp\', +new Date());\r\n(d.head || d.body).appendChild(s);\r\n})();\r\n</script>', 0, 'We are upgrading our site. We will come back soon. \r\nPlease stay with us.\r\nThank you....', NULL, 0, NULL, 1, 1, 1, 1, 1, 'لقد أثبت لنا إنجازنا العظيم!', 'لقد أكملنا أكثر من +500 مشروع برضا كلينت', 1, 'سجل الآن', 'https://www.youtube.com/watch?v=qqob4D3BoZc', 'https://www.youtube.com/watch?v=HOHAAA929Rw&ab_channel=ATNNewsLive', 1, 'متميز', 'تعرف على شركائنا الكر', 'امآلية العمل', 'شاهد قالبنا الحديث', 'تصميم إبداعي وسهل الاستخدام', 'لماذا تختار قالبنا', 'احصل على المزيد من الأرباح مع المزيد من الميزات', 'شركاؤنا', 'تعرف على شركائنا الكرام', 'ماذا يقول عملاؤنا السعداء عنا', 'من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو', 1, 1, 1, 1, 'منشورات المدونة', 'أحدث مدوناتنا', 'روابط مفيدة', 'النشرة الإخبارية', 'احصل على آخر التحديثات أولاً', 0, NULL, NULL, 'Hi', 0, '{\"29\":\"1\",\"30\":\"1\",\"31\":\"1\",\"32\":\"1\",\"33\":\"1\",\"34\":\"1\",\"35\":\"1\",\"36\":\"1\",\"37\":\"1\",\"38\":\"1\"}', '{\"23\":\"1\",\"26\":\"1\",\"27\":\"1\"}', 1, 1, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `bcategories`
--

CREATE TABLE `bcategories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `indx` varchar(255) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `serial_number` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `bcategories`
--

INSERT INTO `bcategories` (`id`, `language_id`, `indx`, `name`, `slug`, `status`, `serial_number`) VALUES
(52, 176, '680e2512db67e', 'Luxury Hotels', 'luxury-hotels', 1, 1),
(53, 177, '680e2512db67e', 'فنادق فاخرة', 'فنادق-فاخرة', 1, 1),
(54, 176, '680e253b1e45d', 'Boutique Hotels', 'boutique-hotels', 1, 2),
(55, 177, '680e253b1e45d', 'فنادق بوتيك', 'فنادق-بوتيك', 1, 2),
(56, 176, '680e254be827d', 'Business Hotels', 'business-hotels', 0, 3),
(57, 177, '680e254be827d', 'فنادق رجال الأعمال', 'فنادق-رجال-الأعمال', 0, 3),
(58, 176, '680e25638d4d5', 'Resorts', 'resorts', 1, 4),
(59, 177, '680e25638d4d5', 'منتجعات', 'منتجعات', 1, 4);

-- --------------------------------------------------------

--
-- Table structure for table `blogs`
--

CREATE TABLE `blogs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `category_index` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `main_image` varchar(255) DEFAULT NULL,
  `content` blob,
  `tags` text,
  `meta_keywords` text,
  `meta_description` text,
  `serial_number` int(11) NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `blogs`
--

INSERT INTO `blogs` (`id`, `language_id`, `category_index`, `title`, `slug`, `main_image`, `content`, `tags`, `meta_keywords`, `meta_description`, `serial_number`, `created_at`, `updated_at`) VALUES
(113, 176, '680e2512db67e', 'Top 10 most popular hotel booking website template for you.', 'top-10-most-popular-hotel-booking-website-template-for-you.', '1747569012.png', 0x3c703e57656c636f6d6520746f20486f74656c2050617261646973652c20776865726520636f6d666f7274206d6565747320656c6567616e63652e204c6f636174656420696e20746865206865617274206f662074686520636974792c206f757220686f74656c206f6666657273206c75787572696f757320726f6f6d732c20776f726c642d636c6173732064696e696e672c20616e6420746f702d6e6f74636820616d656e69746965732e205768657468657220796f75277265206865726520666f7220627573696e657373206f72206c6569737572652c20796f75276c6c20656e6a6f79206f757220636f7a792061746d6f7370686572652c20667269656e646c792073746166662c20616e642062656175746966756c20737572726f756e64696e67732e2052656c6178206279206f757220726f6f66746f7020706f6f6c2c20696e64756c676520696e2061207370612074726561746d656e742c206f72206578706c6f7265206e65617262792061747472616374696f6e73207769746820656173652e20457870657269656e6365207468652070657266656374207374617920617420486f74656c20506172616469736520e2809420796f757220686f6d6520617761792066726f6d20686f6d652e3c2f703e0d0a3c703ec2a03c2f703e0d0a3c703e436f6e747261727920746f20706f70756c61722062656c6965662c204c6f72656d20497073756d206973206e6f742073696d706c792072616e646f6d20746578742e2049742068617320726f6f747320696e2061207069656365206f6620636c6173736963616c204c6174696e206c6974657261747572652066726f6d2034352042432c206d616b696e67206974206f7665722032303030207965617273206f6c642e2052696368617264204d63436c696e746f636b2c2061204c6174696e2070726f666573736f722061742048616d7064656e2d5379646e657920436f6c6c65676520696e2056697267696e69612c206c6f6f6b6564207570206f6e65206f6620746865206d6f7265206f627363757265204c6174696e20776f7264732c20636f6e73656374657475722c2066726f6d2061204c6f72656d20497073756d20706173736167652c20616e6420676f696e67207468726f75676820746865206369746573206f662074686520776f726420696e20636c6173736963616c206c6974657261747572652c20646973636f76657265642074686520756e646f75627461626c6520736f757263652e204c6f72656d20497073756d20636f6d65732066726f6d2073656374696f6e7320312e31302e333220616e6420312e31302e3333206f66202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d2220285468652045787472656d6573206f6620476f6f6420616e64204576696c292062792043696365726f2c207772697474656e20696e2034352042432e205468697320626f6f6b2069732061207472656174697365206f6e20746865207468656f7279206f66206574686963732c207665727920706f70756c617220647572696e67207468652052656e61697373616e63652e20546865206669727374206c696e65206f66204c6f72656d20497073756d2c20224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e222c20636f6d65732066726f6d2061206c696e6520696e2073656374696f6e20312e31302e33322e3c2f703e0d0a3c703e546865207374616e64617264206368756e6b206f66204c6f72656d20497073756d20757365642073696e63652074686520313530307320697320726570726f64756365642062656c6f7720666f722074686f736520696e74657265737465642e2053656374696f6e7320312e31302e333220616e6420312e31302e33332066726f6d202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d222062792043696365726f2061726520616c736f20726570726f647563656420696e207468656972206578616374206f726967696e616c20666f726d2c206163636f6d70616e69656420627920456e676c6973682076657273696f6e732066726f6d207468652031393134207472616e736c6174696f6e20627920482e205261636b68616d2e3c2f703e, NULL, NULL, NULL, 1, '2025-04-27 12:41:58', '2025-05-18 11:50:12'),
(114, 176, '680e2512db67e', 'How to build hotel booking website from a to z step by step', 'how-to-build-hotel-booking-website-from-a-to-z-step-by-step', '1747568914.png', 0x3c703e436f6e747261727920746f20706f70756c61722062656c6965662c204c6f72656d20497073756d206973206e6f742073696d706c792072616e646f6d20746578742e2049742068617320726f6f747320696e2061207069656365206f6620636c6173736963616c204c6174696e206c6974657261747572652066726f6d2034352042432c206d616b696e67206974206f7665722032303030207965617273206f6c642e2052696368617264204d63436c696e746f636b2c2061204c6174696e2070726f666573736f722061742048616d7064656e2d5379646e657920436f6c6c65676520696e2056697267696e69612c206c6f6f6b6564207570206f6e65206f6620746865206d6f7265206f627363757265204c6174696e20776f7264732c20636f6e73656374657475722c2066726f6d2061204c6f72656d20497073756d20706173736167652c20616e6420676f696e67207468726f75676820746865206369746573206f662074686520776f726420696e20636c6173736963616c206c6974657261747572652c20646973636f76657265642074686520756e646f75627461626c6520736f757263652e204c6f72656d20497073756d20636f6d65732066726f6d2073656374696f6e7320312e31302e333220616e6420312e31302e3333206f66202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d2220285468652045787472656d6573206f6620476f6f6420616e64204576696c292062792043696365726f2c207772697474656e20696e2034352042432e205468697320626f6f6b2069732061207472656174697365206f6e20746865207468656f7279206f66206574686963732c207665727920706f70756c617220647572696e67207468652052656e61697373616e63652e20546865206669727374206c696e65206f66204c6f72656d20497073756d2c20224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e222c20636f6d65732066726f6d2061206c696e6520696e2073656374696f6e20312e31302e33322e3c2f703e0d0a3c703e546865207374616e64617264206368756e6b206f66204c6f72656d20497073756d20757365642073696e63652074686520313530307320697320726570726f64756365642062656c6f7720666f722074686f736520696e74657265737465642e2053656374696f6e7320312e31302e333220616e6420312e31302e33332066726f6d202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d222062792043696365726f2061726520616c736f20726570726f647563656420696e207468656972206578616374206f726967696e616c20666f726d2c206163636f6d70616e69656420627920456e676c6973682076657273696f6e732066726f6d207468652031393134207472616e736c6174696f6e20627920482e205261636b68616d2e3c2f703e, NULL, NULL, NULL, 2, '2025-04-27 12:41:58', '2025-05-18 11:48:34'),
(115, 176, '680e253b1e45d', '10 most popular hotel booking website template for you.', '10-most-popular-hotel-booking-website-template-for-you.', '1747569060.png', 0x3c703e436f6e747261727920746f20706f70756c61722062656c6965662c204c6f72656d20497073756d206973206e6f742073696d706c792072616e646f6d20746578742e2049742068617320726f6f747320696e2061207069656365206f6620636c6173736963616c204c6174696e206c6974657261747572652066726f6d2034352042432c206d616b696e67206974206f7665722032303030207965617273206f6c642e2052696368617264204d63436c696e746f636b2c2061204c6174696e2070726f666573736f722061742048616d7064656e2d5379646e657920436f6c6c65676520696e2056697267696e69612c206c6f6f6b6564207570206f6e65206f6620746865206d6f7265206f627363757265204c6174696e20776f7264732c20636f6e73656374657475722c2066726f6d2061204c6f72656d20497073756d20706173736167652c20616e6420676f696e67207468726f75676820746865206369746573206f662074686520776f726420696e20636c6173736963616c206c6974657261747572652c20646973636f76657265642074686520756e646f75627461626c6520736f757263652e204c6f72656d20497073756d20636f6d65732066726f6d2073656374696f6e7320312e31302e333220616e6420312e31302e3333206f66202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d2220285468652045787472656d6573206f6620476f6f6420616e64204576696c292062792043696365726f2c207772697474656e20696e2034352042432e205468697320626f6f6b2069732061207472656174697365206f6e20746865207468656f7279206f66206574686963732c207665727920706f70756c617220647572696e67207468652052656e61697373616e63652e20546865206669727374206c696e65206f66204c6f72656d20497073756d2c20224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e222c20636f6d65732066726f6d2061206c696e6520696e2073656374696f6e20312e31302e33322e3c2f703e0d0a3c703e546865207374616e64617264206368756e6b206f66204c6f72656d20497073756d20757365642073696e63652074686520313530307320697320726570726f64756365642062656c6f7720666f722074686f736520696e74657265737465642e2053656374696f6e7320312e31302e333220616e6420312e31302e33332066726f6d202264652046696e6962757320426f6e6f72756d206574204d616c6f72756d222062792043696365726f2061726520616c736f20726570726f647563656420696e207468656972206578616374206f726967696e616c20666f726d2c206163636f6d70616e69656420627920456e676c6973682076657273696f6e732066726f6d207468652031393134207472616e736c6174696f6e20627920482e205261636b68616d2e3c2f703e, NULL, NULL, NULL, 3, '2025-04-27 12:41:58', '2025-05-18 11:51:00'),
(117, 177, '680e2512db67e', 'عشوائي أخذتها من نص، لتكوّن كتيّب بمثابة دليل أو مرجع شكلي لهذه', 'عشوائي-أخذتها-من-نص،-لتكوّن-كتيّب-بمثابة-دليل-أو-مرجع-شكلي-لهذه', '1747568958.png', 0x3c703ed8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d9913c2f703e0d0a3c703ed98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d9873c2f703e0d0a3c70206469723d2272746c223ed8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d98720d8b9d8b4d988d8a7d8a6d98a20d8a3d8aed8b0d8aad987d8a720d985d98620d986d8b5d88c20d984d8aad983d988d991d98620d983d8aad98ad991d8a820d8a8d985d8abd8a7d8a8d8a920d8afd984d98ad98420d8a3d98820d985d8b1d8acd8b920d8b4d983d984d98a20d984d987d8b0d987c2a03c2f703e, NULL, NULL, NULL, 5, '2025-05-17 07:08:59', '2025-05-18 11:49:18'),
(118, 177, '680e253b1e45d', 'ندين بسخط صالحمن ناحية أخرى ، ندين بسخط صالحمن ن', 'ندين-بسخط-صالحمن-ناحية-أخرى-،-ندين-بسخط-صالحمن-ن', '1747568948.png', 0x3c703ed985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8ad3c2f703e0d0a3c703ed985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8add985d98620d986d8a7d8add98ad8a920d8a3d8aed8b1d98920d88c20d986d8afd98ad98620d8a8d8b3d8aed8b720d8b5d8a7d984d8ad3c2f703e, NULL, NULL, NULL, 2, '2025-05-17 07:09:43', '2025-05-18 11:49:08'),
(119, 177, '680e25638d4d5', 'ياناً عن طريق الصدفة، وأحياناً عن عمد كإدخال بعض العبارات الفكاهية إليها.', 'ياناً-عن-طريق-الصدفة،-وأحياناً-عن-عمد-كإدخال-بعض-العبارات-الفكاهية-إليها.', '1747568935.png', 0x3c703ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd98920d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d981d8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd98920d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d9813c2f703e0d0a3c703ed8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd9893c6272202f3ec2a0d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d981d8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72e3c2f703e0d0a3c703ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd98920d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d981d8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd98920d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d9813c2f703e0d0a3c703ed8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72ed98620d8a7d984d986d8b5d88c20d988d8a5d8b0d8a720d982d985d8aa20d8a8d8a5d8afd8aed8a7d98420d981d98a20d8a3d98a20d985d8add8b1d98320d8a8d8add8ab20d8b3d8aad8b8d987d8b120d8a7d984d8b9d8afd98ad8af20d985d98620d8a7d984d985d988d8a7d982d8b920d8a7d984d8add8afd98ad8abd8a920d8a7d984d8b9d987d8af20d981d98a20d986d8aad8a7d8a6d8ac20d8a7d984d8a8d8add8ab2e20d8b9d984d98920d985d8afd9893c6272202f3ec2a0d8a7d984d8b3d986d98ad98620d8b8d987d8b1d8aa20d986d8b3d8ae20d8acd8afd98ad8afd8a920d988d985d8aed8aad984d981d8a920d985d98620d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d88c20d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b7d8b1d98ad98220d8a7d984d8b5d8afd981d8a9d88c20d988d8a3d8add98ad8a7d986d8a7d98b20d8b9d98620d8b9d985d8af20d983d8a5d8afd8aed8a7d98420d8a8d8b9d8b620d8a7d984d8b9d8a8d8a7d8b1d8a7d8aa20d8a7d984d981d983d8a7d987d98ad8a920d8a5d984d98ad987d8a72e3c2f703e, NULL, NULL, NULL, 3, '2025-05-17 07:11:35', '2025-05-18 11:48:55');

-- --------------------------------------------------------

--
-- Table structure for table `counter_information`
--

CREATE TABLE `counter_information` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) DEFAULT NULL,
  `icon` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `color` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `amount` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `counter_information`
--

INSERT INTO `counter_information` (`id`, `language_id`, `icon`, `color`, `amount`, `title`, `created_at`, `updated_at`) VALUES
(6, 176, 'fas fa-plus', 'F1F7FF', '500', 'ACTIVE USER', '2025-04-28 07:08:36', '2025-04-28 07:16:47'),
(7, 176, 'fas fa-plus', 'FFF9F1', '900', 'DAILY TRANSACTION', '2025-04-28 07:09:43', '2025-04-28 07:16:37'),
(8, 176, 'fas fa-plus', 'F4F1FF', '300', 'Hotels', '2025-04-28 07:10:29', '2025-04-28 07:11:39'),
(9, 176, 'fas fa-percent', 'ECFFFF', '100', 'SECURITY ENSURE', '2025-04-28 07:11:07', '2025-04-28 07:11:07'),
(10, 177, 'fas fa-plus', 'F1F7FF', '500', 'مستخدم نشط', '2025-05-17 12:59:53', '2025-05-17 13:00:00'),
(11, 177, 'fas fa-plus', 'FFF9F1', '900', 'المعاملات اليومية', '2025-05-17 13:00:28', '2025-05-17 13:00:28'),
(12, 177, 'fas fa-percent', 'ECFFFF', '100', 'ضمان الأمن', '2025-05-17 13:00:57', '2025-05-17 13:01:11'),
(13, 177, 'fas fa-plus', 'FFFFFF', '300', 'المنتجات الأصلية', '2025-05-17 13:01:33', '2025-05-17 13:01:33');

-- --------------------------------------------------------

--
-- Table structure for table `coupons`
--

CREATE TABLE `coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `value` decimal(11,2) DEFAULT NULL,
  `start_date` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `end_date` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `packages` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `maximum_uses_limit` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `total_uses` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `coupons`
--

INSERT INTO `coupons` (`id`, `name`, `code`, `type`, `value`, `start_date`, `end_date`, `packages`, `created_at`, `updated_at`, `maximum_uses_limit`, `total_uses`) VALUES
(29, 'Graphics Design', 'ar', 'fixed', '11.00', '2025-05-14', '2025-05-14', 'null', '2025-05-12 11:58:15', '2025-05-12 11:58:15', '1', NULL);

-- --------------------------------------------------------

--
-- Table structure for table `customers`
--

CREATE TABLE `customers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `username` varchar(255) NOT NULL,
  `email` varchar(255) NOT NULL,
  `email_verified_at` timestamp NULL DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `contact_number` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 -> banned or deactive, 1 -> active',
  `verification_token` varchar(255) DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `edit_profile_status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 -> not edited user profile, 1 -> edited user profile',
  `pass_token` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `email_templates`
--

CREATE TABLE `email_templates` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email_type` varchar(100) DEFAULT NULL,
  `email_subject` text,
  `email_body` longtext
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `email_templates`
--

INSERT INTO `email_templates` (`id`, `email_type`, `email_subject`, `email_body`) VALUES
(2, 'email_verification', 'Verify Your Email', '<p style=\"line-height: 1.6;\">Hello<b> {customer_name}</b>,</p><p style=\"line-height: 1.6;\"><br>Please click the link below to verify your email.</p><p>{verification_link}</p><p><br></p><p>Best Regards,</p><p>{website_title}</p>'),
(12, 'custom_domain_connected', 'Custom Domain is Connected with Our Server', 'Hi {username},<br><br>\n\nThanks for your custom domain request.<br>\nYour requested domain {requested_domain} has been connected to your server.<br>\nPlease <strong>clear your browser cache</strong> & visit {requested_domain} to see your portfolio website.<br>\n\nYour current domain: {requested_domain}.<br>\nYour previous domain: {previous_domain}.<br><br>\n\nBest Regards,<br>\n{website_title}.<br>'),
(13, 'custom_domain_rejected', 'Custom Domain Request is Rejected', 'Hi {username},<br><br>\r\n\r\nThanks for your custom domain request.<br>\r\nUnfortunately, we have rejected your custom domain request<br>\r\n\r\nYour requested domain: {requested_domain}.<br>\r\nYour current domain: {current_domain}.<br><br>\r\n\r\nBest Regards,<br>\r\n{website_title}.<br>'),
(16, 'registration_with_premium_package', 'You have registered successfully', '<p>Hi {username},<br /><br />\n\nThis is a confirmation mail from us</p><p><b><span style=\"font-size:18px;\">Membership Information:</span></b><br /><strong>Package Title:</strong> {package_title}<br /><strong>Package Price:</strong> {package_price}</p><p><b>Discount:</b> {discount}</p><p><span style=\"font-weight:600;\">Total:</span> {total}<br /><strong>Activation Date:</strong> {activation_date}<br /><strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\nThank you for your purchase.</p><p><br />\n\nBest Regards,<br />\n{website_title}.<br /></p>'),
(17, 'registration_with_trial_package', 'You have registered successfully', 'Hi {username},<br /><br />\r\n\r\nThis is a confirmation mail from us.<br />\r\nYou have purchased a trial package<br /><br />\r\n\r\n<h4>Membership Information:</h4>\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}<br /><br />\r\n\r\nWe have attached an invoice in this mail<br />\r\nThank you for your purchase.<br /><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br />'),
(18, 'registration_with_free_package', 'You have registered successfully', 'Hi {username},<br /><br />\r\n\r\nThis is a confirmation mail from us.<br />\r\nYou have purchased a free package<br /><br />\r\n\r\n<h4>Membership Information:</h4>\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}<br /><br />\r\n\r\nWe have attached an invoice in this mail<br />\r\nThank you for your purchase.<br /><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br />'),
(19, 'membership_expiry_reminder', 'Your membership will be expired soon', 'Hi {username},<br /><br />\r\n\r\nYour membership will be expired soon.<br />\r\nYour membership is valid till <strong>{last_day_of_membership}</strong><br />\r\nPlease click here - {login_link} to log into the dashboard to purchase a new package / extend the current package to extend your membership.<br /><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.'),
(20, 'membership_expired', 'Your membership is expired', 'Hi {username},<br><br>\r\n\r\nYour membership is expired.<br>\r\nPlease click here - {login_link} to log into the dashboard to purchase a new package / extend the current package to continue the membership.<br><br>\r\n\r\nBest Regards,<br>\r\n{website_title}.'),
(21, 'membership_extend', 'Your membership is extended', '<p>Hi {username},<br /><br />\n\nThis is a confirmation mail from us.<br />\nYou have extended your membership.<br />\n\n<strong>Package Title:</strong> {package_title}<br />\n<strong>Package Price:</strong> {package_price}<br />\n<strong>Activation Date:</strong> {activation_date}<br />\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\nThank you for your purchase.</p><p><br />\n\nBest Regards,<br />\n{website_title}.<br /></p>'),
(22, 'payment_accepted_for_membership_extension_offline_gateway', 'Your payment for membership extension is accepted', '<p>Hi {username},<br /><br />\r\n\r\nThis is a confirmation mail from us.<br />\r\nYour payment has been accepted & your membership is extended.<br />\r\n\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(23, 'payment_accepted_for_registration_offline_gateway', 'Your payment for registration is approved', '<p>Hi {username},<br /><br />\r\n\r\nThis is a confirmation mail from us.<br />\r\nYour payment has been accepted & now you can login to your user dashboard to build your portfolio website.<br />\r\n\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(24, 'payment_rejected_for_membership_extension_offline_gateway', 'Your payment for membership extension is rejected', '<p>Hi {username},<br /><br />\r\n\r\nWe are sorry to inform you that your payment has been rejected<br />\r\n\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(25, 'payment_rejected_for_registration_offline_gateway', 'Your payment for registration is rejected', '<p>Hi {username},<br /><br />\r\n\r\nWe are sorry to inform you that your payment has been rejected<br>\r\n\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(26, 'admin_changed_current_package', 'Admin has changed your current package', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has changed your current package <b>({replaced_package})</b></p>\r\n<p><b>New Package Information:</b></p>\r\n<p>\r\n<strong>Package:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(27, 'admin_added_current_package', 'Admin has added current package for you', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has added current package for you</p><p><b><span style=\"font-size:18px;\">Current Membership Information:</span></b><br />\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(28, 'admin_changed_next_package', 'Admin has changed your next package', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has changed your next package <b>({replaced_package})</b></p><p><b><span style=\"font-size:18px;\">Next Membership Information:</span></b><br />\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(29, 'admin_added_next_package', 'Admin has added next package for you', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has added next package for you</p><p><b><span style=\"font-size:18px;\">Next Membership Information:</span></b><br />\r\n<strong>Package Title:</strong> {package_title}<br />\r\n<strong>Package Price:</strong> {package_price}<br />\r\n<strong>Activation Date:</strong> {activation_date}<br />\r\n<strong>Expire Date:</strong> {expire_date}</p><p><br /></p><p>We have attached an invoice with this mail.<br />\r\nThank you for your purchase.</p><p><br />\r\n\r\nBest Regards,<br />\r\n{website_title}.<br /></p>'),
(30, 'admin_removed_current_package', 'Admin has removed current package for you', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has removed current package - <strong>{removed_package_title}</strong><br>\r\n\r\nBest Regards,<br />\r\n{website_title}.<br />'),
(31, 'admin_removed_next_package', 'Admin has removed next package for you', '<p>Hi {username},<br /><br />\r\n\r\nAdmin has removed next package - <strong>{removed_package_title}</strong><br>\r\n\r\nBest Regards,<br />\r\n{website_title}.<br />');

-- --------------------------------------------------------

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `faqs`
--

CREATE TABLE `faqs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `question` varchar(255) DEFAULT NULL,
  `answer` text,
  `serial_number` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `faqs`
--

INSERT INTO `faqs` (`id`, `language_id`, `question`, `answer`, `serial_number`) VALUES
(58, 176, '1. How easy is it to set up my online store?', 'Setting up your store is quick and simple. Our platform provides step-by-step guidance, and you can have your store live within minutes. No technical skills required!', 1),
(59, 176, '2. Can I customize my store\'s design?', 'Absolutely! You can choose from a variety of templates and customize them to match your brand’s identity. With easy-to-use design tools, you can create a store that stands out.', 2),
(60, 176, '3. Is my data secure on your platform?', 'Yes, your data and transactions are fully secure. We use top-level encryption and follow industry best practices to ensure the safety of your business and customer data.', 3),
(61, 176, '4. What payment methods can I offer to my customers?', 'Our platform supports a wide range of payment gateways including credit cards, PayPal, Stripe, and many more, giving your customers flexible payment options.', 4),
(62, 176, '5. Can I track my sales and performance?', 'Yes, with our built-in analytics tools, you can track sales, monitor customer behavior, and gain insights to help grow your business. Real-time reporting helps you stay informed at all times.', 5),
(63, 176, '6. Do you offer support if I need help?', 'Definitely! Our support team is available 24/7 to assist you with any questions or issues. We also have a comprehensive help center with tutorials and guides.', 6),
(64, 176, '7. Can I scale my store as my business grows?', 'Yes! Our platform is designed to grow with your business. You can easily add more products, users, and features as your business expands without worrying about limitations.', 7),
(65, 177, '٧. هل يمكنني توسيع نطاق متجري مع نمو عملي؟', 'نعم! تم تصميم منصتنا لتنمو مع عملك. يمكنك بسهولة إضافة المزيد من المنتجات والمستخدمين والميزات مع توسع عملك دون القلق بشأن القيود.', 1),
(66, 177, '٦. هل تقدمون الدعم إذا كنت بحاجة إلى مساعدة؟', 'التاكيد! فريق الدعم لدينا متاح 24/7 لمساعدتك في أي أسئلة أو مشاكل. لدينا أيضا مركز مساعدة شامل مع البرامج التعليمية والأدلة.', 2),
(67, 177, '٥. هل يمكنني تتبع مبيعاتي وأدائي؟', 'نعم ، باستخدام أدوات التحليلات المضمنة لدينا ، يمكنك تتبع المبيعات ومراقبة سلوك العملاء واكتساب رؤى للمساعدة في تنمية أعمالك. تساعدك التقارير في الوقت الفعلي على البقاء على اطلاع في جميع الأوقات.', 4),
(68, 177, '٤. ما هي طرق الدفع التي يمكنني تقديمها لعملائي؟', 'تدعم منصتنا مجموعة واسعة من بوابات الدفع بما في ذلك بطاقات الائتمان و PayPal و Stripe وغيرها الكثير ، مما يمنح عملائك خيارات دفع مرنة.', 5),
(69, 177, '٥. هل يمكنني تتبع مبيعاتي وأدائي؟', 'نعم ، باستخدام أدوات التحليلات المضمنة لدينا ، يمكنك تتبع المبيعات ومراقبة سلوك العملاء واكتساب رؤى للمساعدة في تنمية أعمالك. تساعدك التقارير في الوقت الفعلي على البقاء على اطلاع في جميع الأوقات.', 5),
(70, 177, '٣. هل بياناتي آمنة على النظام الأساسي الخاص بك؟', 'نعم، بياناتك ومعاملاتك آمنة تماما. نحن نستخدم تشفيرا عالي المستوى ونتبع أفضل ممارسات الصناعة لضمان سلامة عملك وبيانات العملاء.', 5),
(71, 177, '٢. هل يمكنني تخصيص تصميم متجري؟', 'متنوعة من القوالب وتخصيصها لتتناسب مع هوية علامتك التجارية. باستخدام أدوات التصميم سهلة الاستخدام ، يمكنك إنشاء متجر متميز.', 7);

-- --------------------------------------------------------

--
-- Table structure for table `features`
--

CREATE TABLE `features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `icon` varchar(255) DEFAULT NULL,
  `title` varchar(50) DEFAULT NULL,
  `text` varchar(255) DEFAULT NULL,
  `serial_number` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `features`
--

INSERT INTO `features` (`id`, `language_id`, `icon`, `title`, `text`, `serial_number`) VALUES
(87, 177, '1747471697.png', 'التسجيل في الدورة', 'يمكن للطلاب التسجيل في الدورات المدفوعة والمتميزة', 1),
(88, 177, '1747472034.png', 'بوابة الدفع', 'قم بإدارة أعمالك بسهولة باستخدام لوحة تحكم بديهية تمنحك التحكم الكامل في المنتجات والطلبات والتحليلات في مكان واحد.', 2),
(89, 177, '1747471678.png', 'منشئ محتوى الدرس', 'يمكنك تزيين الدروس بالنص والاختبار والفيديو والملفات ومقتطفات التعليمات البرمجية', 3),
(90, 177, '1747471843.png', 'تقرير التسجيل', 'تأكد من حماية بيانات عملائك بأمان عالي المستوى من أجل معالجة دفع سلسة وموثوقة.', 4),
(95, 176, '1745747978.png', '5 Home Versions', 'We provide 2 theme with 06 version for hotelia', 2),
(96, 176, '1745748012.png', 'Payments Gateways', 'Hotelia provided popular 10 payments gateways', 2),
(97, 176, '1745748045.png', 'Unlimited Currencies', 'Admin can add any types currency based on USD', 3),
(98, 176, '1745748082.png', 'Advance Search', 'Hotelia provided advance search for rooms', 3),
(99, 176, '1745748206.png', 'Drag & Drop Builder', 'Admin can add, delete, sort, nest menu etc', 4),
(100, 176, '1745748287.png', 'Email Template', 'Admin can customize mail template easily', 6),
(101, 177, '1747471782.png', 'حث متقدم', 'تنمو منصتنا مع عملك، مما يوفر المرونة اللازمة لإضافة منتجات وميزات ومستخدمين جدد بسهولة', 5),
(102, 177, '1747471811.png', 'الفقرات في ا', 'احصل على الدعم على مدار الساعة عندما تحتاج إليه. فريقنا هنا لمساعدتك في أي مشاكل أو أسئلة.', 6);

-- --------------------------------------------------------

--
-- Table structure for table `headings`
--

CREATE TABLE `headings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED DEFAULT NULL,
  `listing_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `pricing_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `faq_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `contact_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `blog_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `login_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `reset_password_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signup_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `checkout_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `not_found_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `custom_page_heading` text COLLATE utf8mb4_unicode_ci,
  `forget_password_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `headings`
--

INSERT INTO `headings` (`id`, `language_id`, `listing_title`, `pricing_title`, `faq_title`, `contact_title`, `blog_title`, `login_title`, `reset_password_title`, `signup_title`, `checkout_title`, `not_found_title`, `custom_page_heading`, `forget_password_title`, `created_at`, `updated_at`) VALUES
(1, 176, 'Listings', 'Pricing', 'FAQ', 'Contact', 'Blog', 'Login', 'Reset Password', 'Signup', 'Checkout', NULL, '{\"21\":\"Terms & Conditions\"}', 'Forget Password', NULL, NULL),
(2, 177, 'القوائم', 'صفحة التسعير', 'الأسئلة الشائعة', 'للتواصل', 'المدونة', 'تسجيل الدخول', 'إعادة تعيين كلمة المرور', 'التسجيل', 'الدفع', NULL, '{\"12\":\"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0639\\u0646\\u0627\",\"13\":\"\\u0627\\u0644\\u0628\\u0646\\u0648\\u062f \\u0648 \\u0627\\u0644\\u0638\\u0631\\u0648\\u0641\"}', 'نسيت كلمة المرو', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `jobs`
--

CREATE TABLE `jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `queue` varchar(255) NOT NULL,
  `payload` longtext NOT NULL,
  `attempts` tinyint(3) UNSIGNED NOT NULL,
  `reserved_at` int(10) UNSIGNED DEFAULT NULL,
  `available_at` int(10) UNSIGNED NOT NULL,
  `created_at` int(10) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `languages`
--

CREATE TABLE `languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `code` varchar(255) DEFAULT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT '1',
  `dashboard_default` tinyint(4) NOT NULL DEFAULT '0',
  `rtl` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 - LTR, 1- RTL',
  `customer_keywords` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `languages`
--

INSERT INTO `languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `customer_keywords`, `created_at`, `updated_at`) VALUES
(176, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', '2020-08-07 04:43:05', '2025-05-18 06:08:46');
INSERT INTO `languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `customer_keywords`, `created_at`, `updated_at`) VALUES
(177, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', '2020-08-07 04:51:17', '2025-05-18 06:08:46');

-- --------------------------------------------------------

--
-- Table structure for table `memberships`
--

CREATE TABLE `memberships` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `package_price` double NOT NULL DEFAULT '0',
  `discount` double NOT NULL DEFAULT '0',
  `coupon_code` varchar(255) DEFAULT NULL,
  `price` double NOT NULL DEFAULT '0',
  `currency` varchar(255) NOT NULL,
  `currency_symbol` varchar(255) NOT NULL,
  `payment_method` varchar(255) DEFAULT NULL,
  `transaction_id` varchar(255) NOT NULL,
  `status` tinyint(1) NOT NULL DEFAULT '0',
  `is_trial` tinyint(1) NOT NULL DEFAULT '0',
  `trial_days` int(11) NOT NULL DEFAULT '0',
  `receipt` longtext,
  `transaction_details` longtext,
  `settings` longtext,
  `package_id` int(11) NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `start_date` date DEFAULT NULL,
  `expire_date` date DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `modified` tinyint(4) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `memberships`
--

INSERT INTO `memberships` (`id`, `package_price`, `discount`, `coupon_code`, `price`, `currency`, `currency_symbol`, `payment_method`, `transaction_id`, `status`, `is_trial`, `trial_days`, `receipt`, `transaction_details`, `settings`, `package_id`, `user_id`, `start_date`, `expire_date`, `created_at`, `updated_at`, `modified`) VALUES
(200, 999, 0, NULL, 999, 'USD', '$', 'Flutterwave', 'ed1d4c69', 1, 0, 0, NULL, NULL, '{\"id\":147,\"language_id\":176,\"cookie_alert_status\":1,\"cookie_alert_text\":\"<p>Your experience on this site will be improved by allowing cookies.\\ud83d\\ude01<\\/p>\",\"cookie_alert_button_text\":\"Allow Cookies\",\"to_mail\":\"vaxine8324@excederm.com\",\"default_language_direction\":\"ltr\",\"from_mail\":\"ranaahmed269205@gmail.com\",\"testimonial_img\":\"1745748492.png\",\"from_name\":\"Hotelia SAAS\",\"is_smtp\":1,\"smtp_host\":\"smtp.gmail.com\",\"smtp_port\":\"587\",\"encryption\":\"TLS\",\"smtp_username\":\"ranaahmed269205@gmail.com\",\"smtp_password\":\"afiw ynhq tjuj vdwa\",\"base_currency_symbol\":\"$\",\"base_currency_symbol_position\":\"left\",\"base_currency_text\":\"USD\",\"base_currency_text_position\":\"right\",\"base_currency_rate\":\"1.00\",\"hero_section_title\":\"Our Platform, Your Success\",\"hero_section_subtitle\":\"Build Your Own Hotel Booking Website\",\"hero_section_text\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque laudantium, totam rem aperiam.\",\"hero_section_button_text\":\"Explore Plans\",\"hero_section_button_url\":\"https:\\/\\/hoteliasaas.test\\/pricing\",\"hero_img\":\"680df3850dd12.png\",\"timezone\":\"Asia\\/Dhaka\",\"contact_addresses\":\"California, USA\\r\\nLondon, United Kingdom\\r\\nMelbourne, Australia\",\"contact_numbers\":\"+8434197502,+2350575099\",\"contact_mails\":\"contact@example.com,support@example.com\",\"is_whatsapp\":1,\"whatsapp_number\":null,\"whatsapp_header_title\":null,\"whatsapp_popup_message\":null,\"whatsapp_popup\":1,\"domain_request_success_message\":\"We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.\",\"cname_record_section_title\":\"Read Before Sending Custom Domain Request\",\"cname_record_section_text\":\"<ul>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">Before sending request for your custom domain, You need to add CNAME records (given in below table) in your custom domain from your domain registrar account (like - namecheap, godaddy etc...).<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0CNAME records are needed to point your custom domain to our domain ( sassotest.xyz ), so that our website can show your website on your custom domain<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0Different domain registrar (like - godaddy, namecheap etc...) has different interface for adding CNAME records. If you cannot find the place to add CNAME record in your domain registrar account, then please contact your domain registrar support, they will show you the place to add CNAME record for your custom domain. They can also help you with adding CNAME record for you.<\\/span><\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style=\\\"font-weight:600;color:rgb(87,89,98);\\\">Add CNAME records (take data from below table) in your custom domain from your domain registrar panel:<\\/span><\\/p>\\r\\n<table class=\\\"table table-bordered\\\" style=\\\"width: 726px;\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>Type<\\/td>\\r\\n<td>Host<\\/td>\\r\\n<td>Value<\\/td>\\r\\n<td>TTL<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>www<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>@<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<p><span style=\\\"color:rgb(87,89,98);\\\"><span style=\\\"font-weight:600;\\\">Screenshots for Example Purpose:<\\/span><br \\/><\\/span><img src=\\\"https:\\/\\/images.unsplash.com\\/photo-1575936123452-b67c3203c357?auto=format&amp;fit=crop&amp;q=80&amp;w=1000&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D\\\" alt=\\\"62ea8c9ebea35.png\\\" height=\\\"67\\\" \\/><span style=\\\"color:rgb(87,89,98);\\\"><br \\/><\\/span><\\/p>\",\"package_features\":\"[\\\"Custom Domain\\\",\\\"Subdomain\\\",\\\"QR Builder\\\",\\\"Blog\\\",\\\"Room Coupon\\\",\\\"Tour Package\\\",\\\"Package Coupon\\\",\\\"Custom Page\\\",\\\"Support Ticket\\\",\\\"Advertisement\\\"]\",\"expiration_reminder\":3,\"max_video_size\":\"40.00\",\"max_file_size\":\"5.00\",\"is_ticket\":0,\"page_not_found_image\":\"67fa35a766447.svg\",\"page_not_found_title\":\"Page Not Found Title\",\"page_not_found_subtitle\":\"Page Not Found Subtitle\",\"about_testimonial_section_title\":\"What Our Customers Are Saying\",\"about_testimonial_section_image\":\"6808ae7279832.png\",\"about_features_section_title\":\"Why You Choose Our Template\",\"about_features_section_subtitle\":\"Bring More Profit With More Features\",\"about_features_section_image\":\"6808928de5f77.jpg\",\"about_features_section_text\":\"With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success.\",\"about_features_section_button_text\":\"Signup Now\",\"about_features_section_url\":\"https:\\/\\/www.xolebosu.biz\",\"about_features_section_video_url\":\"https:\\/\\/www.riwuryqyle.tv\",\"about_process_section_title\":\"How it works ?\",\"about_blog_section_title\":\"Our Latest Blog\",\"about_counter_title\":\"Our Overall Achievements\",\"about_counter_text\":\"Users interested in investing in real estate can register on the platform by providing their own bank account\",\"about_counter_image\":\"6808ae4555a4d.png\"}', 1000025, 83, '2025-04-27', '3024-04-27', '2025-04-27 12:53:59', '2025-04-27 12:53:59', 0),
(201, 599, 0, NULL, 599, 'USD', '$', 'Stripe', 'f9f8068b', 1, 0, 0, NULL, NULL, '{\"id\":147,\"language_id\":176,\"cookie_alert_status\":1,\"cookie_alert_text\":\"<p>Your experience on this site will be improved by allowing cookies.\\ud83d\\ude01<\\/p>\",\"cookie_alert_button_text\":\"Allow Cookies\",\"to_mail\":\"vaxine8324@excederm.com\",\"default_language_direction\":\"ltr\",\"from_mail\":\"ranaahmed269205@gmail.com\",\"testimonial_img\":\"1745748492.png\",\"from_name\":\"Hotelia SAAS\",\"is_smtp\":1,\"smtp_host\":\"smtp.gmail.com\",\"smtp_port\":\"587\",\"encryption\":\"TLS\",\"smtp_username\":\"ranaahmed269205@gmail.com\",\"smtp_password\":\"afiw ynhq tjuj vdwa\",\"base_currency_symbol\":\"$\",\"base_currency_symbol_position\":\"left\",\"base_currency_text\":\"USD\",\"base_currency_text_position\":\"right\",\"base_currency_rate\":\"1.00\",\"hero_section_title\":\"Our Platform, Your Success\",\"hero_section_subtitle\":\"Build Your Own Hotel Booking Website\",\"hero_section_text\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque laudantium, totam rem aperiam.\",\"hero_section_button_text\":\"Explore Plans\",\"hero_section_button_url\":\"https:\\/\\/hoteliasaas.test\\/pricing\",\"hero_img\":\"680df3850dd12.png\",\"timezone\":\"Asia\\/Dhaka\",\"contact_addresses\":\"California, USA\\r\\nLondon, United Kingdom\\r\\nMelbourne, Australia\",\"contact_numbers\":\"+8434197502,+2350575099\",\"contact_mails\":\"contact@example.com,support@example.com\",\"is_whatsapp\":1,\"whatsapp_number\":null,\"whatsapp_header_title\":null,\"whatsapp_popup_message\":null,\"whatsapp_popup\":1,\"domain_request_success_message\":\"We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.\",\"cname_record_section_title\":\"Read Before Sending Custom Domain Request\",\"cname_record_section_text\":\"<ul>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">Before sending request for your custom domain, You need to add CNAME records (given in below table) in your custom domain from your domain registrar account (like - namecheap, godaddy etc...).<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0CNAME records are needed to point your custom domain to our domain ( sassotest.xyz ), so that our website can show your website on your custom domain<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0Different domain registrar (like - godaddy, namecheap etc...) has different interface for adding CNAME records. If you cannot find the place to add CNAME record in your domain registrar account, then please contact your domain registrar support, they will show you the place to add CNAME record for your custom domain. They can also help you with adding CNAME record for you.<\\/span><\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style=\\\"font-weight:600;color:rgb(87,89,98);\\\">Add CNAME records (take data from below table) in your custom domain from your domain registrar panel:<\\/span><\\/p>\\r\\n<table class=\\\"table table-bordered\\\" style=\\\"width: 726px;\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>Type<\\/td>\\r\\n<td>Host<\\/td>\\r\\n<td>Value<\\/td>\\r\\n<td>TTL<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>www<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>@<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<p><span style=\\\"color:rgb(87,89,98);\\\"><span style=\\\"font-weight:600;\\\">Screenshots for Example Purpose:<\\/span><br \\/><\\/span><img src=\\\"https:\\/\\/images.unsplash.com\\/photo-1575936123452-b67c3203c357?auto=format&amp;fit=crop&amp;q=80&amp;w=1000&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D\\\" alt=\\\"62ea8c9ebea35.png\\\" height=\\\"67\\\" \\/><span style=\\\"color:rgb(87,89,98);\\\"><br \\/><\\/span><\\/p>\",\"package_features\":\"[\\\"Custom Domain\\\",\\\"Subdomain\\\",\\\"QR Builder\\\",\\\"Blog\\\",\\\"Room Coupon\\\",\\\"Tour Package\\\",\\\"Package Coupon\\\",\\\"Custom Page\\\",\\\"Support Ticket\\\",\\\"Advertisement\\\"]\",\"expiration_reminder\":3,\"max_video_size\":\"40.00\",\"max_file_size\":\"5.00\",\"is_ticket\":0,\"page_not_found_image\":\"67fa35a766447.svg\",\"page_not_found_title\":\"Page Not Found Title\",\"page_not_found_subtitle\":\"Page Not Found Subtitle\",\"about_testimonial_section_title\":\"What Our Customers Are Saying\",\"about_testimonial_section_image\":\"6808ae7279832.png\",\"about_features_section_title\":\"Why You Choose Our Template\",\"about_features_section_subtitle\":\"Bring More Profit With More Features\",\"about_features_section_image\":\"6808928de5f77.jpg\",\"about_features_section_text\":\"With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success.\",\"about_features_section_button_text\":\"Signup Now\",\"about_features_section_url\":\"https:\\/\\/www.xolebosu.biz\",\"about_features_section_video_url\":\"https:\\/\\/www.riwuryqyle.tv\",\"about_process_section_title\":\"How it works ?\",\"about_blog_section_title\":\"Our Latest Blog\",\"about_counter_title\":\"Our Overall Achievements\",\"about_counter_text\":\"Users interested in investing in real estate can register on the platform by providing their own bank account\",\"about_counter_image\":\"6808ae4555a4d.png\"}', 1000024, 84, '2025-04-27', '3024-04-27', '2025-04-27 12:55:29', '2025-04-27 12:55:29', 0),
(202, 999, 0, NULL, 999, 'USD', '$', 'Flutterwave', 'ea14fb12', 1, 0, 0, NULL, NULL, '{\"id\":147,\"language_id\":176,\"cookie_alert_status\":1,\"cookie_alert_text\":\"<p>Your experience on this site will be improved by allowing cookies.\\ud83d\\ude01<\\/p>\",\"cookie_alert_button_text\":\"Allow Cookies\",\"to_mail\":\"vaxine8324@excederm.com\",\"default_language_direction\":\"ltr\",\"from_mail\":\"ranaahmed269205@gmail.com\",\"testimonial_img\":\"1745748492.png\",\"from_name\":\"Hotelia SAAS\",\"is_smtp\":1,\"smtp_host\":\"smtp.gmail.com\",\"smtp_port\":\"587\",\"encryption\":\"TLS\",\"smtp_username\":\"ranaahmed269205@gmail.com\",\"smtp_password\":\"afiw ynhq tjuj vdwa\",\"base_currency_symbol\":\"$\",\"base_currency_symbol_position\":\"left\",\"base_currency_text\":\"USD\",\"base_currency_text_position\":\"right\",\"base_currency_rate\":\"1.00\",\"hero_section_title\":\"Our Platform, Your Success\",\"hero_section_subtitle\":\"Build Your Own Hotel Booking Website\",\"hero_section_text\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque laudantium, totam rem aperiam.\",\"hero_section_button_text\":\"Explore Plans\",\"hero_section_button_url\":\"https:\\/\\/hoteliasaas.test\\/pricing\",\"hero_img\":\"680df3850dd12.png\",\"timezone\":\"Asia\\/Dhaka\",\"contact_addresses\":\"California, USA\\r\\nLondon, United Kingdom\\r\\nMelbourne, Australia\",\"contact_numbers\":\"+8434197502,+2350575099\",\"contact_mails\":\"contact@example.com,support@example.com\",\"is_whatsapp\":1,\"whatsapp_number\":null,\"whatsapp_header_title\":null,\"whatsapp_popup_message\":null,\"whatsapp_popup\":1,\"domain_request_success_message\":\"We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.\",\"cname_record_section_title\":\"Read Before Sending Custom Domain Request\",\"cname_record_section_text\":\"<ul>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">Before sending request for your custom domain, You need to add CNAME records (given in below table) in your custom domain from your domain registrar account (like - namecheap, godaddy etc...).<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0CNAME records are needed to point your custom domain to our domain ( sassotest.xyz ), so that our website can show your website on your custom domain<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0Different domain registrar (like - godaddy, namecheap etc...) has different interface for adding CNAME records. If you cannot find the place to add CNAME record in your domain registrar account, then please contact your domain registrar support, they will show you the place to add CNAME record for your custom domain. They can also help you with adding CNAME record for you.<\\/span><\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style=\\\"font-weight:600;color:rgb(87,89,98);\\\">Add CNAME records (take data from below table) in your custom domain from your domain registrar panel:<\\/span><\\/p>\\r\\n<table class=\\\"table table-bordered\\\" style=\\\"width: 726px;\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>Type<\\/td>\\r\\n<td>Host<\\/td>\\r\\n<td>Value<\\/td>\\r\\n<td>TTL<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>www<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>@<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<p><span style=\\\"color:rgb(87,89,98);\\\"><span style=\\\"font-weight:600;\\\">Screenshots for Example Purpose:<\\/span><br \\/><\\/span><img src=\\\"https:\\/\\/images.unsplash.com\\/photo-1575936123452-b67c3203c357?auto=format&amp;fit=crop&amp;q=80&amp;w=1000&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D\\\" alt=\\\"62ea8c9ebea35.png\\\" height=\\\"67\\\" \\/><span style=\\\"color:rgb(87,89,98);\\\"><br \\/><\\/span><\\/p>\",\"package_features\":\"[\\\"Custom Domain\\\",\\\"Subdomain\\\",\\\"QR Builder\\\",\\\"Blog\\\",\\\"Room Coupon\\\",\\\"Tour Package\\\",\\\"Package Coupon\\\",\\\"Custom Page\\\",\\\"Support Ticket\\\",\\\"Advertisement\\\"]\",\"expiration_reminder\":3,\"max_video_size\":\"40.00\",\"max_file_size\":\"5.00\",\"is_ticket\":0,\"page_not_found_image\":\"67fa35a766447.svg\",\"page_not_found_title\":\"Page Not Found Title\",\"page_not_found_subtitle\":\"Page Not Found Subtitle\",\"about_testimonial_section_title\":\"What Our Customers Are Saying\",\"about_testimonial_section_image\":\"6808ae7279832.png\",\"about_features_section_title\":\"Why You Choose Our Template\",\"about_features_section_subtitle\":\"Bring More Profit With More Features\",\"about_features_section_image\":\"6808928de5f77.jpg\",\"about_features_section_text\":\"With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success.\",\"about_features_section_button_text\":\"Signup Now\",\"about_features_section_url\":\"https:\\/\\/www.xolebosu.biz\",\"about_features_section_video_url\":\"https:\\/\\/www.riwuryqyle.tv\",\"about_process_section_title\":\"How it works ?\",\"about_blog_section_title\":\"Our Latest Blog\",\"about_counter_title\":\"Our Overall Achievements\",\"about_counter_text\":\"Users interested in investing in real estate can register on the platform by providing their own bank account\",\"about_counter_image\":\"6808ae4555a4d.png\"}', 1000025, 85, '2025-04-27', '3024-04-27', '2025-04-27 12:56:32', '2025-04-27 12:56:32', 0),
(203, 999, 0, NULL, 999, 'USD', '$', 'Stripe', 'd1c0c526', 1, 0, 0, NULL, '{\"id\":\"ch_3RIUnOJlIV5dN9n71Lr6CTg0\",\"object\":\"charge\",\"amount\":99900,\"amount_captured\":99900,\"amount_refunded\":0,\"application\":null,\"application_fee\":null,\"application_fee_amount\":null,\"balance_transaction\":\"txn_3RIUnOJlIV5dN9n71kDoMuA9\",\"billing_details\":{\"address\":{\"city\":null,\"country\":null,\"line1\":null,\"line2\":null,\"postal_code\":\"12345\",\"state\":null},\"email\":null,\"name\":null,\"phone\":null,\"tax_id\":null},\"calculated_statement_descriptor\":\"Stripe\",\"captured\":true,\"created\":1745758738,\"currency\":\"usd\",\"customer\":null,\"description\":\"You are purchasing a membership\",\"destination\":null,\"dispute\":null,\"disputed\":false,\"failure_balance_transaction\":null,\"failure_code\":null,\"failure_message\":null,\"fraud_details\":[],\"invoice\":null,\"livemode\":false,\"metadata\":[],\"on_behalf_of\":null,\"order\":null,\"outcome\":{\"advice_code\":null,\"network_advice_code\":null,\"network_decline_code\":null,\"network_status\":\"approved_by_network\",\"reason\":null,\"risk_level\":\"normal\",\"risk_score\":49,\"seller_message\":\"Payment complete.\",\"type\":\"authorized\"},\"paid\":true,\"payment_intent\":null,\"payment_method\":\"card_1RIUnMJlIV5dN9n7qHm3rux9\",\"payment_method_details\":{\"card\":{\"amount_authorized\":99900,\"authorization_code\":null,\"brand\":\"visa\",\"checks\":{\"address_line1_check\":null,\"address_postal_code_check\":\"pass\",\"cvc_check\":\"pass\"},\"country\":\"US\",\"exp_month\":4,\"exp_year\":2026,\"extended_authorization\":{\"status\":\"disabled\"},\"fingerprint\":\"WXDgVUSzrY61Nnm6\",\"funding\":\"credit\",\"incremental_authorization\":{\"status\":\"unavailable\"},\"installments\":null,\"last4\":\"4242\",\"mandate\":null,\"multicapture\":{\"status\":\"unavailable\"},\"network\":\"visa\",\"network_token\":{\"used\":false},\"network_transaction_id\":\"878868103868583\",\"overcapture\":{\"maximum_amount_capturable\":99900,\"status\":\"unavailable\"},\"regulated_status\":\"unregulated\",\"three_d_secure\":null,\"wallet\":null},\"type\":\"card\"},\"receipt_email\":null,\"receipt_number\":null,\"receipt_url\":\"https:\\/\\/pay.stripe.com\\/receipts\\/payment\\/CAcaFwoVYWNjdF8xQXplbzNKbElWNWROOW43KJLUuMAGMgaa3ConQls6LBZH5jOXuDoNQCO-_GryQ3z6TrA5ZmTYX6IHu4TEWDI3w_XJyLg_gMP6K-bH\",\"refunded\":false,\"refunds\":{\"object\":\"list\",\"data\":[],\"has_more\":false,\"total_count\":0,\"url\":\"\\/v1\\/charges\\/ch_3RIUnOJlIV5dN9n71Lr6CTg0\\/refunds\"},\"review\":null,\"shipping\":null,\"source\":{\"id\":\"card_1RIUnMJlIV5dN9n7qHm3rux9\",\"object\":\"card\",\"address_city\":null,\"address_country\":null,\"address_line1\":null,\"address_line1_check\":null,\"address_line2\":null,\"address_state\":null,\"address_zip\":\"12345\",\"address_zip_check\":\"pass\",\"allow_redisplay\":\"unspecified\",\"brand\":\"Visa\",\"country\":\"US\",\"customer\":null,\"cvc_check\":\"pass\",\"dynamic_last4\":null,\"exp_month\":4,\"exp_year\":2026,\"fingerprint\":\"WXDgVUSzrY61Nnm6\",\"funding\":\"credit\",\"last4\":\"4242\",\"metadata\":[],\"name\":null,\"regulated_status\":\"unregulated\",\"tokenization_method\":null,\"wallet\":null},\"source_transfer\":null,\"statement_descriptor\":null,\"statement_descriptor_suffix\":null,\"status\":\"succeeded\",\"transfer_data\":null,\"transfer_group\":null}', '{\"id\":147,\"language_id\":176,\"cookie_alert_status\":1,\"cookie_alert_text\":\"<p>Your experience on this site will be improved by allowing cookies.\\ud83d\\ude01<\\/p>\",\"cookie_alert_button_text\":\"Allow Cookies\",\"to_mail\":\"vaxine8324@excederm.com\",\"default_language_direction\":\"ltr\",\"from_mail\":\"ranaahmed269205@gmail.com\",\"testimonial_img\":\"1745748492.png\",\"from_name\":\"Hotelia SAAS\",\"is_smtp\":1,\"smtp_host\":\"smtp.gmail.com\",\"smtp_port\":\"587\",\"encryption\":\"TLS\",\"smtp_username\":\"ranaahmed269205@gmail.com\",\"smtp_password\":\"afiw ynhq tjuj vdwa\",\"base_currency_symbol\":\"$\",\"base_currency_symbol_position\":\"left\",\"base_currency_text\":\"USD\",\"base_currency_text_position\":\"right\",\"base_currency_rate\":\"1.00\",\"hero_section_title\":\"Our Platform, Your Success\",\"hero_section_subtitle\":\"Build Your Own Hotel Booking Website\",\"hero_section_text\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque laudantium, totam rem aperiam.\",\"hero_section_button_text\":\"Explore Plans\",\"hero_section_button_url\":\"https:\\/\\/hoteliasaas.test\\/pricing\",\"hero_img\":\"680df3850dd12.png\",\"timezone\":\"Asia\\/Dhaka\",\"contact_addresses\":\"California, USA\\r\\nLondon, United Kingdom\\r\\nMelbourne, Australia\",\"contact_numbers\":\"+8434197502,+2350575099\",\"contact_mails\":\"contact@example.com,support@example.com\",\"is_whatsapp\":1,\"whatsapp_number\":null,\"whatsapp_header_title\":null,\"whatsapp_popup_message\":null,\"whatsapp_popup\":1,\"domain_request_success_message\":\"We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.\",\"cname_record_section_title\":\"Read Before Sending Custom Domain Request\",\"cname_record_section_text\":\"<ul>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">Before sending request for your custom domain, You need to add CNAME records (given in below table) in your custom domain from your domain registrar account (like - namecheap, godaddy etc...).<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0CNAME records are needed to point your custom domain to our domain ( sassotest.xyz ), so that our website can show your website on your custom domain<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0Different domain registrar (like - godaddy, namecheap etc...) has different interface for adding CNAME records. If you cannot find the place to add CNAME record in your domain registrar account, then please contact your domain registrar support, they will show you the place to add CNAME record for your custom domain. They can also help you with adding CNAME record for you.<\\/span><\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style=\\\"font-weight:600;color:rgb(87,89,98);\\\">Add CNAME records (take data from below table) in your custom domain from your domain registrar panel:<\\/span><\\/p>\\r\\n<table class=\\\"table table-bordered\\\" style=\\\"width: 726px;\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>Type<\\/td>\\r\\n<td>Host<\\/td>\\r\\n<td>Value<\\/td>\\r\\n<td>TTL<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>www<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>@<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<p><span style=\\\"color:rgb(87,89,98);\\\"><span style=\\\"font-weight:600;\\\">Screenshots for Example Purpose:<\\/span><br \\/><\\/span><img src=\\\"https:\\/\\/images.unsplash.com\\/photo-1575936123452-b67c3203c357?auto=format&amp;fit=crop&amp;q=80&amp;w=1000&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D\\\" alt=\\\"62ea8c9ebea35.png\\\" height=\\\"67\\\" \\/><span style=\\\"color:rgb(87,89,98);\\\"><br \\/><\\/span><\\/p>\",\"package_features\":\"[\\\"Custom Domain\\\",\\\"Subdomain\\\",\\\"QR Builder\\\",\\\"Blog\\\",\\\"Room Coupon\\\",\\\"Tour Package\\\",\\\"Package Coupon\\\",\\\"Custom Page\\\",\\\"Support Ticket\\\",\\\"Advertisement\\\"]\",\"expiration_reminder\":3,\"max_video_size\":\"40.00\",\"max_file_size\":\"5.00\",\"is_ticket\":0,\"page_not_found_image\":\"67fa35a766447.svg\",\"page_not_found_title\":\"Page Not Found Title\",\"page_not_found_subtitle\":\"Page Not Found Subtitle\",\"about_testimonial_section_title\":\"What Our Customers Are Saying\",\"about_testimonial_section_image\":\"6808ae7279832.png\",\"about_features_section_title\":\"Why You Choose Our Template\",\"about_features_section_subtitle\":\"Bring More Profit With More Features\",\"about_features_section_image\":\"6808928de5f77.jpg\",\"about_features_section_text\":\"With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success.\",\"about_features_section_button_text\":\"Signup Now\",\"about_features_section_url\":\"https:\\/\\/www.xolebosu.biz\",\"about_features_section_video_url\":\"https:\\/\\/www.riwuryqyle.tv\",\"about_process_section_title\":\"How it works ?\",\"about_blog_section_title\":\"Our Latest Blog\",\"about_counter_title\":\"Our Overall Achievements\",\"about_counter_text\":\"Users interested in investing in real estate can register on the platform by providing their own bank account\",\"about_counter_image\":\"6808ae4555a4d.png\"}', 1000025, 86, '2025-04-27', '3024-04-27', '2025-04-27 12:59:02', '2025-04-27 12:59:02', 0),
(204, 999, 0, NULL, 999, 'USD', '$', 'JPMorgan Chase & Co.', '74760026', 1, 0, 0, '1745758852.jpg', '\"offline\"', '{\"id\":147,\"language_id\":176,\"cookie_alert_status\":1,\"cookie_alert_text\":\"<p>Your experience on this site will be improved by allowing cookies.\\ud83d\\ude01<\\/p>\",\"cookie_alert_button_text\":\"Allow Cookies\",\"to_mail\":\"vaxine8324@excederm.com\",\"default_language_direction\":\"ltr\",\"from_mail\":\"ranaahmed269205@gmail.com\",\"testimonial_img\":\"1745748492.png\",\"from_name\":\"Hotelia SAAS\",\"is_smtp\":1,\"smtp_host\":\"smtp.gmail.com\",\"smtp_port\":\"587\",\"encryption\":\"TLS\",\"smtp_username\":\"ranaahmed269205@gmail.com\",\"smtp_password\":\"afiw ynhq tjuj vdwa\",\"base_currency_symbol\":\"$\",\"base_currency_symbol_position\":\"left\",\"base_currency_text\":\"USD\",\"base_currency_text_position\":\"right\",\"base_currency_rate\":\"1.00\",\"hero_section_title\":\"Our Platform, Your Success\",\"hero_section_subtitle\":\"Build Your Own Hotel Booking Website\",\"hero_section_text\":\"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusa ntium doloremque laudantium, totam rem aperiam.\",\"hero_section_button_text\":\"Explore Plans\",\"hero_section_button_url\":\"https:\\/\\/hoteliasaas.test\\/pricing\",\"hero_img\":\"680df3850dd12.png\",\"timezone\":\"Asia\\/Dhaka\",\"contact_addresses\":\"California, USA\\r\\nLondon, United Kingdom\\r\\nMelbourne, Australia\",\"contact_numbers\":\"+8434197502,+2350575099\",\"contact_mails\":\"contact@example.com,support@example.com\",\"is_whatsapp\":1,\"whatsapp_number\":null,\"whatsapp_header_title\":null,\"whatsapp_popup_message\":null,\"whatsapp_popup\":1,\"domain_request_success_message\":\"We have received your custom domain request. Please allow us 2 business days to connect the domain with our server.\",\"cname_record_section_title\":\"Read Before Sending Custom Domain Request\",\"cname_record_section_text\":\"<ul>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">Before sending request for your custom domain, You need to add CNAME records (given in below table) in your custom domain from your domain registrar account (like - namecheap, godaddy etc...).<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0CNAME records are needed to point your custom domain to our domain ( sassotest.xyz ), so that our website can show your website on your custom domain<\\/span><\\/span><\\/li>\\r\\n<li><span style=\\\"color:#575962;\\\"><span style=\\\"font-weight:600;\\\">\\u00a0Different domain registrar (like - godaddy, namecheap etc...) has different interface for adding CNAME records. If you cannot find the place to add CNAME record in your domain registrar account, then please contact your domain registrar support, they will show you the place to add CNAME record for your custom domain. They can also help you with adding CNAME record for you.<\\/span><\\/span><\\/li>\\r\\n<\\/ul>\\r\\n<p><span style=\\\"font-weight:600;color:rgb(87,89,98);\\\">Add CNAME records (take data from below table) in your custom domain from your domain registrar panel:<\\/span><\\/p>\\r\\n<table class=\\\"table table-bordered\\\" style=\\\"width: 726px;\\\">\\r\\n<tbody>\\r\\n<tr>\\r\\n<td>Type<\\/td>\\r\\n<td>Host<\\/td>\\r\\n<td>Value<\\/td>\\r\\n<td>TTL<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>www<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<tr>\\r\\n<td>CNAME Record<\\/td>\\r\\n<td>@<\\/td>\\r\\n<td>sassotest.xyz.<\\/td>\\r\\n<td>Automatic<\\/td>\\r\\n<\\/tr>\\r\\n<\\/tbody>\\r\\n<\\/table>\\r\\n<p><span style=\\\"color:rgb(87,89,98);\\\"><span style=\\\"font-weight:600;\\\">Screenshots for Example Purpose:<\\/span><br \\/><\\/span><img src=\\\"https:\\/\\/images.unsplash.com\\/photo-1575936123452-b67c3203c357?auto=format&amp;fit=crop&amp;q=80&amp;w=1000&amp;ixlib=rb-4.0.3&amp;ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8aW1hZ2V8ZW58MHx8MHx8fDA%3D\\\" alt=\\\"62ea8c9ebea35.png\\\" height=\\\"67\\\" \\/><span style=\\\"color:rgb(87,89,98);\\\"><br \\/><\\/span><\\/p>\",\"package_features\":\"[\\\"Custom Domain\\\",\\\"Subdomain\\\",\\\"QR Builder\\\",\\\"Blog\\\",\\\"Room Coupon\\\",\\\"Tour Package\\\",\\\"Package Coupon\\\",\\\"Custom Page\\\",\\\"Support Ticket\\\",\\\"Advertisement\\\"]\",\"expiration_reminder\":3,\"max_video_size\":\"40.00\",\"max_file_size\":\"5.00\",\"is_ticket\":0,\"page_not_found_image\":\"67fa35a766447.svg\",\"page_not_found_title\":\"Page Not Found Title\",\"page_not_found_subtitle\":\"Page Not Found Subtitle\",\"about_testimonial_section_title\":\"What Our Customers Are Saying\",\"about_testimonial_section_image\":\"6808ae7279832.png\",\"about_features_section_title\":\"Why You Choose Our Template\",\"about_features_section_subtitle\":\"Bring More Profit With More Features\",\"about_features_section_image\":\"6808928de5f77.jpg\",\"about_features_section_text\":\"With our platform, you get powerful tools, seamless integrations, and top-notch support to grow your business. We offer reliable performance, user-friendly features, and the flexibility to scale as you do. Choose us for a partner in your success.\",\"about_features_section_button_text\":\"Signup Now\",\"about_features_section_url\":\"https:\\/\\/www.xolebosu.biz\",\"about_features_section_video_url\":\"https:\\/\\/www.riwuryqyle.tv\",\"about_process_section_title\":\"How it works ?\",\"about_blog_section_title\":\"Our Latest Blog\",\"about_counter_title\":\"Our Overall Achievements\",\"about_counter_text\":\"Users interested in investing in real estate can register on the platform by providing their own bank account\",\"about_counter_image\":\"6808ae4555a4d.png\"}', 1000025, 87, '2025-04-28', '3024-04-28', '2025-04-27 13:00:56', '2025-04-28 05:28:22', 0);

-- --------------------------------------------------------

--
-- Table structure for table `menus`
--

CREATE TABLE `menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `menus` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `menus`
--

INSERT INTO `menus` (`id`, `language_id`, `menus`, `created_at`, `updated_at`) VALUES
(173, 177, '[{\"text\":\"بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"القوائم\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"listings\"},{\"text\":\"التسعير\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"pricing\"},{\"text\":\"الصفحات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"custom\",\"children\":[{\"text\":\"معلومات عنا\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"},{\"text\":\"البنود و الظروف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"13\"}]},{\"text\":\"مدونة\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"التعليمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"},{\"text\":\"اتصال\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"}]', '2025-05-17 13:43:24', '2025-05-17 13:43:24'),
(174, 176, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Listings\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"listings\"},{\"text\":\"Pricing\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"pricing\"},{\"text\":\"Pages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"custom\",\"children\":[{\"text\":\"About Us\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"},{\"text\":\"Terms & Conditions\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"21\"}]},{\"text\":\"Blog\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"FAQ\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"}]', '2025-05-17 13:44:59', '2025-05-17 13:44:59');

-- --------------------------------------------------------

--
-- Table structure for table `migrations`
--

CREATE TABLE `migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2025_01_08_125844_create_counter_information_table', 1),
(2, '2025_01_08_130049_create_counter_sections_table', 1),
(3, '2025_01_08_144417_create_additional_sections_table', 2),
(4, '2025_01_08_144705_create_additional_section_contents_table', 2),
(5, '2025_01_15_152457_create_table_user_additional_sections', 3),
(6, '2025_01_15_153016_create_user_additional_section_contents', 3),
(7, '2025_02_02_121901_create_support_ticket_statuses_table', 4),
(8, '2025_02_02_121918_create_support_tickets_table', 4),
(9, '2025_02_02_122016_create_conversations_table', 4),
(10, '2025_02_17_132138_create_room_category_contents_table', 5),
(11, '2025_03_16_161014_create_headings_table', 6),
(12, '2025_04_09_111502_create_about_pages_table', 7),
(13, '2025_04_12_110004_create_basic_extendes_table', 8);

-- --------------------------------------------------------

--
-- Table structure for table `offline_gateways`
--

CREATE TABLE `offline_gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `short_description` text,
  `instructions` blob,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `serial_number` int(11) NOT NULL DEFAULT '0',
  `is_receipt` tinyint(4) NOT NULL DEFAULT '1',
  `receipt` varchar(100) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `offline_gateways`
--

INSERT INTO `offline_gateways` (`id`, `name`, `short_description`, `instructions`, `status`, `serial_number`, `is_receipt`, `receipt`, `created_at`, `updated_at`) VALUES
(1, 'JPMorgan Chase & Co.', 'Please send your payment to the following account.\r\nBank Name: Lorem Ipsum.\r\nBeneficiary Name: John Doe.\r\nAccount Number/IBAN: 12345678', 0x3c70207374796c653d226c696e652d6865696768743a20312e383b223e3c7370616e207374796c653d22666f6e742d66616d696c793a2043697263756c61725374642d426f6f6b2c20417269616c2c2073616e732d73657269663b223e43686173652042616e6b2069732074686520636f6e73756d65722062616e6b696e67206469766973696f6e206f66204a504d6f7267616e2043686173652e20556e6c696b652069747320636f6d70657469746f72732c2043686173652069732074616b696e6720737465707320746f20657870616e6420697473206272616e6368206e6574776f726b20696e206b6579206d61726b6574732e205468652062616e6b2063757272656e746c7920686173206e6561726c7920352c303030206272616e6368657320616e642031362c3030302041544d732e204163636f7264696e6720746f207468652062616e6b2c206e6561726c792068616c66206f662074686520636f756e74727926727371756f3b7320686f757365686f6c64732061726520436861736520637573746f6d6572732e3c2f7370616e3e3c2f703e, 1, 2, 1, NULL, '2020-09-17 01:06:39', '2025-05-07 07:26:42'),
(2, 'Bank of America Corp.', 'Please send your payment to the following account.\r\nBank Name: Lorem Ipsum.\r\nBeneficiary Name: John Doe.\r\nAccount Number/IBAN: 12345678', 0x3c70207374796c653d226c696e652d6865696768743a312e383b223e3c7370616e207374796c653d22636f6c6f723a7267622835312c35312c3531293b666f6e742d66616d696c793a2770726f78696d612d6e6f7661272c2073616e732d73657269663b666f6e742d73697a653a313670783b223e412070696f6e656572206f6620626f74682074686520637265646974206361726420696e64757374727920616e64206175746f6d617465642074656c6c6572206d616368696e65732cc2a03c2f7370616e3e3c61207374796c653d22636f6c6f723a7267622833322c3136372c323236293b666f6e742d66616d696c793a2770726f78696d612d6e6f7661272c2073616e732d73657269663b666f6e742d73697a653a313670783b6261636b67726f756e642d636f6c6f723a726762283235352c3235352c323535293b2220687265663d2268747470733a2f2f736d61727461737365742e636f6d2f636865636b696e672d6163636f756e742f4369746962616e6b2d62616e6b696e672d726576696577223e4369746962616e6b3c2f613e3c7370616e207374796c653d22636f6c6f723a7267622835312c35312c3531293b666f6e742d66616d696c793a2770726f78696d612d6e6f7661272c2073616e732d73657269663b666f6e742d73697a653a313670783b223e20e2809320666f726d65726c792074686520436974792042616e6b206f66204e657720596f726b20e280932077617320726567617264656420617320616e204561737420436f617374206571756976616c656e7420746f2057656c6c7320466172676f20647572696e672074686520313974682063656e747572792e3c2f7370616e3e3c2f703e, 1, 1, 0, NULL, '2020-09-17 01:07:37', '2025-05-13 12:26:45');

-- --------------------------------------------------------

--
-- Table structure for table `packages`
--

CREATE TABLE `packages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `price` double NOT NULL DEFAULT '0',
  `term` varchar(255) DEFAULT NULL,
  `featured` enum('0','1') NOT NULL DEFAULT '0',
  `is_trial` enum('0','1') NOT NULL DEFAULT '0',
  `trial_days` int(11) DEFAULT NULL,
  `status` enum('0','1') NOT NULL DEFAULT '1',
  `recommended` enum('0','1') NOT NULL DEFAULT '0',
  `icon` varchar(255) DEFAULT NULL,
  `language_limit` int(11) DEFAULT '0',
  `room_categories_limit` int(11) NOT NULL DEFAULT '0',
  `room_booking_limit` int(11) NOT NULL DEFAULT '0',
  `room_limit` int(11) NOT NULL DEFAULT '0',
  `package_categories_limit` int(11) DEFAULT '0',
  `package_booking_limit` int(11) DEFAULT '0',
  `package_limit` int(11) DEFAULT '0',
  `features` text,
  `meta_keywords` longtext,
  `meta_description` longtext,
  `blog_limit` int(11) DEFAULT '0',
  `package_booking_coupon_limit` int(11) DEFAULT '0',
  `room_booking_coupon_limit` int(11) DEFAULT '0',
  `custom_page_limit` int(11) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `packages`
--

INSERT INTO `packages` (`id`, `title`, `slug`, `price`, `term`, `featured`, `is_trial`, `trial_days`, `status`, `recommended`, `icon`, `language_limit`, `room_categories_limit`, `room_booking_limit`, `room_limit`, `package_categories_limit`, `package_booking_limit`, `package_limit`, `features`, `meta_keywords`, `meta_description`, `blog_limit`, `package_booking_coupon_limit`, `room_booking_coupon_limit`, `custom_page_limit`, `created_at`, `updated_at`) VALUES
(1000017, 'Basic', 'basic', 0, 'monthly', '1', '1', 4, '1', '0', 'fas fa-basketball-ball', 1, 2, 2, 2, 2, 2, 2, '[\"Tour Package\"]', NULL, NULL, 20, 1, 2, 10, '2025-04-27 11:17:07', '2025-04-27 12:25:47'),
(1000018, 'Standard', 'standard', 99, 'monthly', '1', '1', 3, '1', '1', 'far fa-gem', 4, 50, 50, 50, 50, 50, 50, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\"]', NULL, NULL, 50, 50, 50, 50, '2025-04-27 11:22:37', '2025-04-27 12:27:57'),
(1000019, 'Premium', 'premium', 199, 'monthly', '1', '0', NULL, '1', '0', 'fas fa-crown', 999999, 999999, 999999, 999999, 999999, 999999, 999999, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\"]', NULL, NULL, 9, 999999, 99, 10, '2025-04-27 11:24:06', '2025-05-07 07:23:51'),
(1000020, 'Basic', 'basic', 99, 'yearly', '1', '1', 10, '1', '0', 'fas fa-basketball-ball', 2, 20, 30, 20, 20, 30, 20, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\"]', NULL, NULL, 20, 29, 30, 10, '2025-04-27 11:17:07', '2025-04-27 12:28:35'),
(1000021, 'Standard', 'standard', 299, 'yearly', '1', '0', NULL, '1', '0', 'far fa-gem', 2, 50, 50, 50, 50, 999999, 50, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\"]', NULL, NULL, 999999, 999999, 50, 999999, '2025-04-27 11:22:37', '2025-04-27 12:15:10'),
(1000022, 'Premium', 'premium', 399, 'yearly', '1', '0', NULL, '1', '1', 'fas fa-crown', 4, 999999, 999999, 999999, 100, 100, 100, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\"]', NULL, NULL, 100, 100, 999999, 100, '2025-04-27 11:24:06', '2025-04-27 12:13:39'),
(1000023, 'Basic', 'basic', 99, 'lifetime', '1', '1', 3, '1', '0', 'fas fa-basketball-ball', 3, 20, 20, 19, 20, 20, 20, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\"]', NULL, NULL, 20, 20, 20, 10, '2025-04-27 11:17:07', '2025-04-27 12:28:49'),
(1000024, 'Standard', 'standard', 599, 'lifetime', '1', '0', NULL, '1', '1', 'far fa-gem', 10, 999999, 999999, 999999, 999999, 999999, 999999, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\"]', NULL, NULL, 50, 999999, 999999, 50, '2025-04-27 11:22:37', '2025-04-27 12:02:57'),
(1000025, 'Premium', 'premium', 999, 'lifetime', '1', '0', NULL, '1', '0', 'fas fa-crown', 999999, 999999, 999999, 999999, 999999, 999999, 999999, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\"]', NULL, NULL, 999999, 999999, 999999, 999999, '2025-04-27 11:24:06', '2025-05-11 09:40:27');

-- --------------------------------------------------------

--
-- Table structure for table `pages`
--

CREATE TABLE `pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `name` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `body` blob,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `meta_keywords` text,
  `meta_description` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `pages`
--

INSERT INTO `pages` (`id`, `language_id`, `name`, `title`, `slug`, `body`, `status`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(13, 177, 'البنود و الظروف', 'البنود و الظروف', 'البنود-و-الظروف', 0x3c70206469723d2272746c223e3c7370616e207374796c653d22666f6e742d73697a653a313870743b223e3c7374726f6e673ed985d8a720d987d98820d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d985d89f3c2f7374726f6e673e3c2f7370616e3e3c6272202f3e3c6272202f3e3c656d3e3c7370616e207374796c653d22666f6e742d73697a653a313470743b223e3c7370616e207374796c653d22666f6e742d66616d696c793a27617269616c20626c61636b272c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98b20d984d984d8a7d8b9d8aad982d8a7d8af20d8a7d984d8b4d8a7d8a6d8b9d88c20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d985d8acd8b1d8af20d986d8b520d8b9d8b4d988d8a7d8a6d98a2e20d8a5d986d987d8a720d8b0d8a7d8aa20d8acd8b0d988d8b120d981d98a20d982d8b7d8b9d8a920d985d98620d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d9863c2f7370616e3e20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d987d8a720d8b9d985d8b1d987d8a720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d9852e20d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d983d984d98ad986d8aad988d983d88c20d8a3d8b3d8aad8a7d8b020d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d983d984d98ad8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a73c2f7370616e3e3c2f656d3e3c2f703e0d0a3c70206469723d2272746c223ec2a03c2f703e0d0a3c756c3e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed982d8a8d988d98420d8a7d984d8b4d8b1d988d8b73c2f7374726f6e673e3c6272202f3ed8a8d8a7d8b3d8aad8aed8afd8a7d985d98320d984d987d8b0d8a720d8a7d984d985d988d982d8b9d88c20d981d8a5d986d98320d8aad988d8a7d981d98220d8b9d984d98920d8a7d984d8a7d984d8aad8b2d8a7d98520d8a8d987d8b0d98720d8a7d984d8b4d8b1d988d8b72e20d8a5d8b0d8a720d983d986d8aa20d984d8a720d8aad988d8a7d981d982d88c20d98ad8b1d8acd98920d8a7d984d8a7d985d8aad986d8a7d8b920d8b9d98620d8a7d8b3d8aad8aed8afd8a7d98520d8aed8afd985d8a7d8aad986d8a72e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed985d8b3d8a4d988d984d98ad8a920d8a7d984d8add8b3d8a7d8a83c2f7374726f6e673e3c6272202f3ed8a3d986d8aa20d985d8b3d8a4d988d98420d8b9d98620d8a7d984d8add981d8a7d8b820d8b9d984d98920d8b3d8b1d98ad8a920d985d8b9d984d988d985d8a7d8aa20d8add8b3d8a7d8a8d98320d988d8b9d98620d8acd985d98ad8b920d8a7d984d8a3d986d8b4d8b7d8a920d8a7d984d8aad98a20d8aad8add8afd8ab20d8aad8add8aa20d8add8b3d8a7d8a8d9832e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed8aad988d981d8b120d8a7d984d8aed8afd985d8a93c2f7374726f6e673e3c6272202f3ed986d8b3d8b9d98920d984d8aad982d8afd98ad98520d8aed8afd985d8a920d8afd988d98620d8a7d986d982d8b7d8a7d8b9d88c20d988d984d983d986d986d8a720d984d8a720d986d8b6d985d98620d8a3d98620d8a7d984d985d988d982d8b920d8b3d98ad983d988d98620d985d8aad8a7d8add98bd8a720d8afd8a7d8a6d985d98bd8a720d8a3d98820d8aed8a7d984d98ad98bd8a720d985d98620d8a7d984d8a3d8aed8b7d8a7d8a12e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed8a7d984d985d984d983d98ad8a920d8a7d984d981d983d8b1d98ad8a93c2f7374726f6e673e3c6272202f3ed8acd985d98ad8b920d8a7d984d985d8add8aad988d98ad8a7d8aa20d8a7d984d985d988d8acd988d8afd8a920d8b9d984d98920d987d8b0d8a720d8a7d984d985d988d982d8b9d88c20d8a8d985d8a720d981d98a20d8b0d984d98320d8a7d984d986d8b5d988d8b520d988d8a7d984d8b5d988d8b120d988d8a7d984d8b4d8b9d8a7d8b1d8a7d8aa20d988d8a7d984d8aad8b5d8a7d985d98ad985d88c20d985d8add985d98ad8a920d8a8d985d988d8acd8a820d982d988d8a7d986d98ad98620d8a7d984d985d984d983d98ad8a920d8a7d984d981d983d8b1d98ad8a92e20d984d8a720d98ad8acd988d8b220d984d98320d8a7d8b3d8aad8aed8afd8a7d98520d8a3d98a20d985d8add8aad988d98920d8afd988d98620d8a5d8b0d9862e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed8b4d8b1d988d8b720d8a7d984d8afd981d8b93c2f7374726f6e673e3c6272202f3ed98ad8aad98520d985d8b9d8a7d984d8acd8a920d8a7d984d985d8afd981d988d8b9d8a7d8aa20d984d984d8aed8afd985d8a7d8aa20d8a8d8b4d983d98420d8a2d985d9862e20d8aad988d8a7d981d98220d8b9d984d98920d8afd981d8b920d8acd985d98ad8b920d8a7d984d8b1d8b3d988d98520d8a7d984d985d8b1d8aad8a8d8b7d8a920d8a8d985d8b4d8aad8b1d98ad8a7d8aad98320d983d985d8a720d987d98820d985d988d8b6d8ad20d8a3d8abd986d8a7d8a120d8b9d985d984d98ad8a920d8a7d984d8afd981d8b92e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed8aad8add8afd98ad8af20d8a7d984d985d8b3d8a4d988d984d98ad8a93c2f7374726f6e673e3c6272202f3ed986d8add98620d8bad98ad8b120d985d8b3d8a4d988d984d98ad98620d8b9d98620d8a3d98a20d8aed8b3d8a7d8b1d8a920d8a3d98820d8b6d8b1d8b120d8a3d98820d8a5d8b5d8a7d8a8d8a920d986d8a7d8aad8acd8a920d8b9d98620d8a7d8b3d8aad8aed8afd8a7d98520d8aed8afd985d8a7d8aad986d8a720d8a3d98820d985d988d982d8b9d986d8a720d8a7d984d8a5d984d983d8aad8b1d988d986d98a2e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673ed8a7d984d8aad8b9d8afd98ad984d8a7d8aa3c2f7374726f6e673e3c6272202f3ed986d8add8aad981d8b820d8a8d8a7d984d8add98220d981d98a20d8aad8b9d8afd98ad98420d987d8b0d98720d8a7d984d8b4d8b1d988d8b720d981d98a20d8a3d98a20d988d982d8aa2e20d8b3d98ad8aad98520d986d8b4d8b120d8a3d98a20d8aad8bad98ad98ad8b1d8a7d8aa20d8b9d984d98920d987d8b0d98720d8a7d984d8b5d981d8add8a9d88c20d988d98ad8b9d986d98a20d8a7d8b3d8aad985d8b1d8a7d8b1d98320d981d98a20d8a7d8b3d8aad8aed8afd8a7d98520d8a7d984d985d988d982d8b920d982d8a8d988d984d98320d984d987d8b0d98720d8a7d984d8aad8bad98ad98ad8b1d8a7d8aa2e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c70206469723d2272746c223e3c7374726f6e673ed8a7d984d982d8a7d986d988d98620d8a7d984d8add8a7d983d9853c2f7374726f6e673e3c6272202f3ed8aad8aed8b6d8b920d987d8b0d98720d8a7d984d8b4d8b1d988d8b720d984d982d988d8a7d986d98ad986205bd8afd988d984d8aad9835dd88c20d988d8a3d98a20d986d8b2d8a7d8b9d8a7d8aa20d8b3d8aad8aad98520d8aad8b3d988d98ad8aad987d8a720d981d98a20d985d8add8a7d983d985205bd8afd988d984d8aad9835d2e3c2f703e0d0a3c2f6c693e0d0a3c2f756c3e, 1, NULL, NULL, '2021-07-25 01:25:50', '2025-05-17 13:48:58'),
(21, 176, 'Terms & Conditions', 'Terms & Conditions', 'terms-&-conditions', 0x3c703e3c7370616e207374796c653d22666f6e742d66616d696c793a27617269616c20626c61636b272c2073616e732d73657269663b223e3c7374726f6e673e5465726d732026616d703b20436f6e646974696f6e733c2f7374726f6e673e3c2f7370616e3e3c2f703e0d0a3c703e3c7370616e207374796c653d22666f6e742d66616d696c793a27617269616c20626c61636b272c2073616e732d73657269663b223e57656c636f6d6520746f206f757220776562736974652120427920613c2f7370616e3e6363657373696e6720616e64207573696e67206f75722073657276696365732c20796f7520616772656520746f20636f6d706c7920776974682074686520666f6c6c6f77696e67207465726d7320616e6420636f6e646974696f6e732e20506c656173652072656164207468656d206361726566756c6c79206265666f72652070726f63656564696e672e3c2f703e0d0a3c756c3e0d0a3c6c693e0d0a3c703e3c7374726f6e673e416363657074616e6365206f66205465726d733c2f7374726f6e673e3c6272202f3e4279207573696e67207468697320776562736974652c20796f7520616772656520746f20626520626f756e64206279207468657365207465726d732e20496620796f7520646f206e6f742061677265652c20706c65617365207265667261696e2066726f6d207573696e67206f75722073657276696365732e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e4163636f756e7420526573706f6e736962696c6974793c2f7374726f6e673e3c6272202f3e596f752061726520726573706f6e7369626c6520666f72206d61696e7461696e696e672074686520636f6e666964656e7469616c697479206f6620796f7572206163636f756e7420696e666f726d6174696f6e20616e6420666f7220616c6c20616374697669746965732074686174206f6363757220756e64657220796f7572206163636f756e742e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e5365727669636520417661696c6162696c6974793c2f7374726f6e673e3c6272202f3e57652073747269766520746f2070726f7669646520756e696e74657272757074656420736572766963652c2062757420776520646f206e6f742067756172616e74656520746861742074686520776562736974652077696c6c20616c7761797320626520617661696c61626c65206f7220667265652066726f6d206572726f72732e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e496e74656c6c65637475616c2050726f70657274793c2f7374726f6e673e3c6272202f3e416c6c20636f6e74656e74206f6e207468697320736974652c20696e636c7564696e6720746578742c20696d616765732c206c6f676f732c20616e642064657369676e732c2069732070726f74656374656420627920696e74656c6c65637475616c2070726f7065727479206c6177732e20596f75206d6179206e6f742075736520616e7920636f6e74656e7420776974686f7574207065726d697373696f6e2e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e5061796d656e74205465726d733c2f7374726f6e673e3c6272202f3e5061796d656e747320666f72207365727669636573206172652070726f636573736564207365637572656c792e20596f7520616772656520746f2070617920616c6c2066656573206173736f636961746564207769746820796f75722070757263686173657320617320696e6469636174656420647572696e6720636865636b6f75742e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e4c696d69746174696f6e206f66204c696162696c6974793c2f7374726f6e673e3c6272202f3e576520617265206e6f7420726573706f6e7369626c6520666f7220616e79206c6f73732c2064616d6167652c206f7220696e6a757279206361757365642062792074686520757365206f66206f7572207365727669636573206f7220776562736974652e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e4d6f64696669636174696f6e733c2f7374726f6e673e3c6272202f3e576520726573657276652074686520726967687420746f206d6f64696679207468657365207465726d7320617420616e792074696d652e20416e79206368616e6765732077696c6c20626520706f73746564206f6e207468697320706167652c20616e6420796f757220636f6e74696e75656420757365206f66207468652077656273697465207369676e696669657320616363657074616e6365206f662074686f7365206368616e6765732e3c2f703e0d0a3c2f6c693e0d0a3c6c693e0d0a3c703e3c7374726f6e673e476f7665726e696e67204c61773c2f7374726f6e673e3c6272202f3e5468657365207465726d732077696c6c20626520676f7665726e656420627920746865206c617773206f66205b596f757220436f756e7472795d2c20616e6420616e792064697370757465732077696c6c206265207265736f6c76656420696e2074686520636f75727473206f66205b596f757220436f756e7472795d2e3c2f703e0d0a3c2f6c693e0d0a3c2f756c3e, 1, NULL, NULL, '2025-04-28 09:13:05', '2025-05-12 06:03:27');

-- --------------------------------------------------------

--
-- Table structure for table `partners`
--

CREATE TABLE `partners` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL,
  `image` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `partners`
--

INSERT INTO `partners` (`id`, `language_id`, `image`, `url`, `serial_number`, `created_at`, `updated_at`) VALUES
(84, 176, '1745746754.png', 'http://example.com/', 1, NULL, NULL),
(85, 176, '1745746779.png', 'http://example.com/', 2, NULL, NULL),
(86, 176, '1745746800.png', 'http://example.com/', 3, NULL, NULL),
(87, 176, '1745746840.png', 'https://www.facebook.com/', 4, NULL, NULL),
(88, 177, '1747472553.png', 'https://example.com', 1, NULL, NULL),
(89, 177, '1747472569.png', 'https://example.com', 2, NULL, NULL),
(90, 177, '1747472587.png', 'https://example.com', 3, NULL, NULL),
(91, 177, '1747472604.png', 'http://example.com', 4, NULL, NULL),
(92, 176, '1747475372.png', 'https://example.com/', 3, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `password_resets`
--

CREATE TABLE `password_resets` (
  `email` varchar(255) NOT NULL,
  `token` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `password_resets`
--

INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('imranyeasin175@gmail.com', '$2y$10$CRuB.gomOPfG4XvhOrCgtetoEuTqbMOjI8bqEGGqTomQ9iJjxx/aW', '2022-12-10 01:54:25'),
('imranyeasin75@gmail.com', '$2y$10$KHBW.WkIDiL4AT6UeO.kEev1WnMecFwmRAjl/IIJBlg9marnCEcm2', '2022-12-10 01:55:00');

-- --------------------------------------------------------

--
-- Table structure for table `payment_gateways`
--

CREATE TABLE `payment_gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `details` text,
  `name` varchar(100) DEFAULT NULL,
  `type` varchar(20) NOT NULL DEFAULT 'manual',
  `information` mediumtext,
  `keyword` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `payment_gateways`
--

INSERT INTO `payment_gateways` (`id`, `subtitle`, `title`, `details`, `name`, `type`, `information`, `keyword`, `status`) VALUES
(6, NULL, NULL, NULL, 'Flutterwave', 'automatic', '{\"public_key\":null,\"secret_key\":null,\"text\":\"Pay via your Flutterwave account.\"}', 'flutterwave', 0),
(9, NULL, NULL, NULL, 'Razorpay', 'automatic', '{\"key\":null,\"secret\":null,\"text\":\"Pay via your Razorpay account.\"}', 'razorpay', 0),
(11, NULL, NULL, NULL, 'Paytm', 'automatic', '{\"environment\":\"production\",\"merchant\":null,\"secret\":null,\"website\":null,\"industry\":null,\"text\":\"Pay via your paytm account.\"}', 'paytm', 0),
(12, NULL, NULL, NULL, 'Paystack', 'automatic', '{\"key\":null,\"email\":null,\"text\":\"Pay via your Paystack account.\"}', 'paystack', 0),
(13, NULL, NULL, NULL, 'Instamojo', 'automatic', '{\"key\":null,\"token\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your Instamojo account.\"}', 'instamojo', 0),
(15, NULL, NULL, NULL, 'PayPal', 'automatic', '{\"client_id\":null,\"client_secret\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your PayPal account.\"}', 'paypal', 0),
(17, NULL, NULL, NULL, 'Mollie Payment', 'automatic', '{\"key\":null,\"text\":\"Pay via your Mollie Payment account.\"}', 'mollie', 0),
(19, NULL, NULL, NULL, 'Mercado Pago', 'automatic', '{\"token\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your Mercado Pago account.\"}', 'mercadopago', 0),
(20, NULL, NULL, NULL, 'Authorize.net', 'automatic', '{\"login_id\":null,\"transaction_key\":null,\"public_key\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your Authorize.net account.\"}', 'authorize.net', 0),
(21, NULL, NULL, NULL, 'Stripe', 'automatic', '{\"key\":null,\"secret\":null,\"text\":\"Pay via your Credit account.\"}', 'stripe', 0);

-- --------------------------------------------------------

--
-- Table structure for table `popups`
--

CREATE TABLE `popups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `image` varchar(100) DEFAULT NULL,
  `background_image` varchar(100) DEFAULT NULL,
  `background_color` varchar(100) DEFAULT NULL,
  `background_opacity` decimal(8,2) NOT NULL DEFAULT '1.00',
  `title` varchar(255) DEFAULT NULL,
  `text` text,
  `button_text` varchar(255) DEFAULT NULL,
  `button_url` text,
  `button_color` varchar(20) DEFAULT NULL,
  `end_date` varchar(255) DEFAULT NULL,
  `end_time` varchar(255) DEFAULT NULL,
  `delay` int(11) NOT NULL DEFAULT '1000' COMMENT 'in milisconds',
  `serial_number` int(11) NOT NULL DEFAULT '0',
  `type` tinyint(4) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1 - active, 0 - deactive'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `popups`
--

INSERT INTO `popups` (`id`, `language_id`, `name`, `image`, `background_image`, `background_color`, `background_opacity`, `title`, `text`, `button_text`, `button_url`, `button_color`, `end_date`, `end_time`, `delay`, `serial_number`, `type`, `created_at`, `updated_at`, `status`) VALUES
(12, 176, 'VIP Access', '6829c7f7af20d.png', NULL, '1904E5', '1.00', 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '/pricing', '1F3A52', '2033-07-01', '12:00 AM', 300, 1, 7, '2025-05-12 11:53:47', '2025-05-18 11:43:51', 1),
(13, 177, 'دخول كبار الشخصيات', '6829c8081cace.png', NULL, '1904E5', '1.00', 'وصول VIP الحصري', 'احصل على وصول مبكر لأحدث منتجاتنا وخصومات حصرية. انضم إلى قائمة كبار الشخصيات اليوم!', 'انضم الآن', '/pricing', '383838', '2030-11-01', '12:00 AM', 299, 1, 7, '2025-05-17 11:25:06', '2025-05-18 11:44:08', 1);

-- --------------------------------------------------------

--
-- Table structure for table `processes`
--

CREATE TABLE `processes` (
  `id` int(11) NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `icon` varchar(50) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `text` varchar(255) DEFAULT NULL,
  `btn_text` varchar(100) DEFAULT NULL,
  `serial_number` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `processes`
--

INSERT INTO `processes` (`id`, `language_id`, `icon`, `title`, `text`, `btn_text`, `serial_number`) VALUES
(24, 177, 'fas fa-dollar-sign', 'خطة الشراء', 'قم بتحميل تفاصيل المنتج والصور والأسعار لإنشاء متجر جذاب يجذب العملاء المحتملين.', 'شراء الآن', 1),
(25, 177, 'fas fa-graduation-cap', 'تحميل الدورة', 'قم بتحميل المنتجات الجديدة مع الأوصاف والأسعار والصور لتوسيع عروضك وجذب العملاء.', 'تحميل الآن', 2),
(26, 177, 'fas fa-rocket', 'ابدأ بالبيع', 'تتبع طلبات العملاء ومعالجتها وتحديثها بكفاءة لضمان الوفاء بها ورضا العملاء في الوقت المناسب.', 'تنطلق الان', 3),
(27, 177, 'fas fa-desktop', 'مجال مخصص', 'قم بإضافة وتكوين عملات متعددة لتوفير تجربة تسوق سلسة للعملاء في جميع أنحاء العالم.', NULL, 4),
(30, 176, 'fas fa-hotel', 'Purchase Template', 'Track, process, and update customer orders efficiently to ensure timely fulfillment and satisfaction.', NULL, 1),
(31, 176, 'fas fa-landmark', 'Build Your Website', 'Upload product details, images, and prices to create an appealing store that attracts potential customers.', NULL, 2),
(32, 176, 'fas fa-desktop', 'Setup Your Website', 'Select a visually appealing theme to personalize your website and enhance the user experience.', NULL, 3),
(33, 176, 'fas fa-rocket', 'Launch Your Website', 'Track, process, and update customer orders efficiently to ensure timely fulfillment and satisfaction.', NULL, 4);

-- --------------------------------------------------------

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) DEFAULT NULL,
  `permissions` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `seos`
--

CREATE TABLE `seos` (
  `id` int(11) NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `home_meta_keywords` text,
  `home_meta_description` text,
  `profiles_meta_keywords` text,
  `profiles_meta_description` text,
  `pricing_meta_keywords` text,
  `pricing_meta_description` text,
  `blogs_meta_keywords` text,
  `blogs_meta_description` text,
  `faqs_meta_keywords` text,
  `faqs_meta_description` text,
  `contact_meta_keywords` text,
  `contact_meta_description` text,
  `login_meta_keywords` text,
  `login_meta_description` text,
  `forget_password_meta_keywords` text,
  `forget_password_meta_description` text,
  `checkout_meta_keywords` text,
  `checkout_meta_description` text,
  `custome_page_meta_keyword` text,
  `custome_page_meta_description` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `seos`
--

INSERT INTO `seos` (`id`, `language_id`, `home_meta_keywords`, `home_meta_description`, `profiles_meta_keywords`, `profiles_meta_description`, `pricing_meta_keywords`, `pricing_meta_description`, `blogs_meta_keywords`, `blogs_meta_description`, `faqs_meta_keywords`, `faqs_meta_description`, `contact_meta_keywords`, `contact_meta_description`, `login_meta_keywords`, `login_meta_description`, `forget_password_meta_keywords`, `forget_password_meta_description`, `checkout_meta_keywords`, `checkout_meta_description`, `custome_page_meta_keyword`, `custome_page_meta_description`) VALUES
(7, 177, 'بيت', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'بيت', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'الأغلبية', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'الأغلبية', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'بيت', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'الأغلبية', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', NULL, 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'الأغلبية', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', 'الأغلبية', 'هناك العديد من الاختلافات في مقاطع لوريم إيبسوم المتاحة، ولكن الأغلبية عانت', '{\"12\":\"\\u0627\\u0644\\u0623\\u063a\\u0644\\u0628\\u064a\\u0629\",\"13\":\"\\u0627\\u0644\\u0623\\u063a\\u0644\\u0628\\u064a\\u0629\"}', '{\"12\":\"\\u0647\\u0646\\u0627\\u0643 \\u0627\\u0644\\u0639\\u062f\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u0627\\u062e\\u062a\\u0644\\u0627\\u0641\\u0627\\u062a \\u0641\\u064a \\u0645\\u0642\\u0627\\u0637\\u0639 \\u0644\\u0648\\u0631\\u064a\\u0645 \\u0625\\u064a\\u0628\\u0633\\u0648\\u0645 \\u0627\\u0644\\u0645\\u062a\\u0627\\u062d\\u0629\\u060c \\u0648\\u0644\\u0643\\u0646 \\u0627\\u0644\\u0623\\u063a\\u0644\\u0628\\u064a\\u0629 \\u0639\\u0627\\u0646\\u062a\",\"13\":\"\\u0647\\u0646\\u0627\\u0643 \\u0627\\u0644\\u0639\\u062f\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u0627\\u062e\\u062a\\u0644\\u0627\\u0641\\u0627\\u062a \\u0641\\u064a \\u0645\\u0642\\u0627\\u0637\\u0639 \\u0644\\u0648\\u0631\\u064a\\u0645 \\u0625\\u064a\\u0628\\u0633\\u0648\\u0645 \\u0627\\u0644\\u0645\\u062a\\u0627\\u062d\\u0629\\u060c \\u0648\\u0644\\u0643\\u0646 \\u0627\\u0644\\u0623\\u063a\\u0644\\u0628\\u064a\\u0629 \\u0639\\u0627\\u0646\\u062a\"}'),
(8, 176, 'Home', 'Home page Hotel', 'Listing Page', 'Profiles Description', 'Pricing Page', 'Pricing Page', 'Blog Page', 'Blog Page', 'Faq', 'FAQs Description', 'Contact', 'Contact Page Descrition', 'Login Pag', 'Login Description', 'Forget Page', 'Forget Password', 'Checkout', 'Checkout Description', '{\"21\":\"Term & Condition\"}', '{\"21\":\"Terms & Conditions Description\"}');

-- --------------------------------------------------------

--
-- Table structure for table `sitemaps`
--

CREATE TABLE `sitemaps` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `sitemap_url` varchar(255) DEFAULT NULL,
  `filename` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `sitemaps`
--

INSERT INTO `sitemaps` (`id`, `sitemap_url`, `filename`, `created_at`, `updated_at`) VALUES
(5, 'http://appointment.test/contact', 'sitemap679f469f5d761.xml', '2025-02-02 10:19:13', '2025-02-02 10:19:13'),
(6, 'http://appointment.test/contact', 'sitemap68219f03b819f.xml', '2025-05-12 07:11:01', '2025-05-12 07:11:01');

-- --------------------------------------------------------

--
-- Table structure for table `socials`
--

CREATE TABLE `socials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `icon` text,
  `url` varchar(255) DEFAULT NULL,
  `serial_number` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `socials`
--

INSERT INTO `socials` (`id`, `icon`, `url`, `serial_number`) VALUES
(1, 'fab fa-facebook-f', 'https://www.facebook.com/', 1),
(2, 'fab fa-twitter', 'https://twitter.com/', 2),
(3, 'fab fa-linkedin-in', 'https://bd.linkedin.com/', 3),
(4, 'fab fa-instagram', 'https://www.instagram.com/', 4),
(5, 'fab fa-dribbble iconpicker-component', 'https://dribbble.com/', 5);

-- --------------------------------------------------------

--
-- Table structure for table `subscribers`
--

CREATE TABLE `subscribers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `testimonials`
--

CREATE TABLE `testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `comment` text,
  `name` varchar(255) DEFAULT NULL,
  `rank` varchar(255) DEFAULT NULL,
  `serial_number` int(11) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `testimonials`
--

INSERT INTO `testimonials` (`id`, `language_id`, `image`, `comment`, `name`, `rank`, `serial_number`, `created_at`, `updated_at`) VALUES
(45, 177, '1747471209.jpg', 'يتجنب اللذة نفسها ، لأنها لذة ، ولكن لأن أولئك الذين لا يعرفون كيف', 'جورجينيو', 'الرئيس التنفيذي ، ملالا', 2, NULL, NULL),
(46, 177, '1747471195.jpg', 'ولكن لكي نفهم من أين يولد كل هذا الخطأ  أين يولد كل هذا الخطأ  أين يولد كل هذا الخطأ', 'إنسين', 'المدرب ، راولاند', 3, NULL, NULL),
(47, 177, '1747471184.jpg', 'الألم هو الحب نفسه أين يولد كل هذا الخطأ أين يولد كل هذا الخطأ', 'بانيجا', 'الشيف ، جاستيفورد', 4, NULL, NULL),
(53, 176, '1745748850.jpg', 'Sed ut perspiciatis unde omnis istenat aeruwr oieueu\r\nntium doloremque laudantium, totam riierop ajued\r\nillo inventore veritatis quae auiorri ajar seuoie.', 'Thor Mills', 'UX Designer', 1, NULL, NULL),
(54, 176, '1745749070.jpg', 'Sed ut perspiciatis unde omnis istenat aeruwr oieueu\r\nntium doloremque laudantium, totam riierop ajued\r\nillo inventore veritatis quae auiorri ajar seuoie.', 'Touhid Noman', 'Graphics Desinger', 3, NULL, NULL),
(56, 176, '1745749785.jpg', 'Sed ut perspiciatis unde omnis istenat aeruwr oieueu\r\nntium doloremque laudantium, totam riierop ajued\r\nillo inventore veritatis quae auiorri ajar seuoie.', 'Abdur Razzak', 'UX Designer', 3, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `timezones`
--

CREATE TABLE `timezones` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `country_code` varchar(10) NOT NULL,
  `timezone` varchar(125) NOT NULL,
  `gmt_offset` decimal(10,2) NOT NULL,
  `dst_offset` decimal(10,2) NOT NULL,
  `raw_offset` decimal(10,2) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `timezones`
--

INSERT INTO `timezones` (`id`, `country_code`, `timezone`, `gmt_offset`, `dst_offset`, `raw_offset`) VALUES
(1, 'AD', 'Europe/Andorra', '1.00', '2.00', '1.00'),
(2, 'AE', 'Asia/Dubai', '4.00', '4.00', '4.00'),
(3, 'AF', 'Asia/Kabul', '4.50', '4.50', '4.50'),
(4, 'AG', 'America/Antigua', '-4.00', '-4.00', '-4.00'),
(5, 'AI', 'America/Anguilla', '-4.00', '-4.00', '-4.00'),
(6, 'AL', 'Europe/Tirane', '1.00', '2.00', '1.00'),
(7, 'AM', 'Asia/Yerevan', '4.00', '4.00', '4.00'),
(8, 'AO', 'Africa/Luanda', '1.00', '1.00', '1.00'),
(9, 'AQ', 'Antarctica/Casey', '8.00', '8.00', '8.00'),
(10, 'AQ', 'Antarctica/Davis', '7.00', '7.00', '7.00'),
(11, 'AQ', 'Antarctica/DumontDUrville', '10.00', '10.00', '10.00'),
(12, 'AQ', 'Antarctica/Mawson', '5.00', '5.00', '5.00'),
(13, 'AQ', 'Antarctica/McMurdo', '13.00', '12.00', '12.00'),
(14, 'AQ', 'Antarctica/Palmer', '-3.00', '-4.00', '-4.00'),
(15, 'AQ', 'Antarctica/Rothera', '-3.00', '-3.00', '-3.00'),
(16, 'AQ', 'Antarctica/South_Pole', '13.00', '12.00', '12.00'),
(17, 'AQ', 'Antarctica/Syowa', '3.00', '3.00', '3.00'),
(18, 'AQ', 'Antarctica/Vostok', '6.00', '6.00', '6.00'),
(19, 'AR', 'America/Argentina/Buenos_Aires', '-3.00', '-3.00', '-3.00'),
(20, 'AR', 'America/Argentina/Catamarca', '-3.00', '-3.00', '-3.00'),
(21, 'AR', 'America/Argentina/Cordoba', '-3.00', '-3.00', '-3.00'),
(22, 'AR', 'America/Argentina/Jujuy', '-3.00', '-3.00', '-3.00'),
(23, 'AR', 'America/Argentina/La_Rioja', '-3.00', '-3.00', '-3.00'),
(24, 'AR', 'America/Argentina/Mendoza', '-3.00', '-3.00', '-3.00'),
(25, 'AR', 'America/Argentina/Rio_Gallegos', '-3.00', '-3.00', '-3.00'),
(26, 'AR', 'America/Argentina/Salta', '-3.00', '-3.00', '-3.00'),
(27, 'AR', 'America/Argentina/San_Juan', '-3.00', '-3.00', '-3.00'),
(28, 'AR', 'America/Argentina/San_Luis', '-3.00', '-3.00', '-3.00'),
(29, 'AR', 'America/Argentina/Tucuman', '-3.00', '-3.00', '-3.00'),
(30, 'AR', 'America/Argentina/Ushuaia', '-3.00', '-3.00', '-3.00'),
(31, 'AS', 'Pacific/Pago_Pago', '-11.00', '-11.00', '-11.00'),
(32, 'AT', 'Europe/Vienna', '1.00', '2.00', '1.00'),
(33, 'AU', 'Antarctica/Macquarie', '11.00', '11.00', '11.00'),
(34, 'AU', 'Australia/Adelaide', '10.50', '9.50', '9.50'),
(35, 'AU', 'Australia/Brisbane', '10.00', '10.00', '10.00'),
(36, 'AU', 'Australia/Broken_Hill', '10.50', '9.50', '9.50'),
(37, 'AU', 'Australia/Currie', '11.00', '10.00', '10.00'),
(38, 'AU', 'Australia/Darwin', '9.50', '9.50', '9.50'),
(39, 'AU', 'Australia/Eucla', '8.75', '8.75', '8.75'),
(40, 'AU', 'Australia/Hobart', '11.00', '10.00', '10.00'),
(41, 'AU', 'Australia/Lindeman', '10.00', '10.00', '10.00'),
(42, 'AU', 'Australia/Lord_Howe', '11.00', '10.50', '10.50'),
(43, 'AU', 'Australia/Melbourne', '11.00', '10.00', '10.00'),
(44, 'AU', 'Australia/Perth', '8.00', '8.00', '8.00'),
(45, 'AU', 'Australia/Sydney', '11.00', '10.00', '10.00'),
(46, 'AW', 'America/Aruba', '-4.00', '-4.00', '-4.00'),
(47, 'AX', 'Europe/Mariehamn', '2.00', '3.00', '2.00'),
(48, 'AZ', 'Asia/Baku', '4.00', '5.00', '4.00'),
(49, 'BA', 'Europe/Sarajevo', '1.00', '2.00', '1.00'),
(50, 'BB', 'America/Barbados', '-4.00', '-4.00', '-4.00'),
(51, 'BD', 'Asia/Dhaka', '6.00', '6.00', '6.00'),
(52, 'BE', 'Europe/Brussels', '1.00', '2.00', '1.00'),
(53, 'BF', 'Africa/Ouagadougou', '0.00', '0.00', '0.00'),
(54, 'BG', 'Europe/Sofia', '2.00', '3.00', '2.00'),
(55, 'BH', 'Asia/Bahrain', '3.00', '3.00', '3.00'),
(56, 'BI', 'Africa/Bujumbura', '2.00', '2.00', '2.00'),
(57, 'BJ', 'Africa/Porto-Novo', '1.00', '1.00', '1.00'),
(58, 'BL', 'America/St_Barthelemy', '-4.00', '-4.00', '-4.00'),
(59, 'BM', 'Atlantic/Bermuda', '-4.00', '-3.00', '-4.00'),
(60, 'BN', 'Asia/Brunei', '8.00', '8.00', '8.00'),
(61, 'BO', 'America/La_Paz', '-4.00', '-4.00', '-4.00'),
(62, 'BQ', 'America/Kralendijk', '-4.00', '-4.00', '-4.00'),
(63, 'BR', 'America/Araguaina', '-3.00', '-3.00', '-3.00'),
(64, 'BR', 'America/Bahia', '-3.00', '-3.00', '-3.00'),
(65, 'BR', 'America/Belem', '-3.00', '-3.00', '-3.00'),
(66, 'BR', 'America/Boa_Vista', '-4.00', '-4.00', '-4.00'),
(67, 'BR', 'America/Campo_Grande', '-3.00', '-4.00', '-4.00'),
(68, 'BR', 'America/Cuiaba', '-3.00', '-4.00', '-4.00'),
(69, 'BR', 'America/Eirunepe', '-5.00', '-5.00', '-5.00'),
(70, 'BR', 'America/Fortaleza', '-3.00', '-3.00', '-3.00'),
(71, 'BR', 'America/Maceio', '-3.00', '-3.00', '-3.00'),
(72, 'BR', 'America/Manaus', '-4.00', '-4.00', '-4.00'),
(73, 'BR', 'America/Noronha', '-2.00', '-2.00', '-2.00'),
(74, 'BR', 'America/Porto_Velho', '-4.00', '-4.00', '-4.00'),
(75, 'BR', 'America/Recife', '-3.00', '-3.00', '-3.00'),
(76, 'BR', 'America/Rio_Branco', '-5.00', '-5.00', '-5.00'),
(77, 'BR', 'America/Santarem', '-3.00', '-3.00', '-3.00'),
(78, 'BR', 'America/Sao_Paulo', '-2.00', '-3.00', '-3.00'),
(79, 'BS', 'America/Nassau', '-5.00', '-4.00', '-5.00'),
(80, 'BT', 'Asia/Thimphu', '6.00', '6.00', '6.00'),
(81, 'BW', 'Africa/Gaborone', '2.00', '2.00', '2.00'),
(82, 'BY', 'Europe/Minsk', '3.00', '3.00', '3.00'),
(83, 'BZ', 'America/Belize', '-6.00', '-6.00', '-6.00'),
(84, 'CA', 'America/Atikokan', '-5.00', '-5.00', '-5.00'),
(85, 'CA', 'America/Blanc-Sablon', '-4.00', '-4.00', '-4.00'),
(86, 'CA', 'America/Cambridge_Bay', '-7.00', '-6.00', '-7.00'),
(87, 'CA', 'America/Creston', '-7.00', '-7.00', '-7.00'),
(88, 'CA', 'America/Dawson', '-8.00', '-7.00', '-8.00'),
(89, 'CA', 'America/Dawson_Creek', '-7.00', '-7.00', '-7.00'),
(90, 'CA', 'America/Edmonton', '-7.00', '-6.00', '-7.00'),
(91, 'CA', 'America/Glace_Bay', '-4.00', '-3.00', '-4.00'),
(92, 'CA', 'America/Goose_Bay', '-4.00', '-3.00', '-4.00'),
(93, 'CA', 'America/Halifax', '-4.00', '-3.00', '-4.00'),
(94, 'CA', 'America/Inuvik', '-7.00', '-6.00', '-7.00'),
(95, 'CA', 'America/Iqaluit', '-5.00', '-4.00', '-5.00'),
(96, 'CA', 'America/Moncton', '-4.00', '-3.00', '-4.00'),
(97, 'CA', 'America/Montreal', '-5.00', '-4.00', '-5.00'),
(98, 'CA', 'America/Nipigon', '-5.00', '-4.00', '-5.00'),
(99, 'CA', 'America/Pangnirtung', '-5.00', '-4.00', '-5.00'),
(100, 'CA', 'America/Rainy_River', '-6.00', '-5.00', '-6.00'),
(101, 'CA', 'America/Rankin_Inlet', '-6.00', '-5.00', '-6.00'),
(102, 'CA', 'America/Regina', '-6.00', '-6.00', '-6.00'),
(103, 'CA', 'America/Resolute', '-6.00', '-5.00', '-6.00'),
(104, 'CA', 'America/St_Johns', '-3.50', '-2.50', '-3.50'),
(105, 'CA', 'America/Swift_Current', '-6.00', '-6.00', '-6.00'),
(106, 'CA', 'America/Thunder_Bay', '-5.00', '-4.00', '-5.00'),
(107, 'CA', 'America/Toronto', '-5.00', '-4.00', '-5.00'),
(108, 'CA', 'America/Vancouver', '-8.00', '-7.00', '-8.00'),
(109, 'CA', 'America/Whitehorse', '-8.00', '-7.00', '-8.00'),
(110, 'CA', 'America/Winnipeg', '-6.00', '-5.00', '-6.00'),
(111, 'CA', 'America/Yellowknife', '-7.00', '-6.00', '-7.00'),
(112, 'CC', 'Indian/Cocos', '6.50', '6.50', '6.50'),
(113, 'CD', 'Africa/Kinshasa', '1.00', '1.00', '1.00'),
(114, 'CD', 'Africa/Lubumbashi', '2.00', '2.00', '2.00'),
(115, 'CF', 'Africa/Bangui', '1.00', '1.00', '1.00'),
(116, 'CG', 'Africa/Brazzaville', '1.00', '1.00', '1.00'),
(117, 'CH', 'Europe/Zurich', '1.00', '2.00', '1.00'),
(118, 'CI', 'Africa/Abidjan', '0.00', '0.00', '0.00'),
(119, 'CK', 'Pacific/Rarotonga', '-10.00', '-10.00', '-10.00'),
(120, 'CL', 'America/Santiago', '-3.00', '-4.00', '-4.00'),
(121, 'CL', 'Pacific/Easter', '-5.00', '-6.00', '-6.00'),
(122, 'CM', 'Africa/Douala', '1.00', '1.00', '1.00'),
(123, 'CN', 'Asia/Chongqing', '8.00', '8.00', '8.00'),
(124, 'CN', 'Asia/Harbin', '8.00', '8.00', '8.00'),
(125, 'CN', 'Asia/Kashgar', '8.00', '8.00', '8.00'),
(126, 'CN', 'Asia/Shanghai', '8.00', '8.00', '8.00'),
(127, 'CN', 'Asia/Urumqi', '8.00', '8.00', '8.00'),
(128, 'CO', 'America/Bogota', '-5.00', '-5.00', '-5.00'),
(129, 'CR', 'America/Costa_Rica', '-6.00', '-6.00', '-6.00'),
(130, 'CU', 'America/Havana', '-5.00', '-4.00', '-5.00'),
(131, 'CV', 'Atlantic/Cape_Verde', '-1.00', '-1.00', '-1.00'),
(132, 'CW', 'America/Curacao', '-4.00', '-4.00', '-4.00'),
(133, 'CX', 'Indian/Christmas', '7.00', '7.00', '7.00'),
(134, 'CY', 'Asia/Nicosia', '2.00', '3.00', '2.00'),
(135, 'CZ', 'Europe/Prague', '1.00', '2.00', '1.00'),
(136, 'DE', 'Europe/Berlin', '1.00', '2.00', '1.00'),
(137, 'DE', 'Europe/Busingen', '1.00', '2.00', '1.00'),
(138, 'DJ', 'Africa/Djibouti', '3.00', '3.00', '3.00'),
(139, 'DK', 'Europe/Copenhagen', '1.00', '2.00', '1.00'),
(140, 'DM', 'America/Dominica', '-4.00', '-4.00', '-4.00'),
(141, 'DO', 'America/Santo_Domingo', '-4.00', '-4.00', '-4.00'),
(142, 'DZ', 'Africa/Algiers', '1.00', '1.00', '1.00'),
(143, 'EC', 'America/Guayaquil', '-5.00', '-5.00', '-5.00'),
(144, 'EC', 'Pacific/Galapagos', '-6.00', '-6.00', '-6.00'),
(145, 'EE', 'Europe/Tallinn', '2.00', '3.00', '2.00'),
(146, 'EG', 'Africa/Cairo', '2.00', '2.00', '2.00'),
(147, 'EH', 'Africa/El_Aaiun', '0.00', '0.00', '0.00'),
(148, 'ER', 'Africa/Asmara', '3.00', '3.00', '3.00'),
(149, 'ES', 'Africa/Ceuta', '1.00', '2.00', '1.00'),
(150, 'ES', 'Atlantic/Canary', '0.00', '1.00', '0.00'),
(151, 'ES', 'Europe/Madrid', '1.00', '2.00', '1.00'),
(152, 'ET', 'Africa/Addis_Ababa', '3.00', '3.00', '3.00'),
(153, 'FI', 'Europe/Helsinki', '2.00', '3.00', '2.00'),
(154, 'FJ', 'Pacific/Fiji', '13.00', '12.00', '12.00'),
(155, 'FK', 'Atlantic/Stanley', '-3.00', '-3.00', '-3.00'),
(156, 'FM', 'Pacific/Chuuk', '10.00', '10.00', '10.00'),
(157, 'FM', 'Pacific/Kosrae', '11.00', '11.00', '11.00'),
(158, 'FM', 'Pacific/Pohnpei', '11.00', '11.00', '11.00'),
(159, 'FO', 'Atlantic/Faroe', '0.00', '1.00', '0.00'),
(160, 'FR', 'Europe/Paris', '1.00', '2.00', '1.00'),
(161, 'GA', 'Africa/Libreville', '1.00', '1.00', '1.00'),
(162, 'GB', 'Europe/London', '0.00', '1.00', '0.00'),
(163, 'GD', 'America/Grenada', '-4.00', '-4.00', '-4.00'),
(164, 'GE', 'Asia/Tbilisi', '4.00', '4.00', '4.00'),
(165, 'GF', 'America/Cayenne', '-3.00', '-3.00', '-3.00'),
(166, 'GG', 'Europe/Guernsey', '0.00', '1.00', '0.00'),
(167, 'GH', 'Africa/Accra', '0.00', '0.00', '0.00'),
(168, 'GI', 'Europe/Gibraltar', '1.00', '2.00', '1.00'),
(169, 'GL', 'America/Danmarkshavn', '0.00', '0.00', '0.00'),
(170, 'GL', 'America/Godthab', '-3.00', '-2.00', '-3.00'),
(171, 'GL', 'America/Scoresbysund', '-1.00', '0.00', '-1.00'),
(172, 'GL', 'America/Thule', '-4.00', '-3.00', '-4.00'),
(173, 'GM', 'Africa/Banjul', '0.00', '0.00', '0.00'),
(174, 'GN', 'Africa/Conakry', '0.00', '0.00', '0.00'),
(175, 'GP', 'America/Guadeloupe', '-4.00', '-4.00', '-4.00'),
(176, 'GQ', 'Africa/Malabo', '1.00', '1.00', '1.00'),
(177, 'GR', 'Europe/Athens', '2.00', '3.00', '2.00'),
(178, 'GS', 'Atlantic/South_Georgia', '-2.00', '-2.00', '-2.00'),
(179, 'GT', 'America/Guatemala', '-6.00', '-6.00', '-6.00'),
(180, 'GU', 'Pacific/Guam', '10.00', '10.00', '10.00'),
(181, 'GW', 'Africa/Bissau', '0.00', '0.00', '0.00'),
(182, 'GY', 'America/Guyana', '-4.00', '-4.00', '-4.00'),
(183, 'HK', 'Asia/Hong_Kong', '8.00', '8.00', '8.00'),
(184, 'HN', 'America/Tegucigalpa', '-6.00', '-6.00', '-6.00'),
(185, 'HR', 'Europe/Zagreb', '1.00', '2.00', '1.00'),
(186, 'HT', 'America/Port-au-Prince', '-5.00', '-4.00', '-5.00'),
(187, 'HU', 'Europe/Budapest', '1.00', '2.00', '1.00'),
(188, 'ID', 'Asia/Jakarta', '7.00', '7.00', '7.00'),
(189, 'ID', 'Asia/Jayapura', '9.00', '9.00', '9.00'),
(190, 'ID', 'Asia/Makassar', '8.00', '8.00', '8.00'),
(191, 'ID', 'Asia/Pontianak', '7.00', '7.00', '7.00'),
(192, 'IE', 'Europe/Dublin', '0.00', '1.00', '0.00'),
(193, 'IL', 'Asia/Jerusalem', '2.00', '3.00', '2.00'),
(194, 'IM', 'Europe/Isle_of_Man', '0.00', '1.00', '0.00'),
(195, 'IN', 'Asia/Kolkata', '5.50', '5.50', '5.50'),
(196, 'IO', 'Indian/Chagos', '6.00', '6.00', '6.00'),
(197, 'IQ', 'Asia/Baghdad', '3.00', '3.00', '3.00'),
(198, 'IR', 'Asia/Tehran', '3.50', '4.50', '3.50'),
(199, 'IS', 'Atlantic/Reykjavik', '0.00', '0.00', '0.00'),
(200, 'IT', 'Europe/Rome', '1.00', '2.00', '1.00'),
(201, 'JE', 'Europe/Jersey', '0.00', '1.00', '0.00'),
(202, 'JM', 'America/Jamaica', '-5.00', '-5.00', '-5.00'),
(203, 'JO', 'Asia/Amman', '2.00', '3.00', '2.00'),
(204, 'JP', 'Asia/Tokyo', '9.00', '9.00', '9.00'),
(205, 'KE', 'Africa/Nairobi', '3.00', '3.00', '3.00'),
(206, 'KG', 'Asia/Bishkek', '6.00', '6.00', '6.00'),
(207, 'KH', 'Asia/Phnom_Penh', '7.00', '7.00', '7.00'),
(208, 'KI', 'Pacific/Enderbury', '13.00', '13.00', '13.00'),
(209, 'KI', 'Pacific/Kiritimati', '14.00', '14.00', '14.00'),
(210, 'KI', 'Pacific/Tarawa', '12.00', '12.00', '12.00'),
(211, 'KM', 'Indian/Comoro', '3.00', '3.00', '3.00'),
(212, 'KN', 'America/St_Kitts', '-4.00', '-4.00', '-4.00'),
(213, 'KP', 'Asia/Pyongyang', '9.00', '9.00', '9.00'),
(214, 'KR', 'Asia/Seoul', '9.00', '9.00', '9.00'),
(215, 'KW', 'Asia/Kuwait', '3.00', '3.00', '3.00'),
(216, 'KY', 'America/Cayman', '-5.00', '-5.00', '-5.00'),
(217, 'KZ', 'Asia/Almaty', '6.00', '6.00', '6.00'),
(218, 'KZ', 'Asia/Aqtau', '5.00', '5.00', '5.00'),
(219, 'KZ', 'Asia/Aqtobe', '5.00', '5.00', '5.00'),
(220, 'KZ', 'Asia/Oral', '5.00', '5.00', '5.00'),
(221, 'KZ', 'Asia/Qyzylorda', '6.00', '6.00', '6.00'),
(222, 'LA', 'Asia/Vientiane', '7.00', '7.00', '7.00'),
(223, 'LB', 'Asia/Beirut', '2.00', '3.00', '2.00'),
(224, 'LC', 'America/St_Lucia', '-4.00', '-4.00', '-4.00'),
(225, 'LI', 'Europe/Vaduz', '1.00', '2.00', '1.00'),
(226, 'LK', 'Asia/Colombo', '5.50', '5.50', '5.50'),
(227, 'LR', 'Africa/Monrovia', '0.00', '0.00', '0.00'),
(228, 'LS', 'Africa/Maseru', '2.00', '2.00', '2.00'),
(229, 'LT', 'Europe/Vilnius', '2.00', '3.00', '2.00'),
(230, 'LU', 'Europe/Luxembourg', '1.00', '2.00', '1.00'),
(231, 'LV', 'Europe/Riga', '2.00', '3.00', '2.00'),
(232, 'LY', 'Africa/Tripoli', '2.00', '2.00', '2.00'),
(233, 'MA', 'Africa/Casablanca', '0.00', '0.00', '0.00'),
(234, 'MC', 'Europe/Monaco', '1.00', '2.00', '1.00'),
(235, 'MD', 'Europe/Chisinau', '2.00', '3.00', '2.00'),
(236, 'ME', 'Europe/Podgorica', '1.00', '2.00', '1.00'),
(237, 'MF', 'America/Marigot', '-4.00', '-4.00', '-4.00'),
(238, 'MG', 'Indian/Antananarivo', '3.00', '3.00', '3.00'),
(239, 'MH', 'Pacific/Kwajalein', '12.00', '12.00', '12.00'),
(240, 'MH', 'Pacific/Majuro', '12.00', '12.00', '12.00'),
(241, 'MK', 'Europe/Skopje', '1.00', '2.00', '1.00'),
(242, 'ML', 'Africa/Bamako', '0.00', '0.00', '0.00'),
(243, 'MM', 'Asia/Rangoon', '6.50', '6.50', '6.50'),
(244, 'MN', 'Asia/Choibalsan', '8.00', '8.00', '8.00'),
(245, 'MN', 'Asia/Hovd', '7.00', '7.00', '7.00'),
(246, 'MN', 'Asia/Ulaanbaatar', '8.00', '8.00', '8.00'),
(247, 'MO', 'Asia/Macau', '8.00', '8.00', '8.00'),
(248, 'MP', 'Pacific/Saipan', '10.00', '10.00', '10.00'),
(249, 'MQ', 'America/Martinique', '-4.00', '-4.00', '-4.00'),
(250, 'MR', 'Africa/Nouakchott', '0.00', '0.00', '0.00'),
(251, 'MS', 'America/Montserrat', '-4.00', '-4.00', '-4.00'),
(252, 'MT', 'Europe/Malta', '1.00', '2.00', '1.00'),
(253, 'MU', 'Indian/Mauritius', '4.00', '4.00', '4.00'),
(254, 'MV', 'Indian/Maldives', '5.00', '5.00', '5.00'),
(255, 'MW', 'Africa/Blantyre', '2.00', '2.00', '2.00'),
(256, 'MX', 'America/Bahia_Banderas', '-6.00', '-5.00', '-6.00'),
(257, 'MX', 'America/Cancun', '-6.00', '-5.00', '-6.00'),
(258, 'MX', 'America/Chihuahua', '-7.00', '-6.00', '-7.00'),
(259, 'MX', 'America/Hermosillo', '-7.00', '-7.00', '-7.00'),
(260, 'MX', 'America/Matamoros', '-6.00', '-5.00', '-6.00'),
(261, 'MX', 'America/Mazatlan', '-7.00', '-6.00', '-7.00'),
(262, 'MX', 'America/Merida', '-6.00', '-5.00', '-6.00'),
(263, 'MX', 'America/Mexico_City', '-6.00', '-5.00', '-6.00'),
(264, 'MX', 'America/Monterrey', '-6.00', '-5.00', '-6.00'),
(265, 'MX', 'America/Ojinaga', '-7.00', '-6.00', '-7.00'),
(266, 'MX', 'America/Santa_Isabel', '-8.00', '-7.00', '-8.00'),
(267, 'MX', 'America/Tijuana', '-8.00', '-7.00', '-8.00'),
(268, 'MY', 'Asia/Kuala_Lumpur', '8.00', '8.00', '8.00'),
(269, 'MY', 'Asia/Kuching', '8.00', '8.00', '8.00'),
(270, 'MZ', 'Africa/Maputo', '2.00', '2.00', '2.00'),
(271, 'NA', 'Africa/Windhoek', '2.00', '1.00', '1.00'),
(272, 'NC', 'Pacific/Noumea', '11.00', '11.00', '11.00'),
(273, 'NE', 'Africa/Niamey', '1.00', '1.00', '1.00'),
(274, 'NF', 'Pacific/Norfolk', '11.50', '11.50', '11.50'),
(275, 'NG', 'Africa/Lagos', '1.00', '1.00', '1.00'),
(276, 'NI', 'America/Managua', '-6.00', '-6.00', '-6.00'),
(277, 'NL', 'Europe/Amsterdam', '1.00', '2.00', '1.00'),
(278, 'NO', 'Europe/Oslo', '1.00', '2.00', '1.00'),
(279, 'NP', 'Asia/Kathmandu', '5.75', '5.75', '5.75'),
(280, 'NR', 'Pacific/Nauru', '12.00', '12.00', '12.00'),
(281, 'NU', 'Pacific/Niue', '-11.00', '-11.00', '-11.00'),
(282, 'NZ', 'Pacific/Auckland', '13.00', '12.00', '12.00'),
(283, 'NZ', 'Pacific/Chatham', '13.75', '12.75', '12.75'),
(284, 'OM', 'Asia/Muscat', '4.00', '4.00', '4.00'),
(285, 'PA', 'America/Panama', '-5.00', '-5.00', '-5.00'),
(286, 'PE', 'America/Lima', '-5.00', '-5.00', '-5.00'),
(287, 'PF', 'Pacific/Gambier', '-9.00', '-9.00', '-9.00'),
(288, 'PF', 'Pacific/Marquesas', '-9.50', '-9.50', '-9.50'),
(289, 'PF', 'Pacific/Tahiti', '-10.00', '-10.00', '-10.00'),
(290, 'PG', 'Pacific/Port_Moresby', '10.00', '10.00', '10.00'),
(291, 'PH', 'Asia/Manila', '8.00', '8.00', '8.00'),
(292, 'PK', 'Asia/Karachi', '5.00', '5.00', '5.00'),
(293, 'PL', 'Europe/Warsaw', '1.00', '2.00', '1.00'),
(294, 'PM', 'America/Miquelon', '-3.00', '-2.00', '-3.00'),
(295, 'PN', 'Pacific/Pitcairn', '-8.00', '-8.00', '-8.00'),
(296, 'PR', 'America/Puerto_Rico', '-4.00', '-4.00', '-4.00'),
(297, 'PS', 'Asia/Gaza', '2.00', '3.00', '2.00'),
(298, 'PS', 'Asia/Hebron', '2.00', '3.00', '2.00'),
(299, 'PT', 'Atlantic/Azores', '-1.00', '0.00', '-1.00'),
(300, 'PT', 'Atlantic/Madeira', '0.00', '1.00', '0.00'),
(301, 'PT', 'Europe/Lisbon', '0.00', '1.00', '0.00'),
(302, 'PW', 'Pacific/Palau', '9.00', '9.00', '9.00'),
(303, 'PY', 'America/Asuncion', '-3.00', '-4.00', '-4.00'),
(304, 'QA', 'Asia/Qatar', '3.00', '3.00', '3.00'),
(305, 'RE', 'Indian/Reunion', '4.00', '4.00', '4.00'),
(306, 'RO', 'Europe/Bucharest', '2.00', '3.00', '2.00'),
(307, 'RS', 'Europe/Belgrade', '1.00', '2.00', '1.00'),
(308, 'RU', 'Asia/Anadyr', '12.00', '12.00', '12.00'),
(309, 'RU', 'Asia/Irkutsk', '9.00', '9.00', '9.00'),
(310, 'RU', 'Asia/Kamchatka', '12.00', '12.00', '12.00'),
(311, 'RU', 'Asia/Khandyga', '10.00', '10.00', '10.00'),
(312, 'RU', 'Asia/Krasnoyarsk', '8.00', '8.00', '8.00'),
(313, 'RU', 'Asia/Magadan', '12.00', '12.00', '12.00'),
(314, 'RU', 'Asia/Novokuznetsk', '7.00', '7.00', '7.00'),
(315, 'RU', 'Asia/Novosibirsk', '7.00', '7.00', '7.00'),
(316, 'RU', 'Asia/Omsk', '7.00', '7.00', '7.00'),
(317, 'RU', 'Asia/Sakhalin', '11.00', '11.00', '11.00'),
(318, 'RU', 'Asia/Ust-Nera', '11.00', '11.00', '11.00'),
(319, 'RU', 'Asia/Vladivostok', '11.00', '11.00', '11.00'),
(320, 'RU', 'Asia/Yakutsk', '10.00', '10.00', '10.00'),
(321, 'RU', 'Asia/Yekaterinburg', '6.00', '6.00', '6.00'),
(322, 'RU', 'Europe/Kaliningrad', '3.00', '3.00', '3.00'),
(323, 'RU', 'Europe/Moscow', '4.00', '4.00', '4.00'),
(324, 'RU', 'Europe/Samara', '4.00', '4.00', '4.00'),
(325, 'RU', 'Europe/Volgograd', '4.00', '4.00', '4.00'),
(326, 'RW', 'Africa/Kigali', '2.00', '2.00', '2.00'),
(327, 'SA', 'Asia/Riyadh', '3.00', '3.00', '3.00'),
(328, 'SB', 'Pacific/Guadalcanal', '11.00', '11.00', '11.00'),
(329, 'SC', 'Indian/Mahe', '4.00', '4.00', '4.00'),
(330, 'SD', 'Africa/Khartoum', '3.00', '3.00', '3.00'),
(331, 'SE', 'Europe/Stockholm', '1.00', '2.00', '1.00'),
(332, 'SG', 'Asia/Singapore', '8.00', '8.00', '8.00'),
(333, 'SH', 'Atlantic/St_Helena', '0.00', '0.00', '0.00'),
(334, 'SI', 'Europe/Ljubljana', '1.00', '2.00', '1.00'),
(335, 'SJ', 'Arctic/Longyearbyen', '1.00', '2.00', '1.00'),
(336, 'SK', 'Europe/Bratislava', '1.00', '2.00', '1.00'),
(337, 'SL', 'Africa/Freetown', '0.00', '0.00', '0.00'),
(338, 'SM', 'Europe/San_Marino', '1.00', '2.00', '1.00'),
(339, 'SN', 'Africa/Dakar', '0.00', '0.00', '0.00'),
(340, 'SO', 'Africa/Mogadishu', '3.00', '3.00', '3.00'),
(341, 'SR', 'America/Paramaribo', '-3.00', '-3.00', '-3.00'),
(342, 'SS', 'Africa/Juba', '3.00', '3.00', '3.00'),
(343, 'ST', 'Africa/Sao_Tome', '0.00', '0.00', '0.00'),
(344, 'SV', 'America/El_Salvador', '-6.00', '-6.00', '-6.00'),
(345, 'SX', 'America/Lower_Princes', '-4.00', '-4.00', '-4.00'),
(346, 'SY', 'Asia/Damascus', '2.00', '3.00', '2.00'),
(347, 'SZ', 'Africa/Mbabane', '2.00', '2.00', '2.00'),
(348, 'TC', 'America/Grand_Turk', '-5.00', '-4.00', '-5.00'),
(349, 'TD', 'Africa/Ndjamena', '1.00', '1.00', '1.00'),
(350, 'TF', 'Indian/Kerguelen', '5.00', '5.00', '5.00'),
(351, 'TG', 'Africa/Lome', '0.00', '0.00', '0.00'),
(352, 'TH', 'Asia/Bangkok', '7.00', '7.00', '7.00'),
(353, 'TJ', 'Asia/Dushanbe', '5.00', '5.00', '5.00'),
(354, 'TK', 'Pacific/Fakaofo', '13.00', '13.00', '13.00'),
(355, 'TL', 'Asia/Dili', '9.00', '9.00', '9.00'),
(356, 'TM', 'Asia/Ashgabat', '5.00', '5.00', '5.00'),
(357, 'TN', 'Africa/Tunis', '1.00', '1.00', '1.00'),
(358, 'TO', 'Pacific/Tongatapu', '13.00', '13.00', '13.00'),
(359, 'TR', 'Europe/Istanbul', '2.00', '3.00', '2.00'),
(360, 'TT', 'America/Port_of_Spain', '-4.00', '-4.00', '-4.00'),
(361, 'TV', 'Pacific/Funafuti', '12.00', '12.00', '12.00'),
(362, 'TW', 'Asia/Taipei', '8.00', '8.00', '8.00'),
(363, 'TZ', 'Africa/Dar_es_Salaam', '3.00', '3.00', '3.00'),
(364, 'UA', 'Europe/Kiev', '2.00', '3.00', '2.00'),
(365, 'UA', 'Europe/Simferopol', '2.00', '4.00', '4.00'),
(366, 'UA', 'Europe/Uzhgorod', '2.00', '3.00', '2.00'),
(367, 'UA', 'Europe/Zaporozhye', '2.00', '3.00', '2.00'),
(368, 'UG', 'Africa/Kampala', '3.00', '3.00', '3.00'),
(369, 'UM', 'Pacific/Johnston', '-10.00', '-10.00', '-10.00'),
(370, 'UM', 'Pacific/Midway', '-11.00', '-11.00', '-11.00'),
(371, 'UM', 'Pacific/Wake', '12.00', '12.00', '12.00'),
(372, 'US', 'America/Adak', '-10.00', '-9.00', '-10.00'),
(373, 'US', 'America/Anchorage', '-9.00', '-8.00', '-9.00'),
(374, 'US', 'America/Boise', '-7.00', '-6.00', '-7.00'),
(375, 'US', 'America/Chicago', '-6.00', '-5.00', '-6.00'),
(376, 'US', 'America/Denver', '-7.00', '-6.00', '-7.00'),
(377, 'US', 'America/Detroit', '-5.00', '-4.00', '-5.00'),
(378, 'US', 'America/Indiana/Indianapolis', '-5.00', '-4.00', '-5.00'),
(379, 'US', 'America/Indiana/Knox', '-6.00', '-5.00', '-6.00'),
(380, 'US', 'America/Indiana/Marengo', '-5.00', '-4.00', '-5.00'),
(381, 'US', 'America/Indiana/Petersburg', '-5.00', '-4.00', '-5.00'),
(382, 'US', 'America/Indiana/Tell_City', '-6.00', '-5.00', '-6.00'),
(383, 'US', 'America/Indiana/Vevay', '-5.00', '-4.00', '-5.00'),
(384, 'US', 'America/Indiana/Vincennes', '-5.00', '-4.00', '-5.00'),
(385, 'US', 'America/Indiana/Winamac', '-5.00', '-4.00', '-5.00'),
(386, 'US', 'America/Juneau', '-9.00', '-8.00', '-9.00'),
(387, 'US', 'America/Kentucky/Louisville', '-5.00', '-4.00', '-5.00'),
(388, 'US', 'America/Kentucky/Monticello', '-5.00', '-4.00', '-5.00'),
(389, 'US', 'America/Los_Angeles', '-8.00', '-7.00', '-8.00'),
(390, 'US', 'America/Menominee', '-6.00', '-5.00', '-6.00'),
(391, 'US', 'America/Metlakatla', '-8.00', '-8.00', '-8.00'),
(392, 'US', 'America/New_York', '-5.00', '-4.00', '-5.00'),
(393, 'US', 'America/Nome', '-9.00', '-8.00', '-9.00'),
(394, 'US', 'America/North_Dakota/Beulah', '-6.00', '-5.00', '-6.00'),
(395, 'US', 'America/North_Dakota/Center', '-6.00', '-5.00', '-6.00'),
(396, 'US', 'America/North_Dakota/New_Salem', '-6.00', '-5.00', '-6.00'),
(397, 'US', 'America/Phoenix', '-7.00', '-7.00', '-7.00'),
(398, 'US', 'America/Shiprock', '-7.00', '-6.00', '-7.00'),
(399, 'US', 'America/Sitka', '-9.00', '-8.00', '-9.00'),
(400, 'US', 'America/Yakutat', '-9.00', '-8.00', '-9.00'),
(401, 'US', 'Pacific/Honolulu', '-10.00', '-10.00', '-10.00'),
(402, 'UY', 'America/Montevideo', '-2.00', '-3.00', '-3.00'),
(403, 'UZ', 'Asia/Samarkand', '5.00', '5.00', '5.00'),
(404, 'UZ', 'Asia/Tashkent', '5.00', '5.00', '5.00'),
(405, 'VA', 'Europe/Vatican', '1.00', '2.00', '1.00'),
(406, 'VC', 'America/St_Vincent', '-4.00', '-4.00', '-4.00'),
(407, 'VE', 'America/Caracas', '-4.50', '-4.50', '-4.50'),
(408, 'VG', 'America/Tortola', '-4.00', '-4.00', '-4.00'),
(409, 'VI', 'America/St_Thomas', '-4.00', '-4.00', '-4.00'),
(410, 'VN', 'Asia/Ho_Chi_Minh', '7.00', '7.00', '7.00'),
(411, 'VU', 'Pacific/Efate', '11.00', '11.00', '11.00'),
(412, 'WF', 'Pacific/Wallis', '12.00', '12.00', '12.00'),
(413, 'WS', 'Pacific/Apia', '14.00', '13.00', '13.00'),
(414, 'YE', 'Asia/Aden', '3.00', '3.00', '3.00'),
(415, 'YT', 'Indian/Mayotte', '3.00', '3.00', '3.00'),
(416, 'ZA', 'Africa/Johannesburg', '2.00', '2.00', '2.00'),
(417, 'ZM', 'Africa/Lusaka', '2.00', '2.00', '2.00'),
(418, 'ZW', 'Africa/Harare', '2.00', '2.00', '2.00');

-- --------------------------------------------------------

--
-- Table structure for table `ulinks`
--

CREATE TABLE `ulinks` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` int(11) NOT NULL DEFAULT '0',
  `name` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `ulinks`
--

INSERT INTO `ulinks` (`id`, `language_id`, `name`, `url`, `created_at`, `updated_at`) VALUES
(42, 176, 'About Us', '/about', NULL, NULL),
(43, 176, 'Terms & Conditions', '/p/terms-&-conditions', NULL, NULL),
(44, 176, 'Privacy Policy', 'http://example.com/', NULL, NULL),
(45, 176, 'Contact Us', '/contact', NULL, NULL),
(46, 176, 'Our Blogs', '/blog', NULL, NULL),
(47, 177, 'معلومات عنا', 'http://example.com/', NULL, NULL),
(48, 177, 'البنود و الظروف', 'http://example.com/', NULL, NULL),
(49, 177, 'سياسة الخصوصية', 'http://example.com/', NULL, NULL),
(50, 177, 'اتصل بنا', 'http://example.com/', NULL, NULL),
(51, 177, 'مدوناتنا', 'http://example.com/', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `first_name` varchar(255) DEFAULT NULL,
  `last_name` varchar(255) DEFAULT NULL,
  `photo` varchar(255) DEFAULT NULL,
  `username` varchar(255) DEFAULT NULL,
  `email` varchar(255) DEFAULT NULL,
  `password` varchar(255) DEFAULT NULL,
  `company_name` varchar(255) DEFAULT NULL,
  `phone` varchar(255) DEFAULT NULL,
  `city` varchar(255) DEFAULT NULL,
  `state` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `country` varchar(255) DEFAULT NULL,
  `remember_token` varchar(255) DEFAULT NULL,
  `featured` int(11) NOT NULL DEFAULT '0',
  `status` int(11) NOT NULL DEFAULT '0',
  `online_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1 = Active ,0 = offline',
  `verification_link` text,
  `email_verified` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 - verified, 0 - not verified',
  `subdomain_status` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 - pending, 1 - connected',
  `preview_template` tinyint(4) NOT NULL DEFAULT '0',
  `template_img` varchar(100) DEFAULT NULL,
  `template_serial_number` int(11) NOT NULL DEFAULT '0',
  `balance` int(11) NOT NULL DEFAULT '0',
  `pass_token` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `first_name`, `last_name`, `photo`, `username`, `email`, `password`, `company_name`, `phone`, `city`, `state`, `address`, `country`, `remember_token`, `featured`, `status`, `online_status`, `verification_link`, `email_verified`, `subdomain_status`, `preview_template`, `template_img`, `template_serial_number`, `balance`, `pass_token`, `created_at`, `updated_at`) VALUES
(83, 'Mila', 'Dawson', '681f38ca3a808.png', 'nuvora', 'hearthstone@example.com', '$2y$10$IGsVHggPfEUAJfdfXt5SeO37HArdmfRjXWMh8OCi.4eUa5DksNMSa', 'Nuvora', '1872330757', '101 Sunset Blvd', 'Los Angeles', 'Los Angeles, United States', 'United States', NULL, 0, 1, 1, NULL, 1, 0, 1, '682b357b2ef07.png', 1, 0, NULL, '2025-04-27 12:53:59', '2025-05-20 11:09:06'),
(84, 'Ethan', 'Blak', '681f4764668c7.png', 'serava', 'nova@example.com', '$2y$10$2gLrYDc5VWZhv7tGAfO/rOrxuWcP3znPn.i2vv0m75tKCNmvjV/ke', 'Serava', '5553481534', 'Los Angeles', 'California', '2 Oceanview Dr, Miami, FL 33139', 'United States', NULL, 0, 1, 1, NULL, 1, 0, 1, '682b3510b5de9.png', 2, 0, NULL, '2025-04-27 12:55:29', '2025-05-19 13:45:28'),
(85, 'Zara', 'Collins', '68203c4129e17.png', 'vireon', 'royal@example.com', '$2y$10$hy8mw2GSd/.6dssD6C3HYOqHuyMyFEYXRXdfAtmbiw8eBnlrgACWS', 'Vireon', '7027162084', 'Los Angeles', 'California', 'Los Angeles,California,USA', 'USA', NULL, 1, 1, 1, NULL, 1, 0, 1, '682b348ccc51d.png', 3, 0, NULL, '2025-04-27 12:56:32', '2025-05-19 13:39:24'),
(86, 'Nora', 'Quinn', '6820435b0069b.png', 'brelix', 'shafi@example.com', '$2y$10$VhnCJHyisQ6VPw33nJY9c.TUZYdTeOl3dlUWv5OoD8Hhov141s0vG', 'Brelix', '97852763742', 'Los Angeles', 'California', 'Los Angeles , California,USA', 'USA', NULL, 1, 1, 1, 'cd88c1742e029e348615acb0444fa022', 1, 0, 1, '682b346a51be5.png', 4, 0, NULL, '2025-04-27 12:58:58', '2025-05-19 13:43:39'),
(87, 'Caleb', 'Rivers', '682048cfcbb04.png', 'trenzo', 'tomas@example.com', '$2y$10$7yOwkXlQKQr51VlfmZF2QueLGAutKhog6O.DNMfChUBTwbs90rFMK', 'Trenzo', '+1 (305) 935-7855', 'Los Angeles', 'California', 'Los Angeles,California,USA', 'USA', NULL, 1, 1, 1, '15b387a0a0193ab02c280afd7a4cbbef', 1, 0, 1, '682b34343a129.png', 5, 0, NULL, '2025-04-27 13:00:52', '2025-05-19 13:43:45');

-- --------------------------------------------------------

--
-- Table structure for table `user_about_us_sections`
--

CREATE TABLE `user_about_us_sections` (
  `id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `image` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `text` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `user_additional_sections`
--

CREATE TABLE `user_additional_sections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) DEFAULT NULL,
  `page_type` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `possition` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `serial_number` int(11) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_additional_sections`
--

INSERT INTO `user_additional_sections` (`id`, `user_id`, `page_type`, `possition`, `serial_number`, `created_at`, `updated_at`) VALUES
(108, 83, 'about', 'about_info_section', 1, '2025-05-19 06:08:31', '2025-05-19 06:08:31'),
(109, 83, 'about', 'facility_section', 2, '2025-05-19 06:10:57', '2025-05-19 06:10:57'),
(111, 84, 'about', 'about_info_section', 1, '2025-05-19 06:54:24', '2025-05-19 06:54:24'),
(112, 85, 'about', 'about_info_section', 1, '2025-05-19 07:05:02', '2025-05-19 07:05:02');

-- --------------------------------------------------------

--
-- Table structure for table `user_additional_section_contents`
--

CREATE TABLE `user_additional_section_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) DEFAULT NULL,
  `addition_section_id` bigint(20) DEFAULT NULL,
  `section_name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `content` longtext COLLATE utf8mb4_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_additional_section_contents`
--

INSERT INTO `user_additional_section_contents` (`id`, `language_id`, `addition_section_id`, `section_name`, `content`, `created_at`, `updated_at`) VALUES
(106, 126, 72, '1', '<p>11111111111111111111111</p>', '2025-04-19 06:30:05', '2025-04-19 06:30:05'),
(145, 132, 108, 'What is Lorem Ipsum? (Custom)', '<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br /><br />There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. </p>', '2025-05-19 06:08:31', '2025-05-19 06:11:37'),
(146, 132, 109, 'Where does it come from? (custom)', '<p>Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>\r\n<p>The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from \"de Finibus Bonorum et Malorum\" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham.</p>', '2025-05-19 06:10:57', '2025-05-19 06:10:57'),
(147, 133, 109, 'من أين يأتي؟ (مخصص)', '<div class=\"wYq63b\">\r\n<div class=\"S6VXfe\">خلافًا للاعتقاد الشائع، فإن نص لوريم إيبسوم ليس مجرد نص عشوائي. له جذور في الأدب اللاتيني الكلاسيكي من عام ٤٥ قبل الميلاد، مما يجعله عمره أكثر من ٢٠٠٠ عام. بحث ريتشارد ماكلينتوك، أستاذ اللاتينية في كلية هامبدن-سيدني بولاية فرجينيا، عن كلمة لاتينية غامضة، وهي consectetur، في أحد مقاطع لوريم إيبسوم، وبمراجعة مصادر الكلمة في الأدب الكلاسيكي، اكتشف المصدر الأكيد. يأتي نص لوريم إيبسوم من القسمين ١.١٠.٣٢ و١.١٠.٣٣ من كتاب \"de Finibus Bonorum et Malorum\" (أقصى الخير والشر) لشيشرون، الذي كُتب عام ٤٥ قبل الميلاد. هذا الكتاب أطروحة في نظرية الأخلاق، حظيت بشعبية كبيرة خلال عصر النهضة. السطر الأول من نص لوريم إيبسوم، \"Lorem ipsum dolor sit amet..\"، يأتي من سطر في القسم ١.١٠.٣٢. يُعاد أدناه إنتاج النص الأساسي المستخدم منذ القرن السادس عشر لمن يهمه الأمر. كما أُعيد إنتاج القسمين ١.١٠.٣٢ و١.١٠.٣٣ من كتاب \"في النهاية الحسنة والسيئة\" لشيشرون بنسختهما الأصلية، مصحوبة بنسخ إنجليزية من ترجمة هـ. راكهام عام ١٩١٤.</div>\r\n</div>', '2025-05-19 06:10:57', '2025-05-19 06:10:57'),
(148, 133, 108, 'ما هو لوريم إيبسوم؟ (مخصص)', '<p>من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على شكل توضع الفقرات في الصفحة. يكمن الهدف من استخدام نص لوريم إيبسوم في توزيعه الطبيعي للأحرف، بدلاً من استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء. تستخدم العديد من برامج النشر المكتبي ومحررات صفحات الويب نص لوريم إيبسوم كنموذج افتراضي لها، وعند البحث عن \"lorem ipsum\" ستظهر العديد من المواقع الإلكترونية التي لا تزال في بداياتها. تطورت نسخ مختلفة على مر السنين، أحيانًا عن طريق الصدفة، وأحيانًا عن قصد (بإدخال عبارات فكاهية وما شابه).</p>\r\n<p>هناك العديد من النسخ المختلفة لنصوص لوريم إيبسوم، ولكن غالبيتها تعرضت للتعديل بشكل ما، سواءً بإدخال عبارات فكاهية أو كلمات عشوائية لا تبدو منطقية. إذا كنت ستستخدم نص لوريم إيبسوم، فتأكد من عدم وجود أي كلمات غير لائقة أو غير لائقة مخفية في النص. تميل جميع مولدات Lorem Ipsum الموجودة على الإنترنت إلى تكرار أجزاء محددة مسبقًا حسب الضرورة، مما يجعل هذا أول مولد حقيقي على الإنترنت.</p>', '2025-05-19 06:14:08', '2025-05-19 06:14:08'),
(150, 134, 111, 'What is Lorem Ipsum? (Custom)', '<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br /><br />There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. </p>', '2025-05-19 06:54:24', '2025-05-19 06:54:24'),
(151, 135, 111, 'ما هو لوريم إيبسوم؟ (مخصص)', '<p>من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على شكل توضع الفقرات في الصفحة. يكمن الهدف من استخدام نص لوريم إيبسوم في توزيعه الطبيعي للأحرف، بدلاً من استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء. تستخدم العديد من برامج النشر المكتبي ومحررات صفحات الويب نص لوريم إيبسوم كنموذج افتراضي لها، وعند البحث عن \"lorem ipsum\" ستظهر العديد من المواقع الإلكترونية التي لا تزال في بداياتها. تطورت نسخ مختلفة على مر السنين، أحيانًا عن طريق الصدفة، وأحيانًا عن قصد (بإدخال عبارات فكاهية وما شابه).</p>\r\n<p>هناك العديد من النسخ المختلفة لنصوص لوريم إيبسوم، ولكن غالبيتها تعرضت للتعديل بشكل ما، سواءً بإدخال عبارات فكاهية أو كلمات عشوائية لا تبدو منطقية. إذا كنت ستستخدم نص لوريم إيبسوم، فتأكد من عدم وجود أي كلمات غير لائقة أو غير لائقة مخفية في النص. تميل جميع مولدات Lorem Ipsum الموجودة على الإنترنت إلى تكرار أجزاء محددة مسبقًا حسب الضرورة، مما يجعل هذا أول مولد حقيقي على الإنترنت.</p>', '2025-05-19 06:54:24', '2025-05-19 06:54:24'),
(152, 136, 112, 'What is Lorem Ipsum? (Custom)', '<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).<br /><br />There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. </p>', '2025-05-19 07:05:02', '2025-05-19 07:05:02'),
(153, 137, 112, 'ما هو لوريم إيبسوم؟ (مخصص)', '<p>من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيلهي القارئ عن التركيز على شكل توضع الفقرات في الصفحة. يكمن الهدف من استخدام نص لوريم إيبسوم في توزيعه الطبيعي للأحرف، بدلاً من استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء. تستخدم العديد من برامج النشر المكتبي ومحررات صفحات الويب نص لوريم إيبسوم كنموذج افتراضي لها، وعند البحث عن \"lorem ipsum\" ستظهر العديد من المواقع الإلكترونية التي لا تزال في بداياتها. تطورت نسخ مختلفة على مر السنين، أحيانًا عن طريق الصدفة، وأحيانًا عن قصد (بإدخال عبارات فكاهية وما شابه).</p>\r\n<p>هناك العديد من النسخ المختلفة لنصوص لوريم إيبسوم، ولكن غالبيتها تعرضت للتعديل بشكل ما، سواءً بإدخال عبارات فكاهية أو كلمات عشوائية لا تبدو منطقية. إذا كنت ستستخدم نص لوريم إيبسوم، فتأكد من عدم وجود أي كلمات غير لائقة أو غير لائقة مخفية في النص. تميل جميع مولدات Lorem Ipsum الموجودة على الإنترنت إلى تكرار أجزاء محددة مسبقًا حسب الضرورة، مما يجعل هذا أول مولد حقيقي على الإنترنت.</p>', '2025-05-19 07:05:02', '2025-05-19 07:05:02');

-- --------------------------------------------------------

--
-- Table structure for table `user_advertisements`
--

CREATE TABLE `user_advertisements` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `ad_type` varchar(255) NOT NULL,
  `resolution_type` smallint(5) UNSIGNED NOT NULL COMMENT '1 => 300 x 250, 2 => 300 x 600, 3 => 728 x 90',
  `image` varchar(255) DEFAULT NULL,
  `url` varchar(255) DEFAULT NULL,
  `slot` varchar(50) DEFAULT NULL,
  `views` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_advertisements`
--

INSERT INTO `user_advertisements` (`id`, `user_id`, `ad_type`, `resolution_type`, `image`, `url`, `slot`, `views`, `created_at`, `updated_at`) VALUES
(11, 83, 'banner', 3, '5cc1c3da28fb2270276f18dc8d5c46aa52629864.png', 'http://example.com/', NULL, 0, '2025-05-20 10:50:48', '2025-05-20 10:50:48'),
(12, 83, 'banner', 2, '0bb26c96898a1ad8da480ee5240c633b5348f4b7.png', 'http://example.com/', NULL, 0, '2025-05-20 10:51:01', '2025-05-20 10:51:01'),
(13, 83, 'banner', 1, 'c55f0049fac4b447e84edcb0b8597adef0853d6d.png', 'http://example.com/', NULL, 0, '2025-05-20 10:51:22', '2025-05-20 10:51:22');

-- --------------------------------------------------------

--
-- Table structure for table `user_basic_extendeds`
--

CREATE TABLE `user_basic_extendeds` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `cookie_alert_status` tinyint(4) NOT NULL DEFAULT '0',
  `cookie_alert_btn_text` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cookie_alert_text` longtext COLLATE utf8mb4_unicode_ci,
  `page_not_found_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `page_not_found_subtitle` text COLLATE utf8mb4_unicode_ci,
  `page_not_found_image_one` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `page_not_found_image_two` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `login_page_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `login_page_subtitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `login_page_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signup_page_title` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signup_page_subtitle` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `signup_page_image` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_basic_extendeds`
--

INSERT INTO `user_basic_extendeds` (`id`, `language_id`, `user_id`, `cookie_alert_status`, `cookie_alert_btn_text`, `cookie_alert_text`, `page_not_found_title`, `page_not_found_subtitle`, `page_not_found_image_one`, `page_not_found_image_two`, `created_at`, `updated_at`, `login_page_title`, `login_page_subtitle`, `login_page_image`, `signup_page_title`, `signup_page_subtitle`, `signup_page_image`) VALUES
(20, 132, 83, 1, 'I Agree', '<p>We use cookies to give you the best online experience.<br>By continuing to browse the site you are agreeing to our use of cookies.</p>', '404 not found...', 'The page you are looking for might have been moved, renamed, or might never existed.', 'f3cbd4c1b5c850b287780a2db7052df9c369bb50.png', '0cfadfb230bf7ab82bb4914cd0ba89eb32b26e00.png', '2025-04-27 12:53:59', '2025-04-27 12:53:59', 'Welcome Back', 'Please sign in to manage your hotel operations.', 'f3ba5b391d7dae89314f922d1467847bd142601a.png', 'Sign Up', NULL, '05009ca99ce05eb6fb1cadc0e97376824babdf7b.png'),
(21, 133, 83, 0, 'أنا موافق', '<p dir=\"rtl\">نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة على الإنترنت. بمواصلة تصفح الموقع، فإنك توافق على استخدامنا لملفات تعريف الارتباط.</p>', 'لم يتم العثور على عنوان الصفحة', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', 'ae53b1bf260eb86a8a4d2d6ac30d6cc001ec73c8.png', 'a5dd66cf97437b756bdeeb18ed0b21121677a80f.png', '2025-04-27 12:53:59', '2025-04-27 12:53:59', 'هلاً بعودتك!', 'يرجى تسجيل الدخول لإدارة عمليات فندقك.', 'a90c1906f8988e5d7d3321d19ceff5b34543f4d8.png', 'تسجيل الدخول', '33', '42700141015616305bdf3e3d6ed572d000af6be4.png'),
(22, 134, 84, 1, 'I Agree', '<p>We use cookies to give you the best online experience.<br>By continuing to browse the site you are agreeing to our use of cookies.</p>', '404 not found...', 'The page you are looking for might have been moved, renamed, or might never existed.', '6ab578fa533b04bb83f0cd5a89d8b056ac3e1250.png', '47b89f36983973403cd7f60c7757d76c2c5fd10a.png', '2025-04-27 12:55:29', '2025-04-27 12:55:29', 'Welcome Back!', 'Please sign in to manage your hotel operations.', '08e092179f72e8a91d35cf945c33c7f878a96b7b.png', 'Create Your Account', 'Sign up to start managing your hotel efficiently.', 'dd1478dd0c4ce579e0f842755c5de791fdfc59c3.png'),
(23, 135, 84, 1, 'أوافق', '<p>نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة على الإنترنت.</p>\r\n<p>بمواصلة تصفح الموقع، فإنك توافق على استخدامنا لملفات تعريف الارتباط.</p>', 'لم يتم العثور على 404...', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', 'a95719c32d9996147682768f036c641acc0c9498.png', 'a0ae19e72d89d6ebb7914daa83725c613c8c8921.png', '2025-04-27 12:55:29', '2025-04-27 12:55:29', 'هلاً بعودتك!', 'يرجى تسجيل الدخول لإدارة عمليات فندقك.', '2be7140a18c3eae50954ce8dc0812969ff30652e.png', 'إنشاء حسابك', 'قم بالتسجيل لبدء إدارة فندقك بكفاءة.', '578be2a7c15557ca549f12f1fdee2ecab8e91684.png'),
(24, 136, 85, 1, 'I Agree', '<p>We use cookies to give you the best online experience.<br>By continuing to browse the site you are agreeing to our use of cookies.</p>', '404 not found...', 'The page you are looking for might have been moved, renamed, or might never existed.', 'f77c76719579f8537a811c6b8750185489ff340a.png', '2b8d2383054536417badb828ebf54033195e1f52.png', '2025-04-27 12:56:32', '2025-04-27 12:56:32', 'Welcome Back!', 'Please sign in to manage your hotel operations.', 'dbb4f562999e9fd11d55415b3037d087bd0e5f17.png', 'Create Your Account', 'Sign up to start managing your hotel efficiently.', 'fe769eb75b56bd91d04dcec4c1f4b9e98de8f5bc.png'),
(25, 137, 85, 1, 'أنا موافق', '<p dir=\"rtl\">نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة على الإنترنت. بمواصلة تصفح الموقع، فإنك توافق على استخدامنا لملفات تعريف الارتباط.</p>', 'لم يتم العثور على 404...', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', 'ef52f2efe122e996db3c2589142cd493d588e1b7.png', '9446e27d06f7c7ec7a716f34327f78934f3f7bc5.png', '2025-04-27 12:56:32', '2025-04-27 12:56:32', 'هلاً بعودتك!', 'يرجى تسجيل الدخول لإدارة عمليات فندقك.', '3e43ae90499d3262d2c0cf69627529b0a7dcd28b.png', 'إنشاء حسابك', 'قم بالتسجيل لبدء إدارة فندقك بكفاءة.', '962831e465555ffe546be7aa2e12ba3008d55fea.png'),
(26, 138, 86, 1, 'I Agree', '<p>We use cookies to give you the best online experience.<br>By continuing to browse the site you are agreeing to our use of cookies.</p>', '404 not found...', 'The page you are looking for might have been moved, renamed, or might never existed.', '46604ae1cc3ef6262df005ea0fa15e4871aa1b22.png', '2582e5b09c4915c2b03a0cfc0b6947d8943b9fdb.png', '2025-04-27 12:58:58', '2025-04-27 12:58:58', 'Welcome Back!', 'Please sign in to manage your hotel operations.', '8937eedc36a19b668f3a14d2489566d5f6bf6660.png', 'Create Your Account', 'Sign up to start managing your hotel efficiently.', 'b4d0cf377658007e41bb3c1a8867fbd3e0d924dc.png'),
(27, 139, 86, 1, 'أنا موافق', '<p dir=\"rtl\">نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة على الإنترنت. بمواصلة تصفح الموقع، فإنك توافق على استخدامنا لملفات تعريف الارتباط.</p>', 'لم يتم العثور على 404...', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', '00657c5277497bcf95f4dae1347754dbcf3fe281.png', 'd0e989f820289419ed44ea6318bdda84f6c04fbd.png', '2025-04-27 12:58:58', '2025-04-27 12:58:58', 'هلاً بعودتك!', 'يرجى تسجيل الدخول لإدارة عمليات فندقك.', 'e0e4a72d3f980f8d12591ccea18809e2b5cd2834.png', 'إنشاء حسابك', 'قم بالتسجيل لبدء إدارة فندقك بكفاءة.', '9e579ea5b09f0b3d93b0fde91397780601a4367b.png'),
(28, 140, 87, 1, 'I Agree', '<p>We use cookies to give you the best online experience.<br>By continuing to browse the site you are agreeing to our use of cookies.</p>', '404 not found...', 'The page you are looking for might have been moved, renamed, or might never existed.', '99424ff35b4c06d76aacf3ab0a987c73b46ad199.png', '6c7f9066f30e1f986d05b4ef9d6f896fb3534a69.png', '2025-04-27 13:00:52', '2025-04-27 13:00:52', 'Welcome Back!', 'Please sign in to manage your hotel operations.', '2a9fca23bd9fcfa0ca9f2d23633794bc1f2f7f90.png', 'Create Your Account', 'Sign up to start managing your hotel efficiently.', '913a01b762ce32a4fc94832f17d5fc141fc54021.png'),
(29, 141, 87, 1, 'أنا موافق', '<p dir=\"rtl\">نحن نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة عبر الإنترنت. من خلال الاستمرار في تصفح الموقع فإنك توافق على استخدامنا لملفات تعريف الارتباط.</p>', 'لم يتم العثور على 404...', 'ربما تم نقل الصفحة التي تبحث عنها، أو إعادة تسميتها، أو ربما لم تكن موجودة أبدًا.', 'b48171da91f783c3fdf36e58840ac939036d84ab.png', '66c733133604c92621783f7ccb11fad99b854ab5.png', '2025-04-27 13:00:52', '2025-04-27 13:00:52', 'هلاً بعودتك!', 'يرجى تسجيل الدخول لإدارة عمليات فندقك.', '00542394df4ddb89e146b4dae62ea9e3631480f2.png', 'إنشاء حسابك', 'قم بالتسجيل لبدء إدارة فندقك بكفاءة.', '62d693c40901cc8a47191e18d941dec814ac53dd.png');

-- --------------------------------------------------------

--
-- Table structure for table `user_basic_settings`
--

CREATE TABLE `user_basic_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `uniqid` int(10) UNSIGNED NOT NULL DEFAULT '12345' COMMENT 'This column is going to be used for fetching the information from db.',
  `user_id` int(11) NOT NULL,
  `favicon` varchar(255) DEFAULT NULL,
  `logo` varchar(255) DEFAULT NULL,
  `smtp_status` tinyint(1) NOT NULL,
  `email` varchar(255) NOT NULL,
  `website_title` varchar(255) NOT NULL,
  `support_email` varchar(255) DEFAULT NULL,
  `support_contact` varchar(255) DEFAULT NULL,
  `address` varchar(255) DEFAULT NULL,
  `base_currency_symbol` varchar(255) NOT NULL,
  `bypass_token` varchar(255) DEFAULT NULL,
  `base_currency_symbol_position` varchar(20) NOT NULL,
  `base_currency_text` varchar(20) NOT NULL,
  `base_currency_text_position` varchar(20) NOT NULL,
  `base_currency_rate` decimal(8,2) NOT NULL,
  `primary_color` varchar(30) NOT NULL,
  `secondary_color` varchar(30) NOT NULL,
  `breadcrumb_overlay_color` varchar(30) NOT NULL,
  `breadcrumb_overlay_opacity` decimal(4,2) NOT NULL,
  `reply_to` varchar(100) DEFAULT NULL,
  `from_name` varchar(255) DEFAULT NULL,
  `breadcrumb` varchar(255) DEFAULT NULL,
  `google_recaptcha_status` tinyint(4) DEFAULT NULL,
  `google_recaptcha_site_key` varchar(255) DEFAULT NULL,
  `google_recaptcha_secret_key` varchar(255) DEFAULT NULL,
  `maintenance_img` varchar(255) DEFAULT NULL,
  `maintenance_status` tinyint(4) DEFAULT '0',
  `maintenance_msg` text,
  `secret_path` varchar(255) DEFAULT NULL,
  `announcement_img` varchar(255) DEFAULT NULL,
  `announcement_status` tinyint(4) DEFAULT NULL,
  `popup_delay` decimal(4,2) DEFAULT NULL,
  `footer_logo` varchar(255) DEFAULT NULL,
  `footer_bg_image` varchar(255) DEFAULT NULL,
  `room_rating_status` tinyint(3) UNSIGNED DEFAULT NULL,
  `package_rating_status` tinyint(3) UNSIGNED DEFAULT NULL,
  `room_guest_checkout_status` tinyint(3) UNSIGNED DEFAULT NULL,
  `package_guest_checkout_status` tinyint(3) UNSIGNED DEFAULT NULL,
  `theme_version` varchar(255) NOT NULL DEFAULT 'theme_one',
  `home_version` varchar(255) DEFAULT 'static',
  `is_disqus` tinyint(4) NOT NULL DEFAULT '0' COMMENT '1 - active, 0 - deactive',
  `disqus_shortname` varchar(255) DEFAULT NULL,
  `is_tawkto` tinyint(4) NOT NULL DEFAULT '0',
  `tawkto_chat_link` varchar(255) DEFAULT NULL,
  `is_whatsapp` tinyint(4) NOT NULL DEFAULT '0',
  `whatsapp_number` varchar(50) DEFAULT NULL,
  `whatsapp_header_title` varchar(255) DEFAULT NULL,
  `whatsapp_popup_message` text,
  `whatsapp_popup` tinyint(4) NOT NULL DEFAULT '0',
  `latitude` varchar(255) DEFAULT NULL,
  `longitude` varchar(255) DEFAULT NULL,
  `preloader_status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '1 - active, 0 - deactive',
  `preloader` varchar(50) DEFAULT NULL,
  `hero_video_link` text,
  `notification_image` varchar(255) DEFAULT NULL,
  `qr_image` varchar(255) DEFAULT NULL,
  `qr_color` varchar(255) NOT NULL DEFAULT '000000',
  `qr_size` int(10) UNSIGNED NOT NULL DEFAULT '250',
  `qr_style` varchar(255) NOT NULL DEFAULT 'square',
  `qr_eye_style` varchar(255) NOT NULL DEFAULT 'square',
  `qr_margin` int(10) UNSIGNED NOT NULL DEFAULT '0',
  `qr_text` varchar(255) DEFAULT NULL,
  `qr_text_color` varchar(255) NOT NULL DEFAULT '000000',
  `qr_text_size` int(10) UNSIGNED NOT NULL DEFAULT '15',
  `qr_text_x` int(10) UNSIGNED NOT NULL DEFAULT '50',
  `qr_text_y` int(10) UNSIGNED NOT NULL DEFAULT '50',
  `qr_inserted_image` varchar(255) DEFAULT NULL,
  `qr_inserted_image_size` int(10) UNSIGNED NOT NULL DEFAULT '20',
  `qr_inserted_image_x` int(10) UNSIGNED NOT NULL DEFAULT '50',
  `qr_inserted_image_y` int(10) UNSIGNED NOT NULL DEFAULT '50',
  `qr_type` varchar(255) NOT NULL DEFAULT 'default' COMMENT 'default, image, text',
  `qr_url` varchar(255) DEFAULT NULL,
  `google_login_status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '1 -> active, 0 -> deactive',
  `google_client_id` varchar(255) DEFAULT NULL,
  `google_client_secret` varchar(255) DEFAULT NULL,
  `email_address` varchar(255) NOT NULL,
  `contact_number` varchar(255) DEFAULT NULL,
  `timezone` varchar(255) DEFAULT NULL,
  `google_adsense_publisher_id` varchar(255) DEFAULT NULL,
  `room_tax_status` tinyint(4) DEFAULT '0',
  `room_tax` decimal(10,0) NOT NULL DEFAULT '0',
  `room_fee_status` tinyint(4) NOT NULL DEFAULT '0',
  `room_fee` decimal(10,0) NOT NULL DEFAULT '0',
  `package_tax_status` tinyint(4) NOT NULL DEFAULT '0',
  `package_tax` decimal(10,0) NOT NULL DEFAULT '0',
  `package_fee_status` tinyint(4) NOT NULL DEFAULT '0',
  `package_fee` decimal(10,0) NOT NULL DEFAULT '0',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_basic_settings`
--

INSERT INTO `user_basic_settings` (`id`, `uniqid`, `user_id`, `favicon`, `logo`, `smtp_status`, `email`, `website_title`, `support_email`, `support_contact`, `address`, `base_currency_symbol`, `bypass_token`, `base_currency_symbol_position`, `base_currency_text`, `base_currency_text_position`, `base_currency_rate`, `primary_color`, `secondary_color`, `breadcrumb_overlay_color`, `breadcrumb_overlay_opacity`, `reply_to`, `from_name`, `breadcrumb`, `google_recaptcha_status`, `google_recaptcha_site_key`, `google_recaptcha_secret_key`, `maintenance_img`, `maintenance_status`, `maintenance_msg`, `secret_path`, `announcement_img`, `announcement_status`, `popup_delay`, `footer_logo`, `footer_bg_image`, `room_rating_status`, `package_rating_status`, `room_guest_checkout_status`, `package_guest_checkout_status`, `theme_version`, `home_version`, `is_disqus`, `disqus_shortname`, `is_tawkto`, `tawkto_chat_link`, `is_whatsapp`, `whatsapp_number`, `whatsapp_header_title`, `whatsapp_popup_message`, `whatsapp_popup`, `latitude`, `longitude`, `preloader_status`, `preloader`, `hero_video_link`, `notification_image`, `qr_image`, `qr_color`, `qr_size`, `qr_style`, `qr_eye_style`, `qr_margin`, `qr_text`, `qr_text_color`, `qr_text_size`, `qr_text_x`, `qr_text_y`, `qr_inserted_image`, `qr_inserted_image_size`, `qr_inserted_image_x`, `qr_inserted_image_y`, `qr_type`, `qr_url`, `google_login_status`, `google_client_id`, `google_client_secret`, `email_address`, `contact_number`, `timezone`, `google_adsense_publisher_id`, `room_tax_status`, `room_tax`, `room_fee_status`, `room_fee`, `package_tax_status`, `package_tax`, `package_fee_status`, `package_fee`, `created_at`, `updated_at`) VALUES
(75, 12345, 83, '9e6901119cb2df9293f7e242ec161e74b8e351a2.png', '6829d104dd7fb.png', 1, 'hearthstone@example.com', 'Nuvora', 'support@example.com', '+090458409358', 'California, USA', '$', NULL, 'left', 'USD', 'right', '1.00', 'FEA116', '0F172B', '0F172B', '0.76', 'hearthstone@example.com', 'Hotelia', 'c2ce07523ef11549482febfdd011894cd4d3cd3e.jpg', 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, '0579cc3d35e098c6acbbde13a7a53260467aed36.png', NULL, 1, 1, 1, 1, 'theme_one', 'particles', 0, NULL, 1, 'https://tawk.to/chat/62d688ec7b967b11799a42ee/1g8b0do1h', 0, NULL, NULL, '', 0, '23.87551462590731', '90.39261230329821', 1, 'a7c7d98e8c7f0b75e5f9827686087cff500ff9c7.gif', NULL, NULL, NULL, '000000', 250, 'square', 'square', 0, NULL, '000000', 15, 50, 50, NULL, 20, 50, 50, 'default', NULL, 0, NULL, NULL, 'hearthstone@example.com', NULL, 'Europe/Andorra', NULL, 1, '10', 1, '5', 1, '5', 1, '10', '2025-04-27 12:53:59', '2025-05-20 11:15:40'),
(76, 12345, 84, '1a98f9600e5293619759e7033fa95b1edc3354c7.png', '6829d2caeb772.png', 1, 'nova@example.com', 'Serava Hotel', 'support@example.com', '5553481534', 'California, USA', '$', NULL, 'right', 'USD', 'right', '1.00', 'FEA116', '0F172B', '0F172B', '0.76', 'nova@example.com', 'Hotelia', 'e1226c3cad69e50a4e4595ebc7d37b2594dd80a6.png', 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, '34929187096939af800b8209643ef817f55e99d0.png', NULL, 1, 1, 1, 1, 'theme_two', 'water', 0, NULL, 1, 'https://tawk.to/chat/62d688ec7b967b11799a42ee/1g8b0do1h', 0, NULL, NULL, '', 0, '23.87551462590731', '90.39261230329821', 1, 'b98e859a076814e00a701ce38da5f544cf48f807.gif', NULL, NULL, NULL, '000000', 250, 'square', 'square', 0, NULL, '000000', 15, 50, 50, NULL, 20, 50, 50, 'default', NULL, 0, NULL, NULL, 'nova@example.com', NULL, 'Europe/Tirane', NULL, 1, '5', 1, '6', 0, '0', 0, '0', '2025-04-27 12:55:29', '2025-05-20 11:24:47'),
(77, 12345, 85, 'f870e8ea0919a9ebdb2c646ca0b0e2e6a3cdedfb.png', '68203df29876a.png', 1, 'royal@example.com', 'Vireon Hotel', 'example@email.com', '+00123456789', 'California usa', '$', NULL, 'left', 'USD', 'right', '1.00', 'FEA116', '0F172B', '0F172B', '0.76', 'royal@example.com', 'Hotelia', '021ba35a1b4dd6d87f241791cb55e46c71de8b42.png', 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, '6609c7e22dc3e4ae687ca40c1dc3ba0d635f33de.png', '1e8682b694b39ab80b23bc07c1b07b43d6b77f5a.jpg', 1, 1, 1, 1, 'theme_three', 'static', 0, NULL, 1, 'https://tawk.to/chat/62d688ec7b967b11799a42ee/1g8b0do1h', 0, NULL, NULL, '', 0, '23.87551462590731', '90.39261230329821', 1, '02552e6d03fd03b892a3978c28cdf2014f61a21c.gif', NULL, NULL, NULL, '000000', 250, 'square', 'square', 0, NULL, '000000', 15, 50, 50, NULL, 20, 50, 50, 'default', NULL, 0, NULL, NULL, 'royal@example.com', NULL, 'Europe/Andorra', NULL, 0, '0', 0, '0', 0, '0', 0, '0', '2025-04-27 12:56:32', '2025-05-20 11:27:34'),
(78, 12345, 86, 'fa397862360a35d5383882ae4b0561e15e0d5065.png', '682044629249f.png', 1, 'shafi@example.com', 'Brelix Hotel', 'example@email.com', '00123456789', 'Los Angeles,California,Usa', '$', NULL, 'left', 'USD', 'right', '1.00', '0D97E6', 'FEA116', '0F172B', '0.76', 'shafi@example.com', 'Hotelia', 'ee70ca730a1a84dc899e1bfc91d1c4127015460f.png', 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 'e5bd5c920d2353e3720fc1ef0cc1f1fe3edbb872.png', '738632f50d620cd480a34fb577e3a7d8d8b5ed37.jpg', 1, 1, 1, 1, 'theme_four', 'static', 1, NULL, 1, 'https://tawk.to/chat/62d688ec7b967b11799a42ee/1g8b0do1h', 0, NULL, NULL, '', 0, '34.0549', '118.2426', 1, '4e696758e360ab9067c6490c8edb0994c2aca65c.gif', NULL, NULL, NULL, '000000', 250, 'square', 'square', 0, NULL, '000000', 15, 50, 50, NULL, 20, 50, 50, 'default', NULL, 0, NULL, NULL, 'shafi@example.com', '97852763742', 'Europe/Andorra', NULL, 0, '0', 0, '0', 0, '0', 0, '0', '2025-04-27 12:59:02', '2025-05-20 11:31:04'),
(79, 12345, 87, 'bf69180f77f8fbb9a7f8825bdd942b381767bcd4.png', '68204923d88c6.png', 1, 'tomas@example.com', 'trenzo hotel', 'example@email.com', '+00123456789', 'California, USA', '$', NULL, 'left', 'USD', 'right', '1.00', '4C64A4', '0F172B', '0F172B', '0.76', 'tomas@example.com', 'Hotelia', '4cb5165b9abe2fb214147d001ff3a61ff68f8c5a.png', 0, NULL, NULL, NULL, 0, NULL, NULL, NULL, NULL, NULL, 'ba29906053dbd22239a0527415e31aba4829dc25.png', '7c15b51dad9c6e96c5d050119812c75769bb9bf8.jpg', 1, 1, 1, 1, 'theme_five', 'static', 0, NULL, 1, 'https://tawk.to/chat/654f2647cec6a912820ed3aa/1heuir292', 0, NULL, NULL, '', 1, '23.87551462590731', '90.39261230329821', 1, '4ee023705b60e2c44b3758b6773cae471c990fd9.gif', NULL, NULL, NULL, '000000', 250, 'square', 'square', 0, NULL, '000000', 15, 50, 50, NULL, 20, 50, 50, 'default', NULL, 0, NULL, NULL, 'tomas@example.com', '+1 (305) 935-7855', 'Europe/Andorra', NULL, 0, '0', 0, '0', 0, '0', 0, '0', '2025-04-27 13:00:56', '2025-05-20 11:30:26');

-- --------------------------------------------------------

--
-- Table structure for table `user_blogs`
--

CREATE TABLE `user_blogs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `category_index` varchar(255) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `language_id` int(11) DEFAULT NULL,
  `image` varchar(255) NOT NULL,
  `serial_number` mediumint(8) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_blogs`
--

INSERT INTO `user_blogs` (`id`, `category_index`, `user_id`, `language_id`, `image`, `serial_number`, `created_at`, `updated_at`) VALUES
(24, '6815a50eeeb9f', 83, 132, '411340d1b5478876f1f0da599c32fe49818bfca0.jpg', 6, '2025-05-03 05:23:20', '2025-05-03 05:23:20'),
(25, '6815a50eeeb9f', 83, 132, '5a054dcf78b3dccddd5af2ea13f45a997796a087.jpg', 5, '2025-05-03 05:24:30', '2025-05-03 05:24:30'),
(26, '6815a522831f3', 83, 132, '8a1495c82d6a88e03832609c7239b222ae734ad0.jpg', 4, '2025-05-03 05:25:48', '2025-05-03 05:25:48'),
(27, '6815a522831f3', 83, 132, '5adb8343deba0032775a81bd1d82319eaa14f56a.jpg', 3, '2025-05-03 05:27:14', '2025-05-03 05:27:14'),
(28, '6815a52fb8329', 83, 132, 'ad388d34f769dd48d13de152bee6d2856eb997f0.jpg', 2, '2025-05-03 05:28:21', '2025-05-03 05:28:21'),
(29, '6815a52fb8329', 83, 132, '1761b6a37905b557893eecfea49e884c196ec9f7.jpg', 1, '2025-05-03 05:29:26', '2025-05-03 05:29:26'),
(30, '6815a50eeeb9f', 84, 134, '411340d1b5478876f1f0da599c32fe49818bfca0.jpg', 6, '2025-05-02 23:23:20', '2025-05-02 23:23:20'),
(31, '6815a50eeeb9f', 84, 134, '5a054dcf78b3dccddd5af2ea13f45a997796a087.jpg', 5, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(32, '6815a522831f3', 84, 134, '8a1495c82d6a88e03832609c7239b222ae734ad0.jpg', 4, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(33, '6815a522831f3', 84, 134, '5adb8343deba0032775a81bd1d82319eaa14f56a.jpg', 3, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(34, '6815a52fb8329', 84, 134, 'ad388d34f769dd48d13de152bee6d2856eb997f0.jpg', 2, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(35, '6815a52fb8329', 84, 134, '1761b6a37905b557893eecfea49e884c196ec9f7.jpg', 1, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(36, '6815a50eeeb9f', 85, 135, '411340d1b5478876f1f0da599c32fe49818bfca0.jpg', 6, '2025-05-02 23:23:20', '2025-05-02 23:23:20'),
(37, '6815a50eeeb9f', 85, 135, '5a054dcf78b3dccddd5af2ea13f45a997796a087.jpg', 5, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(38, '6815a522831f3', 85, 135, '8a1495c82d6a88e03832609c7239b222ae734ad0.jpg', 4, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(39, '6815a522831f3', 85, 135, '5adb8343deba0032775a81bd1d82319eaa14f56a.jpg', 3, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(40, '6815a52fb8329', 85, 135, 'ad388d34f769dd48d13de152bee6d2856eb997f0.jpg', 2, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(41, '6815a52fb8329', 85, 135, '1761b6a37905b557893eecfea49e884c196ec9f7.jpg', 1, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(42, '6815a50eeeb9f', 86, 138, '411340d1b5478876f1f0da599c32fe49818bfca0.jpg', 6, '2025-05-02 23:23:20', '2025-05-02 23:23:20'),
(43, '6815a50eeeb9f', 86, 138, '5a054dcf78b3dccddd5af2ea13f45a997796a087.jpg', 5, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(44, '6815a522831f3', 86, 138, '8a1495c82d6a88e03832609c7239b222ae734ad0.jpg', 4, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(45, '6815a522831f3', 86, 138, '5adb8343deba0032775a81bd1d82319eaa14f56a.jpg', 3, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(46, '6815a52fb8329', 86, 138, 'ad388d34f769dd48d13de152bee6d2856eb997f0.jpg', 2, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(47, '6815a52fb8329', 86, 138, '1761b6a37905b557893eecfea49e884c196ec9f7.jpg', 1, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(48, '6815a50eeeb9f', 87, 140, '411340d1b5478876f1f0da599c32fe49818bfca0.jpg', 6, '2025-05-02 23:23:20', '2025-05-02 23:23:20'),
(49, '6815a50eeeb9f', 87, 140, '5a054dcf78b3dccddd5af2ea13f45a997796a087.jpg', 5, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(50, '6815a522831f3', 87, 140, '8a1495c82d6a88e03832609c7239b222ae734ad0.jpg', 4, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(51, '6815a522831f3', 87, 140, '5adb8343deba0032775a81bd1d82319eaa14f56a.jpg', 3, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(52, '6815a52fb8329', 87, 140, 'ad388d34f769dd48d13de152bee6d2856eb997f0.jpg', 2, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(53, '6815a52fb8329', 87, 140, '1761b6a37905b557893eecfea49e884c196ec9f7.jpg', 1, '2025-05-02 23:29:26', '2025-05-02 23:29:26');

-- --------------------------------------------------------

--
-- Table structure for table `user_blog_categories`
--

CREATE TABLE `user_blog_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `slug` varchar(255) DEFAULT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL,
  `indx` varchar(255) DEFAULT NULL,
  `serial_number` mediumint(8) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_blog_categories`
--

INSERT INTO `user_blog_categories` (`id`, `language_id`, `user_id`, `name`, `slug`, `status`, `indx`, `serial_number`, `created_at`, `updated_at`) VALUES
(44, 132, 83, 'Vacations', 'vacations', 1, '6815a50eeeb9f', 3, '2025-05-03 05:09:34', '2025-05-03 05:09:34'),
(45, 133, 83, 'فخم. ترف', 'فخم.-ترف', 1, '6815a50eeeb9f', 3, '2025-05-03 05:09:34', '2025-05-03 05:20:08'),
(46, 132, 83, 'Tour Places', 'tour-places', 1, '6815a522831f3', 2, '2025-05-03 05:09:54', '2025-05-03 05:09:54'),
(47, 133, 83, 'الأماكن السياحية', 'الأماكن-السياحية', 1, '6815a522831f3', 2, '2025-05-03 05:09:54', '2025-05-03 05:20:21'),
(48, 132, 83, 'Luxury', 'luxury', 1, '6815a52fb8329', 3, '2025-05-03 05:10:07', '2025-05-03 05:10:07'),
(49, 133, 83, 'الاجازات', 'الاجازات', 1, '6815a52fb8329', 3, '2025-05-03 05:10:07', '2025-05-03 05:20:30'),
(50, 134, 84, 'Vacations', 'vacations', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:09:34'),
(51, 135, 84, 'فخم. ترف', 'فخم.-ترف', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:20:08'),
(52, 134, 84, 'Tour Places', 'tour-places', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:09:54'),
(53, 135, 84, 'الأماكن السياحية', 'الأماكن-السياحية', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:20:21'),
(54, 134, 84, 'Luxury', 'luxury', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:10:07'),
(55, 135, 84, 'الاجازات', 'الاجازات', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:20:30'),
(56, 136, 85, 'Vacations', 'vacations', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:09:34'),
(57, 137, 85, 'فخم. ترف', 'فخم.-ترف', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:20:08'),
(58, 136, 85, 'Tour Places', 'tour-places', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:09:54'),
(59, 137, 85, 'الأماكن السياحية', 'الأماكن-السياحية', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:20:21'),
(60, 136, 85, 'Luxury', 'luxury', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:10:07'),
(61, 137, 85, 'الاجازات', 'الاجازات', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:20:30'),
(62, 138, 86, 'Vacations', 'vacations', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:09:34'),
(63, 139, 86, 'فخم. ترف', 'فخم.-ترف', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:20:08'),
(64, 138, 86, 'Tour Places', 'tour-places', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:09:54'),
(65, 139, 86, 'الأماكن السياحية', 'الأماكن-السياحية', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:20:21'),
(66, 138, 86, 'Luxury', 'luxury', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:10:07'),
(67, 139, 86, 'الاجازات', 'الاجازات', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:20:30'),
(68, 140, 87, 'Vacations', 'vacations', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:09:34'),
(69, 141, 87, 'فخم. ترف', 'فخم.-ترف', 1, '6815a50eeeb9f', 3, '2025-05-02 23:09:34', '2025-05-02 23:20:08'),
(70, 140, 87, 'Tour Places', 'tour-places', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:09:54'),
(71, 141, 87, 'الأماكن السياحية', 'الأماكن-السياحية', 1, '6815a522831f3', 2, '2025-05-02 23:09:54', '2025-05-02 23:20:21'),
(72, 140, 87, 'Luxury', 'luxury', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:10:07'),
(73, 141, 87, 'الاجازات', 'الاجازات', 1, '6815a52fb8329', 3, '2025-05-02 23:10:07', '2025-05-02 23:20:30');

-- --------------------------------------------------------

--
-- Table structure for table `user_blog_informations`
--

CREATE TABLE `user_blog_informations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `blog_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `author` varchar(255) NOT NULL,
  `content` blob NOT NULL,
  `meta_keywords` varchar(255) DEFAULT NULL,
  `meta_description` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_blog_informations`
--

INSERT INTO `user_blog_informations` (`id`, `language_id`, `user_id`, `blog_id`, `title`, `slug`, `author`, `content`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(36, 132, 83, 24, 'Top 10 Things to Do in Melbourne With Kids', 'top-10-things-to-do-in-melbourne-with-kids', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:23:22', '2025-05-03 05:23:22'),
(37, 133, 83, 24, 'أهم 10 أشياء يمكنك القيام بها في ملبورن مع الأطفال', 'أهم-10-أشياء-يمكنك-القيام-بها-في-ملبورن-مع-الأطفال', 'الأطفال', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:23:22', '2025-05-03 05:23:22'),
(38, 132, 83, 25, 'Unique Travel Ideas That Don’t Involve a Hotel', 'unique-travel-ideas-that-don’t-involve-a-hotel', 'Kylies', 0x3c703e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:24:30', '2025-05-03 05:24:30'),
(39, 133, 83, 25, 'أفكار سفر فريدة لا تتضمن فندقًا', 'أفكار-سفر-فريدة-لا-تتضمن-فندقًا', 'فندقًا', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:24:30', '2025-05-03 05:24:30'),
(40, 132, 83, 26, 'The Best Beaches in the Philippines', 'the-best-beaches-in-the-philippines', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:25:48', '2025-05-03 05:25:48'),
(41, 133, 83, 26, 'أفضل الشواطئ في الفلبين', 'أفضل-الشواطئ-في-الفلبين', 'القدم', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:25:48', '2025-05-03 05:25:48'),
(42, 132, 83, 27, '5 Of the Best Places to Spend your Family Holiday in 2021', '5-of-the-best-places-to-spend-your-family-holiday-in-2021', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:27:14', '2025-05-03 05:27:14'),
(43, 133, 83, 27, '5 من أفضل الأماكن لقضاء إجازة عائلتك في عام 2021', '5-من-أفضل-الأماكن-لقضاء-إجازة-عائلتك-في-عام-2021', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:27:14', '2025-05-03 05:27:14'),
(44, 132, 83, 28, 'World’s Best Virgin Pina Colada Recipe!', 'world’s-best-virgin-pina-colada-recipe!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:28:21', '2025-05-03 05:28:21'),
(45, 133, 83, 28, 'أفضل وصفة في العالم لفيرجن بينا كولادا!', 'أفضل-وصفة-في-العالم-لفيرجن-بينا-كولادا!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:28:21', '2025-05-03 05:28:21'),
(46, 132, 83, 29, 'IT’S HERE: The Hotel Chocolat Easter Range 2021!', 'it’s-here:-the-hotel-chocolat-easter-range-2021!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-03 05:29:26', '2025-05-03 05:29:26'),
(47, 133, 83, 29, 'إنه هنا: فندق شوكولاتة عيد الفصح 2021!', 'إنه-هنا:-فندق-شوكولاتة-عيد-الفصح-2021!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-03 05:29:26', '2025-05-03 05:29:26'),
(48, 134, 84, 30, 'Top 10 Things to Do in Melbourne With Kids', 'top-10-things-to-do-in-melbourne-with-kids', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(49, 135, 84, 30, 'أهم 10 أشياء يمكنك القيام بها في ملبورن مع الأطفال', 'أهم-10-أشياء-يمكنك-القيام-بها-في-ملبورن-مع-الأطفال', 'الأطفال', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(50, 134, 84, 31, 'Unique Travel Ideas That Don’t Involve a Hotel', 'unique-travel-ideas-that-don’t-involve-a-hotel', 'Kylies', 0x3c703e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(51, 135, 84, 31, 'أفكار سفر فريدة لا تتضمن فندقًا', 'أفكار-سفر-فريدة-لا-تتضمن-فندقًا', 'فندقًا', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(52, 134, 84, 32, 'The Best Beaches in the Philippines', 'the-best-beaches-in-the-philippines', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(53, 135, 84, 32, 'أفضل الشواطئ في الفلبين', 'أفضل-الشواطئ-في-الفلبين', 'القدم', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(54, 134, 84, 33, '5 Of the Best Places to Spend your Family Holiday in 2021', '5-of-the-best-places-to-spend-your-family-holiday-in-2021', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(55, 135, 84, 33, '5 من أفضل الأماكن لقضاء إجازة عائلتك في عام 2021', '5-من-أفضل-الأماكن-لقضاء-إجازة-عائلتك-في-عام-2021', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14');
INSERT INTO `user_blog_informations` (`id`, `language_id`, `user_id`, `blog_id`, `title`, `slug`, `author`, `content`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(56, 134, 84, 34, 'World’s Best Virgin Pina Colada Recipe!', 'world’s-best-virgin-pina-colada-recipe!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(57, 135, 84, 34, 'أفضل وصفة في العالم لفيرجن بينا كولادا!', 'أفضل-وصفة-في-العالم-لفيرجن-بينا-كولادا!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(58, 134, 84, 35, 'IT’S HERE: The Hotel Chocolat Easter Range 2021!', 'it’s-here:-the-hotel-chocolat-easter-range-2021!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(59, 135, 84, 35, 'إنه هنا: فندق شوكولاتة عيد الفصح 2021!', 'إنه-هنا:-فندق-شوكولاتة-عيد-الفصح-2021!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(60, 136, 85, 36, 'Top 10 Things to Do in Melbourne With Kids', 'top-10-things-to-do-in-melbourne-with-kids', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(61, 137, 85, 36, 'أهم 10 أشياء يمكنك القيام بها في ملبورن مع الأطفال', 'أهم-10-أشياء-يمكنك-القيام-بها-في-ملبورن-مع-الأطفال', 'الأطفال', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(62, 136, 85, 37, 'Unique Travel Ideas That Don’t Involve a Hotel', 'unique-travel-ideas-that-don’t-involve-a-hotel', 'Kylies', 0x3c703e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(63, 137, 85, 37, 'أفكار سفر فريدة لا تتضمن فندقًا', 'أفكار-سفر-فريدة-لا-تتضمن-فندقًا', 'فندقًا', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(64, 136, 85, 38, 'The Best Beaches in the Philippines', 'the-best-beaches-in-the-philippines', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(65, 137, 85, 38, 'أفضل الشواطئ في الفلبين', 'أفضل-الشواطئ-في-الفلبين', 'القدم', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(66, 136, 85, 39, '5 Of the Best Places to Spend your Family Holiday in 2021', '5-of-the-best-places-to-spend-your-family-holiday-in-2021', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(67, 137, 85, 39, '5 من أفضل الأماكن لقضاء إجازة عائلتك في عام 2021', '5-من-أفضل-الأماكن-لقضاء-إجازة-عائلتك-في-عام-2021', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(68, 136, 85, 40, 'World’s Best Virgin Pina Colada Recipe!', 'world’s-best-virgin-pina-colada-recipe!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(69, 137, 85, 40, 'أفضل وصفة في العالم لفيرجن بينا كولادا!', 'أفضل-وصفة-في-العالم-لفيرجن-بينا-كولادا!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(70, 136, 85, 41, 'IT’S HERE: The Hotel Chocolat Easter Range 2021!', 'it’s-here:-the-hotel-chocolat-easter-range-2021!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(71, 137, 85, 41, 'إنه هنا: فندق شوكولاتة عيد الفصح 2021!', 'إنه-هنا:-فندق-شوكولاتة-عيد-الفصح-2021!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(72, 138, 86, 42, 'Top 10 Things to Do in Melbourne With Kids', 'top-10-things-to-do-in-melbourne-with-kids', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(73, 139, 86, 42, 'أهم 10 أشياء يمكنك القيام بها في ملبورن مع الأطفال', 'أهم-10-أشياء-يمكنك-القيام-بها-في-ملبورن-مع-الأطفال', 'الأطفال', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(74, 138, 86, 43, 'Unique Travel Ideas That Don’t Involve a Hotel', 'unique-travel-ideas-that-don’t-involve-a-hotel', 'Kylies', 0x3c703e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(75, 139, 86, 43, 'أفكار سفر فريدة لا تتضمن فندقًا', 'أفكار-سفر-فريدة-لا-تتضمن-فندقًا', 'فندقًا', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30');
INSERT INTO `user_blog_informations` (`id`, `language_id`, `user_id`, `blog_id`, `title`, `slug`, `author`, `content`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(76, 138, 86, 44, 'The Best Beaches in the Philippines', 'the-best-beaches-in-the-philippines', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(77, 139, 86, 44, 'أفضل الشواطئ في الفلبين', 'أفضل-الشواطئ-في-الفلبين', 'القدم', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(78, 138, 86, 45, '5 Of the Best Places to Spend your Family Holiday in 2021', '5-of-the-best-places-to-spend-your-family-holiday-in-2021', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(79, 139, 86, 45, '5 من أفضل الأماكن لقضاء إجازة عائلتك في عام 2021', '5-من-أفضل-الأماكن-لقضاء-إجازة-عائلتك-في-عام-2021', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(80, 138, 86, 46, 'World’s Best Virgin Pina Colada Recipe!', 'world’s-best-virgin-pina-colada-recipe!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(81, 139, 86, 46, 'أفضل وصفة في العالم لفيرجن بينا كولادا!', 'أفضل-وصفة-في-العالم-لفيرجن-بينا-كولادا!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(82, 138, 86, 47, 'IT’S HERE: The Hotel Chocolat Easter Range 2021!', 'it’s-here:-the-hotel-chocolat-easter-range-2021!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(83, 139, 86, 47, 'إنه هنا: فندق شوكولاتة عيد الفصح 2021!', 'إنه-هنا:-فندق-شوكولاتة-عيد-الفصح-2021!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(84, 140, 87, 48, 'Top 10 Things to Do in Melbourne With Kids', 'top-10-things-to-do-in-melbourne-with-kids', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(85, 141, 87, 48, 'أهم 10 أشياء يمكنك القيام بها في ملبورن مع الأطفال', 'أهم-10-أشياء-يمكنك-القيام-بها-في-ملبورن-مع-الأطفال', 'الأطفال', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:23:22', '2025-05-02 23:23:22'),
(86, 140, 87, 49, 'Unique Travel Ideas That Don’t Involve a Hotel', 'unique-travel-ideas-that-don’t-involve-a-hotel', 'Kylies', 0x3c703e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(87, 141, 87, 49, 'أفكار سفر فريدة لا تتضمن فندقًا', 'أفكار-سفر-فريدة-لا-تتضمن-فندقًا', 'فندقًا', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:24:30', '2025-05-02 23:24:30'),
(88, 140, 87, 50, 'The Best Beaches in the Philippines', 'the-best-beaches-in-the-philippines', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(89, 141, 87, 50, 'أفضل الشواطئ في الفلبين', 'أفضل-الشواطئ-في-الفلبين', 'القدم', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:25:48', '2025-05-02 23:25:48'),
(90, 140, 87, 51, '5 Of the Best Places to Spend your Family Holiday in 2021', '5-of-the-best-places-to-spend-your-family-holiday-in-2021', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(91, 141, 87, 51, '5 من أفضل الأماكن لقضاء إجازة عائلتك في عام 2021', '5-من-أفضل-الأماكن-لقضاء-إجازة-عائلتك-في-عام-2021', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:27:14', '2025-05-02 23:27:14'),
(92, 140, 87, 52, 'World’s Best Virgin Pina Colada Recipe!', 'world’s-best-virgin-pina-colada-recipe!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(93, 141, 87, 52, 'أفضل وصفة في العالم لفيرجن بينا كولادا!', 'أفضل-وصفة-في-العالم-لفيرجن-بينا-كولادا!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:28:21', '2025-05-02 23:28:21'),
(94, 140, 87, 53, 'IT’S HERE: The Hotel Chocolat Easter Range 2021!', 'it’s-here:-the-hotel-chocolat-easter-range-2021!', 'Kylies', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223e546865726520617265206d616e7920766172696174696f6e73206f66207061737361676573206f66204c6f72656d20497073756d20617661696c61626c652c2062757420746865206d616a6f72697479206861766520737566666572656420616c7465726174696f6e20696e20736f6d6520666f726d2c20627920696e6a65637465642068756d6f75722c206f722072616e646f6d6973656420776f72647320776869636820646f6e2774206c6f6f6b206576656e20736c696768746c792062656c69657661626c652e20496620796f752061726520676f696e6720746f2075736520612070617373616765206f66204c6f72656d20497073756d2c20796f75206e65656420746f20626520737572652074686572652069736e277420616e797468696e6720656d62617272617373696e672068696464656e20696e20746865206d6964646c65206f6620746578742e20416c6c20746865204c6f72656d20497073756d2067656e657261746f7273206f6e2074686520496e7465726e65742074656e6420746f2072657065617420707265646566696e6564206368756e6b73206173206e65636573736172792c206d616b696e6720746869732074686520666972737420747275652067656e657261746f72206f6e2074686520496e7465726e65742e204974207573657320612064696374696f6e617279206f66206f76657220323030204c6174696e20776f7264732c20636f6d62696e6564207769746820612068616e6466756c206f66206d6f64656c2073656e74656e636520737472756374757265732c20746f2067656e6572617465204c6f72656d20497073756d207768696368206c6f6f6b7320726561736f6e61626c652e205468652067656e657261746564204c6f72656d20497073756d206973207468657265666f726520616c7761797320667265652066726f6d2072657065746974696f6e2c20696e6a65637465642068756d6f75722c206f72206e6f6e2d636861726163746572697374696320776f726473206574632e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26'),
(95, 141, 87, 53, 'إنه هنا: فندق شوكولاتة عيد الفصح 2021!', 'إنه-هنا:-فندق-شوكولاتة-عيد-الفصح-2021!', 'مودريتش', 0x3c70207374796c653d22746578742d616c69676e3a6a7573746966793b666f6e742d66616d696c793a274f70656e2053616e73272c20417269616c2c2073616e732d73657269663b223ed8aed984d8a7d981d8a7d98e20d984d984d8a5d8b9d8aad982d8a7d8af20d8a7d984d8b3d8a7d8a6d8af20d981d8a5d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d984d98ad8b320d986d8b5d8a7d98e20d8b9d8b4d988d8a7d8a6d98ad8a7d98bd88c20d8a8d98420d8a5d98620d984d98720d8acd8b0d988d8b120d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d984d983d984d8a7d8b3d98ad983d98a20d985d986d8b020d8a7d984d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8afd88c20d985d985d8a720d98ad8acd8b9d984d98720d8a3d983d8abd8b120d985d986203230303020d8b9d8a7d98520d981d98a20d8a7d984d982d8afd9852e20d982d8a7d98520d8a7d984d8a8d8b1d988d981d98ad8b3d988d8b12022d8b1d98ad8aad8b4d8a7d8b1d8af20d985d8a7d98320d984d98ad986d8aad988d98322202852696368617264204d63436c696e746f636b2920d988d987d98820d8a8d8b1d988d981d98ad8b3d988d8b120d8a7d984d984d8bad8a920d8a7d984d984d8a7d8aad98ad986d98ad8a920d981d98a20d8acd8a7d985d8b9d8a920d987d8a7d985d8a8d8afd9862dd8b3d98ad8afd986d98a20d981d98a20d981d98ad8b1d8acd98ad986d98ad8a720d8a8d8a7d984d8a8d8add8ab20d8b9d98620d8a3d8b5d988d98420d983d984d985d8a920d984d8a7d8aad98ad986d98ad8a920d8bad8a7d985d8b6d8a920d981d98a20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d988d987d98a2022636f6e736563746574757222d88c20d988d8aed984d8a7d98420d8aad8aad8a8d8b9d98720d984d987d8b0d98720d8a7d984d983d984d985d8a920d981d98a20d8a7d984d8a3d8afd8a820d8a7d984d984d8a7d8aad98ad986d98a20d8a7d983d8aad8b4d98120d8a7d984d985d8b5d8afd8b120d8a7d984d8bad98ad8b120d982d8a7d8a8d98420d984d984d8b4d9832e20d981d984d982d8af20d8a7d8aad8b6d8ad20d8a3d98620d983d984d985d8a7d8aa20d986d8b520d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520d8aad8a3d8aad98a20d985d98620d8a7d984d8a3d982d8b3d8a7d98520312e31302e333220d98820312e31302e333320d985d98620d983d8aad8a7d8a82022d8add988d98420d8a3d982d8a7d8b5d98a20d8a7d984d8aed98ad8b120d988d8a7d984d8b4d8b122202864652046696e6962757320426f6e6f72756d206574204d616c6f72756d2920d984d984d985d981d983d8b120d8b4d98ad8b4d98ad8b1d988d986202843696365726f2920d988d8a7d984d8b0d98a20d983d8aad8a8d98720d981d98a20d8b9d8a7d98520343520d982d8a8d98420d8a7d984d985d98ad984d8a7d8af2e20d987d8b0d8a720d8a7d984d983d8aad8a7d8a820d987d98820d8a8d985d8abd8a7d8a8d8a920d985d982d8a7d984d8a920d8b9d984d985d98ad8a920d985d8b7d988d984d8a920d981d98a20d986d8b8d8b1d98ad8a920d8a7d984d8a3d8aed984d8a7d982d88c20d988d983d8a7d98620d984d98720d8b4d8b9d8a8d98ad8a920d983d8a8d98ad8b1d8a920d981d98a20d8b9d8b5d8b120d8a7d984d986d987d8b6d8a92e20d8a7d984d8b3d8b7d8b120d8a7d984d8a3d988d98420d985d98620d984d988d8b1d98ad98520d8a5d98ad8a8d8b3d988d98520224c6f72656d20697073756d20646f6c6f722073697420616d65742e2e2220d98ad8a3d8aad98a20d985d98620d8b3d8b7d8b120d981d98a20d8a7d984d982d8b3d98520312e32302e333220d985d98620d987d8b0d8a720d8a7d984d983d8aad8a7d8a82e3c2f703e, NULL, NULL, '2025-05-02 23:29:26', '2025-05-02 23:29:26');

-- --------------------------------------------------------

--
-- Table structure for table `user_brands`
--

CREATE TABLE `user_brands` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `brand_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `brand_url` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_brands`
--

INSERT INTO `user_brands` (`id`, `language_id`, `user_id`, `brand_img`, `brand_url`, `serial_number`, `created_at`, `updated_at`) VALUES
(25, 132, 83, 'e4681b4545beb53b6422730fcac442842aa180e6.png', 'https://www.example.com', 1, '2025-04-28 11:26:31', '2025-05-10 12:11:26'),
(26, 132, 83, 'b57c5ae0dc86a1806f50dac6bd8eda2b957465bf.png', 'https://www.example.com', 2, '2025-04-28 11:26:40', '2025-05-10 12:11:21'),
(27, 132, 83, '6d9cb449f374d41da13c17daba2903af7e61065b.png', 'https://www.example.com', 3, '2025-04-28 11:27:13', '2025-05-10 12:11:16'),
(28, 132, 83, '023614b268ae777a4cc7b7de8f31d0e8f14c8742.png', 'https://www.example.com', 4, '2025-04-28 11:27:22', '2025-05-10 12:10:29'),
(29, 132, 83, '997e1797b79fda069311faa5b632e4892818153b.png', 'https://www.example.com', 5, '2025-04-28 11:27:30', '2025-05-10 12:10:17'),
(30, 132, 83, 'a12d154e22120768496005ddbac52f626638b0dc.png', 'https://www.example.com', 6, '2025-04-28 11:27:47', '2025-05-10 12:10:11'),
(31, 132, 83, '6f6df300cb90c8c331dd06ff897fadb194f7a44a.png', 'https://www.example.com', 7, '2025-04-28 11:28:38', '2025-05-10 12:10:05'),
(32, 133, 83, '3c1fde3a4854045efdf9c807fc92ce9a5451dcdc.png', 'https://www.example.com', 1, '2025-04-28 11:26:31', '2025-05-11 08:59:23'),
(33, 133, 83, '271573570ecd9117247ae7b47a890f502b74f3c6.png', 'https://www.example.com', 2, '2025-04-28 11:26:40', '2025-05-11 08:59:17'),
(34, 133, 83, '576ba02ed4439e3edd99ce2be505c592847a9ba4.png', 'https://www.example.com', 3, '2025-04-28 11:27:13', '2025-05-11 08:59:11'),
(35, 133, 83, '1d143d029ff93f9f4c410914020d309bcdbe9e80.png', 'https://www.example.com', 4, '2025-04-28 11:27:22', '2025-05-11 08:59:06'),
(36, 133, 83, '2091a5579e1fd96b0331183dba94f1622bbde641.png', 'https://www.example.com', 5, '2025-04-28 11:27:30', '2025-05-11 08:58:59'),
(37, 133, 83, '766ee8bc0582f77b91805456a5e2dfa00a1a58d4.png', 'https://www.example.com', 6, '2025-04-28 11:27:47', '2025-05-11 08:58:53'),
(38, 133, 83, '36411a9812a09a5888bc4863bfc839dd4074cfd6.png', 'https://www.example.com', 7, '2025-04-28 11:28:38', '2025-05-11 08:58:46'),
(39, 134, 84, '58d7d7e8470468d163cce68cf06bc9c57a8578d9.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-05-11 05:41:55'),
(40, 134, 84, 'dde2bdd0948fffecd3e800bbbf196a9a896e2723.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-05-11 05:41:50'),
(41, 134, 84, '07fee6483a33eff7b610aa3526a97d3b27ecd589.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-05-11 05:41:43'),
(42, 134, 84, 'ee20061d055579e21d46152a5dc04264cadb97be.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-05-11 05:41:38'),
(43, 134, 84, 'c3d559eeaa5c5eedcbb6ef952efdb50830130a4e.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-05-11 05:41:31'),
(44, 134, 84, '0ba843aafa1b69a466ba3c7ab51179245bd8c4f2.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-05-11 05:41:24'),
(45, 134, 84, 'ffd5140c43aec914367cf1aaf7450d9e7f82b77b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-05-11 05:41:17'),
(46, 135, 84, '23aa02b2b5ff158de91dac631d8a9ca1fe69dbd9.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-05-11 05:47:42'),
(47, 135, 84, 'cd4837f477b8fddd53598620438aac6a1ffb544b.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-05-11 05:47:36'),
(48, 135, 84, '15234fd75f6d1cbd8657f1615381f8fd70e7e5c7.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-05-11 05:47:31'),
(49, 135, 84, '03eb724fa306cb4ff1062093df76110530ef038c.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-05-11 05:47:26'),
(50, 135, 84, 'cd075c12d4f4900b438c435f47118b58f3838611.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-05-11 05:47:20'),
(51, 135, 84, '93671fd07a9814f857fb7db734e2c3b42c541e9a.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-05-11 05:47:13'),
(52, 135, 84, '6803aca504644e3637c0977fbd95125d49c2be4b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-05-11 05:47:08'),
(67, 136, 85, 'd8f5cbba8203fb50ab5771d8427f45aa371929ea.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-04-28 05:26:31'),
(68, 136, 85, 'e5e5d8a9e9b09d50f81a05363be466f82a10b067.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-04-28 05:26:40'),
(69, 136, 85, 'cc297dba80bc7d884ecb406308c3ea6352681e8f.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-04-28 05:27:13'),
(70, 136, 85, 'c0cffea9b59251065d625803983d5f0e8283de72.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-04-28 05:27:22'),
(71, 136, 85, '0a29c12a1bd84fe67d1e0eb565c2c89bb4e8e878.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-04-28 05:27:30'),
(72, 136, 85, 'ca4ece500ddcc56bbf9e77eb00a4fcb873ddaf20.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-04-28 05:27:47'),
(73, 136, 85, '8fd1daf2d4ca12b7d58a0b79250ec65595a5288b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-04-28 05:28:38'),
(74, 137, 85, 'd8f5cbba8203fb50ab5771d8427f45aa371929ea.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-04-28 05:26:31'),
(75, 137, 85, 'e5e5d8a9e9b09d50f81a05363be466f82a10b067.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-04-28 05:26:40'),
(76, 137, 85, 'cc297dba80bc7d884ecb406308c3ea6352681e8f.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-04-28 05:27:13'),
(77, 137, 85, 'c0cffea9b59251065d625803983d5f0e8283de72.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-04-28 05:27:22'),
(78, 137, 85, '0a29c12a1bd84fe67d1e0eb565c2c89bb4e8e878.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-04-28 05:27:30'),
(79, 137, 85, 'ca4ece500ddcc56bbf9e77eb00a4fcb873ddaf20.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-04-28 05:27:47'),
(80, 137, 85, '8fd1daf2d4ca12b7d58a0b79250ec65595a5288b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-04-28 05:28:38'),
(81, 138, 86, 'd8f5cbba8203fb50ab5771d8427f45aa371929ea.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-04-28 05:26:31'),
(82, 138, 86, 'e5e5d8a9e9b09d50f81a05363be466f82a10b067.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-04-28 05:26:40'),
(83, 138, 86, 'cc297dba80bc7d884ecb406308c3ea6352681e8f.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-04-28 05:27:13'),
(84, 138, 86, 'c0cffea9b59251065d625803983d5f0e8283de72.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-04-28 05:27:22'),
(85, 138, 86, '0a29c12a1bd84fe67d1e0eb565c2c89bb4e8e878.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-04-28 05:27:30'),
(86, 138, 86, 'ca4ece500ddcc56bbf9e77eb00a4fcb873ddaf20.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-04-28 05:27:47'),
(87, 138, 86, '8fd1daf2d4ca12b7d58a0b79250ec65595a5288b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-04-28 05:28:38'),
(88, 139, 86, 'd8f5cbba8203fb50ab5771d8427f45aa371929ea.png', 'https://www.example.com', 1, '2025-04-28 05:26:31', '2025-04-28 05:26:31'),
(89, 139, 86, 'e5e5d8a9e9b09d50f81a05363be466f82a10b067.png', 'https://www.example.com', 2, '2025-04-28 05:26:40', '2025-04-28 05:26:40'),
(90, 139, 86, 'cc297dba80bc7d884ecb406308c3ea6352681e8f.png', 'https://www.example.com', 3, '2025-04-28 05:27:13', '2025-04-28 05:27:13'),
(91, 139, 86, 'c0cffea9b59251065d625803983d5f0e8283de72.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-04-28 05:27:22'),
(92, 139, 86, '0a29c12a1bd84fe67d1e0eb565c2c89bb4e8e878.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-04-28 05:27:30'),
(93, 139, 86, 'ca4ece500ddcc56bbf9e77eb00a4fcb873ddaf20.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-04-28 05:27:47'),
(94, 139, 86, '8fd1daf2d4ca12b7d58a0b79250ec65595a5288b.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-04-28 05:28:38'),
(98, 141, 87, '830aed3668427a9029122cfa91e9e3d5cb21209b.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-05-08 13:03:01'),
(99, 141, 87, '09feaf7a8429afb5cf7ba774e7f64c1e91b52e82.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-05-08 13:02:55'),
(100, 141, 87, 'c79f6a8f6894119bf2bac1139d394707345c27ee.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-05-08 13:02:51'),
(101, 141, 87, 'd70636959a26975af6ee9648f7443ac12b12142a.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-05-08 13:02:45'),
(105, 140, 87, '7b843495f544cd253d13dd05fb01304df12d4681.png', 'https://www.example.com', 4, '2025-04-28 05:27:22', '2025-05-08 12:56:35'),
(106, 140, 87, '026c4703a2044824793c357b7c6037277f0acfcf.png', 'https://www.example.com', 5, '2025-04-28 05:27:30', '2025-05-08 12:56:29'),
(107, 140, 87, 'a2c0ca44fea26d40b54e534ec7388d1d72a2c8a0.png', 'https://www.example.com', 6, '2025-04-28 05:27:47', '2025-05-08 12:56:22'),
(108, 140, 87, 'd5bf962068c7450506b346bea43c1b513a587a5a.png', 'https://www.example.com', 7, '2025-04-28 05:28:38', '2025-05-08 12:56:15');

-- --------------------------------------------------------

--
-- Table structure for table `user_conversations`
--

CREATE TABLE `user_conversations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `ticket_id` int(11) DEFAULT NULL,
  `reply` text COLLATE utf8_unicode_ci,
  `file` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_count_informations`
--

CREATE TABLE `user_count_informations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `color` varchar(255) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `amount` int(10) UNSIGNED NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_coupons`
--

CREATE TABLE `user_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) NOT NULL,
  `code` varchar(255) NOT NULL,
  `type` varchar(255) NOT NULL,
  `value` decimal(8,2) UNSIGNED NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `courses` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_custom_domains`
--

CREATE TABLE `user_custom_domains` (
  `id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `requested_domain` varchar(255) DEFAULT NULL,
  `current_domain` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL COMMENT '0 - Pending, 1 - Connected, 2 - Rejected, 3 - Removed',
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_facilities`
--

CREATE TABLE `user_facilities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `facility_icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `facility_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `facility_text` text COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_facilities`
--

INSERT INTO `user_facilities` (`id`, `language_id`, `user_id`, `facility_icon`, `facility_title`, `facility_text`, `created_at`, `updated_at`) VALUES
(18, 132, 83, 'fas fa-bed', 'Relex Living', 'Dreat explorer of the truth, the master-builder of human happines one rejects, dislikes avoids', '2025-04-28 11:35:21', '2025-04-28 11:35:21'),
(19, 132, 83, 'fas fa-shield-alt', 'High Security System', 'Procure him some great pleasure. To take a trivial example, which of us ever undertakes labor', '2025-04-28 11:35:47', '2025-04-28 11:35:47'),
(20, 132, 83, 'fas fa-calendar-alt', 'Such Events & Party', 'Libero tempore, cum soluta nobis est eligenoptio cumque nihil impedit quo minus id quod', '2025-04-28 11:36:12', '2025-04-28 11:36:12'),
(21, 133, 83, 'fas fa-calendar-alt', 'مثل هذه الأحداث والحفلات', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 06:09:26', '2025-05-08 06:09:26'),
(22, 133, 83, 'fas fa-shield-alt', 'نظام أمان عالي', 'أجلب له بعض السعادة الكبيرة. لنأخذ مثالا تافها ، أي منا يقوم بالعمل', '2025-05-08 06:10:04', '2025-05-08 06:10:04'),
(23, 133, 83, 'fa fa-fw fa-heart iconpicker-component', 'ريليكس ليفينج', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 06:11:03', '2025-05-08 06:11:03'),
(24, 138, 86, 'fas fa-bed', 'Relex Living', 'Dreat explorer of the truth, the master-builder of human happines one rejects, dislikes avoids', '2025-04-28 05:35:21', '2025-04-28 05:35:21'),
(25, 138, 86, 'fas fa-shield-alt', 'High Security System', 'Procure him some great pleasure. To take a trivial example, which of us ever undertakes labor', '2025-04-28 05:35:47', '2025-04-28 05:35:47'),
(26, 138, 86, 'fas fa-calendar-alt', 'Such Events & Party', 'Libero tempore, cum soluta nobis est eligenoptio cumque nihil impedit quo minus id quod', '2025-04-28 05:36:12', '2025-04-28 05:36:12'),
(27, 139, 86, 'fas fa-calendar-alt', 'مثل هذه الأحداث والحفلات', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 00:09:26', '2025-05-08 00:09:26'),
(28, 139, 86, 'fas fa-shield-alt', 'نظام أمان عالي', 'أجلب له بعض السعادة الكبيرة. لنأخذ مثالا تافها ، أي منا يقوم بالعمل', '2025-05-08 00:10:04', '2025-05-08 00:10:04'),
(29, 139, 86, 'fa fa-fw fa-heart iconpicker-component', 'ريليكس ليفينج', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 00:11:03', '2025-05-08 00:11:03'),
(30, 140, 87, 'fas fa-bed', 'Relex Living', 'Dreat explorer of the truth, the master-builder of human happines one rejects, dislikes avoids', '2025-04-28 05:35:21', '2025-04-28 05:35:21'),
(31, 140, 87, 'fas fa-shield-alt', 'High Security System', 'Procure him some great pleasure. To take a trivial example, which of us ever undertakes labor', '2025-04-28 05:35:47', '2025-04-28 05:35:47'),
(32, 140, 87, 'fas fa-calendar-alt', 'Such Events & Party', 'Libero tempore, cum soluta nobis est eligenoptio cumque nihil impedit quo minus id quod', '2025-04-28 05:36:12', '2025-04-28 05:36:12'),
(33, 141, 87, 'fas fa-calendar-alt', 'مثل هذه الأحداث والحفلات', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 00:09:26', '2025-05-08 00:09:26'),
(34, 141, 87, 'fas fa-shield-alt', 'نظام أمان عالي', 'أجلب له بعض السعادة الكبيرة. لنأخذ مثالا تافها ، أي منا يقوم بالعمل', '2025-05-08 00:10:04', '2025-05-08 00:10:04'),
(35, 141, 87, 'fa fa-fw fa-heart iconpicker-component', 'ريليكس ليفينج', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-08 00:11:03', '2025-05-08 00:11:03'),
(36, 134, 84, 'fas fa-calendar', 'Such Events & Party', 'Libero tempore, cum soluta nobis est eligenoptio cumque nihil impedit quo minus id quod', '2025-05-19 06:50:27', '2025-05-19 06:50:27'),
(37, 134, 84, 'fas fa-shield-alt', 'High Security System', 'Procure him some great pleasure. To take a trivial example, which of us ever undertakes labor', '2025-05-19 06:51:16', '2025-05-19 06:51:16'),
(38, 134, 84, 'fas fa-bed', 'Relex Living', 'Dreat explorer of the truth, the master-builder of human happines one rejects, dislikes avoids', '2025-05-19 06:51:46', '2025-05-19 06:51:46'),
(39, 135, 84, 'fas fa-bed', 'ريليكس ليفينج', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-19 06:52:23', '2025-05-19 06:52:23'),
(40, 135, 84, 'fa fa-fw fa-heart iconpicker-component', 'نظام أمان عالي', 'أجلب له بعض السعادة الكبيرة. لنأخذ مثالا تافها ، أي منا يقوم بالعمل', '2025-05-19 06:52:57', '2025-05-19 06:52:57'),
(41, 135, 84, 'fas fa-calendar-alt', 'مثل هذه الأحداث والحفلات', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-19 06:53:17', '2025-05-19 06:53:17'),
(42, 136, 85, 'fas fa-calendar-alt', 'Such Events & Party', 'Libero tempore, cum soluta nobis est eligenoptio cumque nihil impedit quo minus id quod', '2025-05-19 07:08:15', '2025-05-19 07:08:15'),
(43, 136, 85, 'fas fa-shield-alt', 'High Security System', 'Procure him some great pleasure. To take a trivial example, which of us ever undertakes labor', '2025-05-19 07:08:50', '2025-05-19 07:08:50'),
(44, 136, 85, 'fas fa-bed', 'Relex Living', 'Dreat explorer of the truth, the master-builder of human happines one rejects, dislikes avoid', '2025-05-19 07:09:11', '2025-05-19 07:09:11'),
(45, 137, 85, 'fas fa-calendar-alt', 'ريليكس ليفينج', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-19 07:11:50', '2025-05-19 07:11:50'),
(46, 137, 85, 'fas fa-cloud-showers-heavy', 'نظام أمان عالي', 'أجلب له بعض السعادة الكبيرة. لنأخذ مثالا تافها ، أي منا يقوم بالعمل', '2025-05-19 07:12:11', '2025-05-19 07:12:11'),
(47, 137, 85, 'fab fa-algolia', 'مثل هذه الأحداث والحفلات', 'مستكشف الخطر للحقيقة ، صانع السعادة البشرية الذي يرفضه المرء ، يتجنبها', '2025-05-19 07:12:27', '2025-05-19 07:12:27');

-- --------------------------------------------------------

--
-- Table structure for table `user_faqs`
--

CREATE TABLE `user_faqs` (
  `id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `question` varchar(255) NOT NULL,
  `answer` text NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_faqs`
--

INSERT INTO `user_faqs` (`id`, `language_id`, `user_id`, `question`, `answer`, `serial_number`, `created_at`, `updated_at`) VALUES
(17, 134, 84, 'Do you offer handicapped rooms?', 'Yes, some Dorint Hotels have handicapped rooms with appropriate accessible equipment. You can see under “Hotel rooms & suites”, if your requested hotel offer these rooms.', 1, '2025-05-07 11:59:20', '2025-05-07 11:59:20'),
(18, 134, 84, 'Is parking available at the hotel?', 'All Dorint Hotels have sufficient parking spaces. Most hotel also have a garage (partly with costs), where your car can safely be stored overnight. Sometimes, there are also parking spaces free of charge at or around the hotel. You will find more information about parking under „General Information“ in the hotel of your choice.', 2, '2025-05-07 11:59:49', '2025-05-07 11:59:49'),
(19, 134, 84, 'Can I reserve a parking lot?', 'In some hotels you can book a parking lot directly in your online booking. After choosing a hotel during the booking process, the system offers you some additional services. Please note that you have to choose a service for each day. It is not possible to reserve a parking slot in advance', 3, '2025-05-07 12:00:13', '2025-05-07 12:00:13'),
(20, 134, 84, 'What are the reception opening hours?', 'The reception is open 24 hours and our colleagues will be at your service day and night.', 4, '2025-05-07 12:00:42', '2025-05-07 12:00:42'),
(21, 134, 84, 'What are the reception opening hours?', 'In some Dorint Hotels & Resorts buffet breakfast is already included in the rate. For hotels or rates, which do not have breakfast included, there is of course the possibility to book it online.', 5, '2025-05-07 12:01:07', '2025-05-07 12:01:07'),
(28, 132, 83, 'Can I also book breakfast online? What does it cost?', 'In some Dorint Hotels & Resorts buffet breakfast is already included in the rate. For hotels or rates, which do not have breakfast included, there is of course the possibility to book it online.', 1, '2025-05-19 05:35:43', '2025-05-19 05:35:43'),
(29, 132, 83, 'What are the reception opening hours?', 'The reception is open 24 hours and our colleagues will be at your service day and night.', 2, '2025-05-19 05:35:55', '2025-05-19 05:35:55'),
(30, 132, 83, 'Can I reserve a parking lot?', 'In some hotels you can book a parking lot directly in your online booking. After choosing a hotel during the booking process, the system offers you some additional services. Please note that you have to choose a service for each day. It is not possible to reserve a parking slot in advance.', 3, '2025-05-19 05:36:09', '2025-05-19 05:36:09'),
(31, 132, 83, 'Is parking available at the hotel?', 'All Dorint Hotels have sufficient parking spaces. Most hotel also have a garage (partly with costs), where your car can safely be stored overnight. Sometimes, there are also parking spaces free of charge at or around the hotel. You will find more information about parking under „General Information“ in the hotel of your choice.', 4, '2025-05-19 05:36:28', '2025-05-19 05:36:28'),
(32, 132, 83, 'Do you offer handicapped rooms?', 'Yes, some Dorint Hotels have handicapped rooms with appropriate accessible equipment. You can see under “Hotel rooms & suites”, if your requested hotel offer these rooms.', 1, '2025-05-19 05:36:45', '2025-05-19 05:36:45'),
(33, 133, 83, 'هل يمكنني أيضًا حجز الإفطار عبر الإنترنت؟ ما هي التكلفة؟', 'في بعض فنادق ومنتجعات Dorint يتم تضمين بوفيه الإفطار بالفعل في السعر. بالنسبة للفنادق أو الأسعار التي لا تشمل وجبة الإفطار ، هناك بالطبع إمكانية الحجز عبر الإنترنت.', 5, '2025-05-19 05:37:10', '2025-05-19 05:37:10'),
(34, 133, 83, 'ما هي ساعات عمل مكتب الاستقبال؟', 'مكتب الاستقبال مفتوح على مدار 24 ساعة وسيكون زملاؤنا في خدمتك ليلاً ونهارًا.', 4, '2025-05-19 05:37:23', '2025-05-19 05:37:23'),
(35, 133, 83, 'هل يمكنني حجز موقف للسيارات؟', 'في بعض الفنادق ، يمكنك حجز موقف للسيارات مباشرةً في الحجز عبر الإنترنت. بعد اختيار فندق أثناء عملية الحجز ، يقدم لك النظام بعض الخدمات الإضافية. يرجى ملاحظة أنه يجب عليك اختيار خدمة لكل يوم. لا يمكن حجز مكان لوقوف السيارات مسبقًا.', 3, '2025-05-19 05:37:37', '2025-05-19 05:37:37'),
(36, 133, 83, 'هل يتوفر موقف للسيارات في الفندق؟', 'جميع فنادق Dorint بها أماكن وقوف سيارات كافية. تحتوي معظم الفنادق أيضًا على مرآب للسيارات (جزئيًا بتكاليف) ، حيث يمكن تخزين سيارتك بأمان طوال الليل. في بعض الأحيان ، توجد أيضًا أماكن لوقوف السيارات مجانًا في الفندق أو حوله. ستجد المزيد من المعلومات حول موقف السيارات تحت عنوان \"معلومات عامة\" في الفندق الذي تختاره.', 4, '2025-05-19 05:37:52', '2025-05-19 05:37:52'),
(37, 133, 83, 'هل يتوفر موقف للسيارات في الفندق؟', 'جميع فنادق Dorint بها أماكن وقوف سيارات كافية. تحتوي معظم الفنادق أيضًا على مرآب للسيارات (جزئيًا بتكاليف) ، حيث يمكن تخزين سيارتك بأمان طوال الليل. في بعض الأحيان ، توجد أيضًا أماكن لوقوف السيارات مجانًا في الفندق أو حوله. ستجد المزيد من المعلومات حول موقف السيارات تحت عنوان \"معلومات عامة\" في الفندق الذي تختاره.', 6, '2025-05-19 05:38:08', '2025-05-19 05:38:08'),
(38, 133, 83, 'هل تقدمون غرف للمعاقين؟', 'نعم ، تحتوي بعض فنادق Dorint على غرف للمعاقين مزودة بمعدات مناسبة يسهل الوصول إليها. يمكنك أن ترى تحت \"غرف وأجنحة الفندق\" ، إذا كان الفندق الذي طلبته يقدم هذه الغرف.', 6, '2025-05-19 05:38:24', '2025-05-19 05:38:24'),
(39, 135, 84, 'هل يمكنني أيضًا حجز الإفطار عبر الإنترنت؟ ما هي التكلفة؟', 'في بعض فنادق ومنتجعات Dorint يتم تضمين بوفيه الإفطار بالفعل في السعر. بالنسبة للفنادق أو الأسعار التي لا تشمل وجبة الإفطار ، هناك بالطبع إمكانية الحجز عبر الإنترنت.', 3, '2025-05-19 05:52:08', '2025-05-19 05:52:49'),
(40, 135, 84, 'ما هي ساعات عمل مكتب الاستقبال؟', 'مكتب الاستقبال مفتوح على مدار 24 ساعة وسيكون زملاؤنا في خدمتك ليلاً ونهارًا.', 1, '2025-05-19 05:52:20', '2025-05-19 05:52:40'),
(41, 135, 84, 'هل يمكنني حجز موقف للسيارات؟', 'في بعض الفنادق ، يمكنك حجز موقف للسيارات مباشرةً في الحجز عبر الإنترنت. بعد اختيار فندق أثناء عملية الحجز ، يقدم لك النظام بعض الخدمات الإضافية. يرجى ملاحظة أنه يجب عليك اختيار خدمة لكل يوم. لا يمكن حجز مكان لوقوف السيارات مسبقًا.', 2, '2025-05-19 05:52:34', '2025-05-19 05:52:34'),
(42, 135, 84, 'هل يتوفر موقف للسيارات في الفندق؟', 'جميع فنادق Dorint بها أماكن وقوف سيارات كافية. تحتوي معظم الفنادق أيضًا على مرآب للسيارات (جزئيًا بتكاليف) ، حيث يمكن تخزين سيارتك بأمان طوال الليل. في بعض الأحيان ، توجد أيضًا أماكن لوقوف السيارات مجانًا في الفندق أو حوله. ستجد المزيد من المعلومات حول موقف السيارات تحت عنوان \"معلومات عامة\" في الفندق الذي تختاره.', 4, '2025-05-19 05:53:01', '2025-05-19 05:53:01'),
(43, 135, 84, 'هل تقدمون غرف للمعاقين؟', 'نعم ، تحتوي بعض فنادق Dorint على غرف للمعاقين مزودة بمعدات مناسبة يسهل الوصول إليها. يمكنك أن ترى تحت \"غرف وأجنحة الفندق\" ، إذا كان الفندق الذي طلبته يقدم هذه الغرف.', 7, '2025-05-19 05:53:13', '2025-05-19 05:53:13');

-- --------------------------------------------------------

--
-- Table structure for table `user_features`
--

CREATE TABLE `user_features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `background_color` varchar(255) NOT NULL,
  `icon` varchar(255) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `text` text NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_footer_quick_links`
--

CREATE TABLE `user_footer_quick_links` (
  `id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `url` varchar(255) NOT NULL,
  `serial_number` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_footer_quick_links`
--

INSERT INTO `user_footer_quick_links` (`id`, `language_id`, `title`, `url`, `serial_number`, `user_id`, `created_at`, `updated_at`) VALUES
(12, 132, 'Services', '/nuvora/services', 6, 83, '2025-05-03 06:31:48', '2025-05-19 12:03:59'),
(13, 132, 'Gallery', '/nuvora/gallery', 5, 83, '2025-05-03 06:32:08', '2025-05-19 12:03:50'),
(14, 132, 'Contact Us', '/nuvora/contact', 4, 83, '2025-05-03 06:32:42', '2025-05-19 12:03:38'),
(15, 132, 'FAQs', '/nuvora/faqs', 3, 83, '2025-05-03 06:32:56', '2025-05-19 12:03:22'),
(16, 132, 'Terms & Conditions', '/nuvora/terms-&-conditions', 2, 83, '2025-05-03 06:33:09', '2025-05-19 12:03:08'),
(17, 132, 'About Us', '/nuvora/about-us', 1, 83, '2025-05-03 06:33:23', '2025-05-19 12:02:52'),
(18, 133, 'خدمات', '/nuvora/services', 1, 83, '2025-05-03 06:33:51', '2025-05-19 12:04:49'),
(19, 133, 'صالة عرض', '/nuvora/gallery', 5, 83, '2025-05-03 06:34:11', '2025-05-19 12:04:42'),
(20, 133, 'اتصل بنا', '/nuvora/contact', 3, 83, '2025-05-03 06:34:34', '2025-05-19 12:04:33'),
(21, 133, 'أسئلة وأجوبة', '/nuvora/faqs', 4, 83, '2025-05-03 06:34:52', '2025-05-19 12:04:26'),
(22, 133, 'البنود و الظروف', '/nuvora/terms-&-conditions', 2, 83, '2025-05-03 06:35:18', '2025-05-19 12:04:18'),
(23, 133, 'معلومات عنا', '/nuvora/about-us', 1, 83, '2025-05-03 06:35:35', '2025-05-19 12:04:10'),
(24, 134, 'Services', 'https://codecanyon8.kreativdev.com/multihotel/services', 6, 84, '2025-05-03 00:31:48', '2025-05-03 00:32:23'),
(25, 134, 'Gallery', 'https://codecanyon8.kreativdev.com/multihotel/gallery', 5, 84, '2025-05-03 00:32:08', '2025-05-03 00:32:08'),
(26, 134, 'Contact Us', 'https://codecanyon8.kreativdev.com/multihotel/contact', 4, 84, '2025-05-03 00:32:42', '2025-05-03 00:32:42'),
(27, 134, 'FAQs', 'https://codecanyon8.kreativdev.com/multihotel/faqs', 3, 84, '2025-05-03 00:32:56', '2025-05-03 00:32:56'),
(28, 134, 'Terms & Conditions', 'https://codecanyon8.kreativdev.com/multihotel/terms-&-conditions', 2, 84, '2025-05-03 00:33:09', '2025-05-03 00:33:09'),
(29, 134, 'About Us', 'https://codecanyon8.kreativdev.com/multihotel/about-us', 1, 84, '2025-05-03 00:33:23', '2025-05-03 00:33:23'),
(30, 135, 'خدمات', 'http://localhost/hotelbooking/services', 1, 84, '2025-05-03 00:33:51', '2025-05-03 00:33:51'),
(31, 135, 'صالة عرض', 'http://localhost/hotelbooking/gallery', 5, 84, '2025-05-03 00:34:11', '2025-05-03 00:34:11'),
(32, 135, 'اتصل بنا', 'http://localhost/hotelbooking/contact', 3, 84, '2025-05-03 00:34:34', '2025-05-03 00:34:34'),
(33, 135, 'أسئلة وأجوبة', 'http://localhost/hotelbooking/faqs', 4, 84, '2025-05-03 00:34:52', '2025-05-03 00:34:52'),
(34, 135, 'البنود و الظروف', 'http://localhost/hotelbooking/terms-&-conditions', 2, 84, '2025-05-03 00:35:18', '2025-05-03 00:35:18'),
(35, 135, 'معلومات عنا', 'http://localhost/hotelbooking/about-us', 1, 84, '2025-05-03 00:35:35', '2025-05-03 00:35:35'),
(36, 136, 'Services', '/vireon/services', 6, 85, '2025-05-03 00:31:48', '2025-05-19 10:47:22'),
(38, 136, 'Contact Us', '/vireon/contact', 4, 85, '2025-05-03 00:32:42', '2025-05-19 10:47:07'),
(40, 136, 'Terms & Conditions', '/vireon/terms-&-conditions', 2, 85, '2025-05-03 00:33:09', '2025-05-19 10:46:56'),
(41, 136, 'About Us', '/vireon/about-us', 1, 85, '2025-05-03 00:33:23', '2025-05-19 10:46:47'),
(43, 137, 'صالة عرض', '/vireon/gallery', 5, 85, '2025-05-03 00:34:11', '2025-05-19 11:27:05'),
(44, 137, 'اتصل بنا', '/vireon/contact', 3, 85, '2025-05-03 00:34:34', '2025-05-19 11:26:56'),
(45, 137, 'أسئلة وأجوبة', '/vireon/faqs', 4, 85, '2025-05-03 00:34:52', '2025-05-19 11:26:48'),
(46, 137, 'البنود و الظروف', '/vireon/terms-&-conditions', 2, 85, '2025-05-03 00:35:18', '2025-05-19 11:26:39'),
(47, 137, 'معلومات عنا', '/vireon/about-us', 1, 85, '2025-05-03 00:35:35', '2025-05-19 11:26:31'),
(48, 138, 'Services', '/brelix/services', 6, 86, '2025-05-03 00:31:48', '2025-05-19 07:27:49'),
(50, 138, 'Contact Us', '/brelix/contact', 4, 86, '2025-05-03 00:32:42', '2025-05-19 07:28:13'),
(52, 138, 'Terms & Conditions', '/brelix/terms-&-conditions', 2, 86, '2025-05-03 00:33:09', '2025-05-19 07:28:36'),
(53, 138, 'About Us', '/brelix//about-us', 1, 86, '2025-05-03 00:33:23', '2025-05-19 07:29:48'),
(54, 139, 'خدمات', '/brelix/services', 1, 86, '2025-05-03 00:33:51', '2025-05-19 07:30:45'),
(55, 139, 'صالة عرض', '/brelix/gallery', 5, 86, '2025-05-03 00:34:11', '2025-05-19 07:30:36'),
(56, 139, 'اتصل بنا', '/brelix/contact', 3, 86, '2025-05-03 00:34:34', '2025-05-19 07:30:25'),
(58, 139, 'البنود و الظروف', '/brelix/terms-&-conditions', 2, 86, '2025-05-03 00:35:18', '2025-05-19 07:30:30'),
(59, 139, 'معلومات عنا', '/brelix/about-us', 1, 86, '2025-05-03 00:35:35', '2025-05-19 07:30:59'),
(60, 140, 'Services', '/trenzo/services', 6, 87, '2025-05-03 00:31:48', '2025-05-19 07:35:45'),
(61, 140, 'Gallery', '/trenzo/gallery', 5, 87, '2025-05-03 00:32:08', '2025-05-19 07:35:39'),
(62, 140, 'Contact Us', '/trenzo/contact', 4, 87, '2025-05-03 00:32:42', '2025-05-19 07:35:31'),
(64, 140, 'Terms & Conditions', '/trenzo/terms-&-conditions', 2, 87, '2025-05-03 00:33:09', '2025-05-19 07:35:17'),
(65, 140, 'About Us', '/trenzo/about-us', 1, 87, '2025-05-03 00:33:23', '2025-05-19 07:35:02'),
(66, 141, 'خدمات', '/trenzo/services', 1, 87, '2025-05-03 00:33:51', '2025-05-19 07:36:36'),
(67, 141, 'صالة عرض', '/trenzo/gallery', 5, 87, '2025-05-03 00:34:11', '2025-05-19 07:36:29'),
(68, 141, 'اتصل بنا', '/trenzo/contact', 3, 87, '2025-05-03 00:34:34', '2025-05-19 07:36:22'),
(70, 141, 'البنود و الظروف', '/trenzo/terms-&-conditions', 2, 87, '2025-05-03 00:35:18', '2025-05-19 07:36:15'),
(71, 141, 'معلومات عنا', '/trenzo/about-us', 1, 87, '2025-05-03 00:35:35', '2025-05-19 07:36:06');

-- --------------------------------------------------------

--
-- Table structure for table `user_footer_texts`
--

CREATE TABLE `user_footer_texts` (
  `id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `about_company` text,
  `copyright_text` text,
  `user_id` int(11) DEFAULT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_footer_texts`
--

INSERT INTO `user_footer_texts` (`id`, `language_id`, `about_company`, `copyright_text`, `user_id`, `created_at`, `updated_at`) VALUES
(8, 132, 'Multihotel is a web-based application that allows users to search for and book hotel rooms online. These websites typically offer a wide variety of hotels to choose from, as well as a variety of features that make it easy for users to find the perfect hotel for their needs.', '<p>Copyright@2025. All Rights Reserved</p>', 83, '2025-05-03 06:30:11', '2025-05-03 06:30:11'),
(9, 133, 'هو تطبيق على شبكة الإنترنت يتيح للمستخدمين البحث عن غرف الفنادق وحجزها عبر الإنترنت. تقدم مواقع الويب هذه عادةً مجموعة واسعة من الفنادق للاختيار من بينها، بالإضافة إلى مجموعة متنوعة من الميزات التي تسهل على المستخدمين', '<p>حقوق الطبع والنشر@2025. كل الحقوق محفوظة</p>', 83, '2025-05-03 06:30:39', '2025-05-03 06:30:39'),
(10, 134, 'Multihotel is a web-based application that allows users to search for and book hotel rooms online. These websites typically offer a wide variety of hotels to choose from, as well as a variety of features that make it easy for users to find the perfect hotel for their needs.', '<p>Copyright@2022. All Rights Reserved</p>', 84, '2025-05-07 12:36:34', '2025-05-07 12:36:34'),
(11, 135, 'هو تطبيق على شبكة الإنترنت يتيح للمستخدمين البحث عن غرف الفنادق وحجزها عبر الإنترنت. تقدم مواقع الويب هذه عادةً مجموعة واسعة من الفنادق للاختيار من بينها، بالإضافة إلى مجموعة متنوعة من الميزات التي تسهل على المستخدمين العثور على الفندق المثالي الذي يلبي احتياجاتهم.', '<p>حقوق الطبع والنشر@2022. كل الحقوق محفوظة</p>', 84, '2025-05-07 12:37:11', '2025-05-07 12:37:11'),
(12, 136, 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary', '<p>Copyright @2025.All Rights Reserved</p>', 85, '2025-05-08 09:12:26', '2025-05-08 09:12:26'),
(13, 137, 'من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيعه الطبيعي للأحرف، على عكس استخداممن الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيعه الطبيعي للأحرف، على عكس استخداممن الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات.', '<p>جميع الحقوق محفوظة لشركة هوتيليا ٢٠٢٥</p>', 85, '2025-05-08 10:06:26', '2025-05-08 10:06:26'),
(14, 138, 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text.', '<p>Copyright @2025.All Rights Reserved</p>', 86, '2025-05-08 10:52:08', '2025-05-08 10:52:08'),
(15, 139, 'من الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيعه الطبيعي للأحرف، على عكس استخداممن الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيعه الطبيعي للأحرف، على عكس استخداممن الحقائق الثابتة أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات.', '<p dir=\"rtl\">حقوق الطبع والنشر@2025. كل الحقوق محفوظة</p>', 86, '2025-05-08 10:54:35', '2025-05-08 10:54:35'),
(16, 140, 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary', '<p>Copyright @2025.All Rights Reserved</p>', 87, '2025-05-08 12:16:55', '2025-05-08 12:16:55'),
(17, 141, 'هو تطبيق على شبكة الإنترنت يتيح للمستخدمين البحث عن غرف الفنادق وحجزها عبر الإنترنت. تقدم مواقع الويب هذه عادةً مجموعة واسعة من الفنادق للاختيار من بينها، بالإضافة إلى مجموعة متنوعة من الميزات التي تسهل على المستخدمين العثور على الفندق المثالي الذي يلبي احتياجاتهم.تخدمين العثور على الفندق المثالي الذي يلبي احتياجاتهم.بينها، بالإضافة إلى مجموعة متنوعة من', '<p>حقوق الطبع والنشر@2025. كل الحقوق محفوظة</p>', 87, '2025-05-08 13:08:35', '2025-05-08 13:08:35');

-- --------------------------------------------------------

--
-- Table structure for table `user_gallery_categories`
--

CREATE TABLE `user_gallery_categories` (
  `id` int(11) NOT NULL,
  `name` varchar(255) NOT NULL,
  `language_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `status` tinyint(1) NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_gallery_categories`
--

INSERT INTO `user_gallery_categories` (`id`, `name`, `language_id`, `user_id`, `status`, `serial_number`, `created_at`, `updated_at`) VALUES
(14, 'Hotel Staff', 132, 83, 1, 3, '2025-05-03 11:52:20', '2025-05-03 05:52:20'),
(15, 'أنشطة الفندق', 133, 83, 1, 1, '2025-05-03 11:54:29', '2025-05-03 05:57:49'),
(16, 'Hotel Events', 132, 83, 1, 2, '2025-05-03 11:56:38', '2025-05-07 07:06:51'),
(17, 'Hotel Activities', 132, 83, 1, 3, '2025-05-03 11:56:47', '2025-05-03 05:56:47'),
(18, 'فعاليات الفندق', 133, 83, 1, 2, '2025-05-03 11:57:59', '2025-05-03 05:57:59'),
(19, 'موظفو الفندق', 133, 83, 1, 3, '2025-05-03 11:58:09', '2025-05-03 05:58:09'),
(20, 'Hotel Staff', 134, 84, 1, 3, '2025-05-03 11:52:20', '2025-05-02 23:52:20'),
(21, 'أنشطة الفندق', 135, 84, 1, 1, '2025-05-03 11:54:29', '2025-05-02 23:57:49'),
(22, 'Hotel Events', 134, 84, 1, 2, '2025-05-03 11:56:38', '2025-05-02 23:56:38'),
(23, 'Hotel Activities', 134, 84, 1, 3, '2025-05-03 11:56:47', '2025-05-02 23:56:47'),
(24, 'فعاليات الفندق', 135, 84, 1, 2, '2025-05-03 11:57:59', '2025-05-02 23:57:59'),
(25, 'موظفو الفندق', 135, 84, 1, 3, '2025-05-03 11:58:09', '2025-05-02 23:58:09'),
(26, 'Hotel Staff', 136, 85, 1, 3, '2025-05-03 11:52:20', '2025-05-02 23:52:20'),
(27, 'أنشطة الفندق', 137, 85, 1, 1, '2025-05-03 11:54:29', '2025-05-02 23:57:49'),
(28, 'Hotel Events', 136, 85, 1, 2, '2025-05-03 11:56:38', '2025-05-02 23:56:38'),
(29, 'Hotel Activities', 136, 85, 1, 3, '2025-05-03 11:56:47', '2025-05-02 23:56:47'),
(30, 'فعاليات الفندق', 137, 85, 1, 2, '2025-05-03 11:57:59', '2025-05-02 23:57:59'),
(31, 'موظفو الفندق', 137, 85, 1, 3, '2025-05-03 11:58:09', '2025-05-02 23:58:09'),
(32, 'Hotel Staff', 138, 86, 1, 3, '2025-05-03 11:52:20', '2025-05-02 23:52:20'),
(33, 'أنشطة الفندق', 139, 86, 1, 1, '2025-05-03 11:54:29', '2025-05-02 23:57:49'),
(34, 'Hotel Events', 138, 86, 1, 2, '2025-05-03 11:56:38', '2025-05-02 23:56:38'),
(35, 'Hotel Activities', 138, 86, 1, 3, '2025-05-03 11:56:47', '2025-05-02 23:56:47'),
(36, 'فعاليات الفندق', 139, 86, 1, 2, '2025-05-03 11:57:59', '2025-05-02 23:57:59'),
(37, 'موظفو الفندق', 139, 86, 1, 3, '2025-05-03 11:58:09', '2025-05-02 23:58:09'),
(38, 'Hotel Staff', 140, 87, 1, 3, '2025-05-03 11:52:20', '2025-05-02 23:52:20'),
(39, 'أنشطة الفندق', 141, 87, 1, 1, '2025-05-03 11:54:29', '2025-05-02 23:57:49'),
(40, 'Hotel Events', 140, 87, 1, 2, '2025-05-03 11:56:38', '2025-05-02 23:56:38'),
(41, 'Hotel Activities', 140, 87, 1, 3, '2025-05-03 11:56:47', '2025-05-02 23:56:47'),
(42, 'فعاليات الفندق', 141, 87, 1, 2, '2025-05-03 11:57:59', '2025-05-02 23:57:59'),
(43, 'موظفو الفندق', 141, 87, 1, 3, '2025-05-03 11:58:09', '2025-05-02 23:58:09');

-- --------------------------------------------------------

--
-- Table structure for table `user_gallery_images`
--

CREATE TABLE `user_gallery_images` (
  `id` int(11) NOT NULL,
  `gallery_img` varchar(255) NOT NULL,
  `language_id` int(11) NOT NULL,
  `gallery_category_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `title` varchar(255) NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_gallery_images`
--

INSERT INTO `user_gallery_images` (`id`, `gallery_img`, `language_id`, `gallery_category_id`, `user_id`, `title`, `serial_number`, `created_at`, `updated_at`) VALUES
(13, '89c1a67b8d349dfe727a9a34b014458453d0f166.jpg', 132, 14, 83, 'Staff Appreciation Day', 4, '2025-05-03 05:58:45', '2025-05-03 05:58:45'),
(14, '93613e526a9f63b32350062b0b2618d6c3ba04d2.jpg', 132, 16, 83, 'New Year\'s Eve Party', 5, '2025-05-03 05:59:08', '2025-05-03 05:59:08'),
(15, 'eb66bc1745144e57f2b79e94d7100818a4335022.jpg', 132, 16, 83, 'Valentine\'s Day Gala', 4, '2025-05-03 05:59:33', '2025-05-03 05:59:33'),
(16, 'e72b17051bb2886ac0d2cc53ae9cdc92de23a7ce.jpg', 132, 17, 83, 'Weddings and Events', 3, '2025-05-03 05:59:53', '2025-05-03 05:59:53'),
(17, 'd6469ffdc5de56a253558443196d7efdbfa60488.jpg', 132, 17, 83, 'Nightlife Activities', 2, '2025-05-03 06:00:18', '2025-05-03 06:00:18'),
(18, 'a0e2e0040cd6bb588d71cad1850e95721f2db4eb.jpg', 132, 16, 83, 'Family-Friendly Activities', 1, '2025-05-03 06:00:39', '2025-05-03 06:00:39'),
(19, 'd51166f77e05e5760c843fb8af59ff3998fbfdcb.jpg', 133, 15, 83, 'يوم تقدير الموظفين', 1, '2025-05-03 06:05:48', '2025-05-03 06:05:48'),
(20, '726279a25837bde1f21ff6bf65673d51d7c075d6.jpg', 133, 15, 83, 'حفلة ليلة رأس السنة', 2, '2025-05-03 06:07:35', '2025-05-03 06:07:35'),
(21, '7ba1f267bea0a8bdaf3b589d8c90af687463475b.jpg', 133, 18, 83, 'حفل عيد الحب', 3, '2025-05-03 06:07:59', '2025-05-03 06:07:59'),
(22, 'd4033b5d6aac408f2747c80fb18bae93554ea8cf.jpg', 133, 18, 83, 'حفل عيد الحب', 3, '2025-05-03 06:08:25', '2025-05-03 06:08:25'),
(23, 'e8d5d8fc433aa357811743569342e57fa2afbc32.jpg', 133, 19, 83, 'أنشطة الحياة الليلية', 5, '2025-05-03 06:09:07', '2025-05-03 06:09:07'),
(24, '0070f28c5592b1210e851155b3bb2d3e63006763.jpg', 133, 19, 83, 'أنشطة مناسبة للعائلة', 6, '2025-05-03 06:09:38', '2025-05-03 06:09:38'),
(25, '89c1a67b8d349dfe727a9a34b014458453d0f166.jpg', 134, 20, 84, 'Staff Appreciation Day', 4, '2025-05-02 23:58:45', '2025-05-02 23:58:45'),
(26, '93613e526a9f63b32350062b0b2618d6c3ba04d2.jpg', 134, 22, 84, 'New Years Eve Party', 5, '2025-05-02 23:59:08', '2025-05-02 23:59:08'),
(27, 'eb66bc1745144e57f2b79e94d7100818a4335022.jpg', 134, 22, 84, 'Valentines Day Gala', 4, '2025-05-02 23:59:33', '2025-05-02 23:59:33'),
(28, 'e72b17051bb2886ac0d2cc53ae9cdc92de23a7ce.jpg', 134, 23, 84, 'Weddings and Events', 3, '2025-05-02 23:59:53', '2025-05-02 23:59:53'),
(29, 'd6469ffdc5de56a253558443196d7efdbfa60488.jpg', 134, 23, 84, 'Nightlife Activities', 2, '2025-05-03 00:00:18', '2025-05-03 00:00:18'),
(30, 'a0e2e0040cd6bb588d71cad1850e95721f2db4eb.jpg', 134, 22, 84, 'Family-Friendly Activities', 1, '2025-05-03 00:00:39', '2025-05-03 00:00:39'),
(31, 'd51166f77e05e5760c843fb8af59ff3998fbfdcb.jpg', 135, 21, 84, 'يوم تقدير الموظفين', 1, '2025-05-03 00:05:48', '2025-05-03 00:05:48'),
(32, '726279a25837bde1f21ff6bf65673d51d7c075d6.jpg', 135, 21, 84, 'حفلة ليلة رأس السنة', 2, '2025-05-03 00:07:35', '2025-05-03 00:07:35'),
(33, '7ba1f267bea0a8bdaf3b589d8c90af687463475b.jpg', 135, 24, 84, 'حفل عيد الحب', 3, '2025-05-03 00:07:59', '2025-05-03 00:07:59'),
(34, 'd4033b5d6aac408f2747c80fb18bae93554ea8cf.jpg', 135, 24, 84, 'حفل عيد الحب', 3, '2025-05-03 00:08:25', '2025-05-03 00:08:25'),
(35, 'e8d5d8fc433aa357811743569342e57fa2afbc32.jpg', 135, 25, 84, 'أنشطة الحياة الليلية', 5, '2025-05-03 00:09:07', '2025-05-03 00:09:07'),
(36, '0070f28c5592b1210e851155b3bb2d3e63006763.jpg', 135, 25, 84, 'أنشطة مناسبة للعائلة', 6, '2025-05-03 00:09:38', '2025-05-03 00:09:38'),
(37, '89c1a67b8d349dfe727a9a34b014458453d0f166.jpg', 140, 38, 87, 'Staff Appreciation Day', 4, '2025-05-02 23:58:45', '2025-05-02 23:58:45'),
(38, '93613e526a9f63b32350062b0b2618d6c3ba04d2.jpg', 140, 40, 87, 'New Years Eve Party', 5, '2025-05-02 23:59:08', '2025-05-02 23:59:08'),
(39, 'eb66bc1745144e57f2b79e94d7100818a4335022.jpg', 140, 40, 87, 'Valentines Day Gala', 4, '2025-05-02 23:59:33', '2025-05-02 23:59:33'),
(40, 'e72b17051bb2886ac0d2cc53ae9cdc92de23a7ce.jpg', 140, 41, 87, 'Weddings and Events', 3, '2025-05-02 23:59:53', '2025-05-02 23:59:53'),
(41, 'd6469ffdc5de56a253558443196d7efdbfa60488.jpg', 140, 41, 87, 'Nightlife Activities', 2, '2025-05-03 00:00:18', '2025-05-03 00:00:18'),
(42, 'a0e2e0040cd6bb588d71cad1850e95721f2db4eb.jpg', 140, 40, 87, 'Family-Friendly Activities', 1, '2025-05-03 00:00:39', '2025-05-03 00:00:39'),
(43, 'd51166f77e05e5760c843fb8af59ff3998fbfdcb.jpg', 141, 39, 87, 'يوم تقدير الموظفين', 1, '2025-05-03 00:05:48', '2025-05-03 00:05:48'),
(44, '726279a25837bde1f21ff6bf65673d51d7c075d6.jpg', 141, 39, 87, 'حفلة ليلة رأس السنة', 2, '2025-05-03 00:07:35', '2025-05-03 00:07:35'),
(45, '7ba1f267bea0a8bdaf3b589d8c90af687463475b.jpg', 141, 42, 87, 'حفل عيد الحب', 3, '2025-05-03 00:07:59', '2025-05-03 00:07:59'),
(46, 'd4033b5d6aac408f2747c80fb18bae93554ea8cf.jpg', 141, 42, 87, 'حفل عيد الحب', 3, '2025-05-03 00:08:25', '2025-05-03 00:08:25'),
(47, 'e8d5d8fc433aa357811743569342e57fa2afbc32.jpg', 141, 43, 87, 'أنشطة الحياة الليلية', 5, '2025-05-03 00:09:07', '2025-05-03 00:09:07'),
(48, '0070f28c5592b1210e851155b3bb2d3e63006763.jpg', 141, 43, 87, 'أنشطة مناسبة للعائلة', 6, '2025-05-03 00:09:38', '2025-05-03 00:09:38'),
(49, '89c1a67b8d349dfe727a9a34b014458453d0f166.jpg', 138, 32, 86, 'Staff Appreciation Day', 4, '2025-05-02 23:58:45', '2025-05-02 23:58:45'),
(50, '93613e526a9f63b32350062b0b2618d6c3ba04d2.jpg', 138, 34, 86, 'New Years Eve Party', 5, '2025-05-02 23:59:08', '2025-05-02 23:59:08'),
(51, 'eb66bc1745144e57f2b79e94d7100818a4335022.jpg', 138, 34, 86, 'Valentines Day Gala', 4, '2025-05-02 23:59:33', '2025-05-02 23:59:33'),
(52, 'e72b17051bb2886ac0d2cc53ae9cdc92de23a7ce.jpg', 138, 35, 86, 'Weddings and Events', 3, '2025-05-02 23:59:53', '2025-05-02 23:59:53'),
(53, 'd6469ffdc5de56a253558443196d7efdbfa60488.jpg', 138, 35, 86, 'Nightlife Activities', 2, '2025-05-03 00:00:18', '2025-05-03 00:00:18'),
(54, 'a0e2e0040cd6bb588d71cad1850e95721f2db4eb.jpg', 138, 34, 86, 'Family-Friendly Activities', 1, '2025-05-03 00:00:39', '2025-05-03 00:00:39'),
(55, 'd51166f77e05e5760c843fb8af59ff3998fbfdcb.jpg', 139, 33, 86, 'يوم تقدير الموظفين', 1, '2025-05-03 00:05:48', '2025-05-03 00:05:48'),
(56, '726279a25837bde1f21ff6bf65673d51d7c075d6.jpg', 139, 33, 86, 'حفلة ليلة رأس السنة', 2, '2025-05-03 00:07:35', '2025-05-03 00:07:35'),
(57, '7ba1f267bea0a8bdaf3b589d8c90af687463475b.jpg', 139, 36, 86, 'حفل عيد الحب', 3, '2025-05-03 00:07:59', '2025-05-03 00:07:59'),
(58, 'd4033b5d6aac408f2747c80fb18bae93554ea8cf.jpg', 139, 36, 86, 'حفل عيد الحب', 3, '2025-05-03 00:08:25', '2025-05-03 00:08:25'),
(59, 'e8d5d8fc433aa357811743569342e57fa2afbc32.jpg', 139, 37, 86, 'أنشطة الحياة الليلية', 5, '2025-05-03 00:09:07', '2025-05-03 00:09:07'),
(60, '0070f28c5592b1210e851155b3bb2d3e63006763.jpg', 139, 37, 86, 'أنشطة مناسبة للعائلة', 6, '2025-05-03 00:09:38', '2025-05-03 00:09:38'),
(61, '89c1a67b8d349dfe727a9a34b014458453d0f166.jpg', 136, 26, 85, 'Staff Appreciation Day', 4, '2025-05-02 23:58:45', '2025-05-02 23:58:45'),
(62, '93613e526a9f63b32350062b0b2618d6c3ba04d2.jpg', 136, 28, 85, 'New Years Eve Party', 5, '2025-05-02 23:59:08', '2025-05-02 23:59:08'),
(63, 'eb66bc1745144e57f2b79e94d7100818a4335022.jpg', 136, 28, 85, 'Valentines Day Gala', 4, '2025-05-02 23:59:33', '2025-05-02 23:59:33'),
(64, 'e72b17051bb2886ac0d2cc53ae9cdc92de23a7ce.jpg', 136, 29, 85, 'Weddings and Events', 3, '2025-05-02 23:59:53', '2025-05-02 23:59:53'),
(65, 'd6469ffdc5de56a253558443196d7efdbfa60488.jpg', 136, 29, 85, 'Nightlife Activities', 2, '2025-05-03 00:00:18', '2025-05-03 00:00:18'),
(66, 'a0e2e0040cd6bb588d71cad1850e95721f2db4eb.jpg', 136, 28, 85, 'Family-Friendly Activities', 1, '2025-05-03 00:00:39', '2025-05-03 00:00:39'),
(67, 'd51166f77e05e5760c843fb8af59ff3998fbfdcb.jpg', 137, 27, 85, 'يوم تقدير الموظفين', 1, '2025-05-03 00:05:48', '2025-05-03 00:05:48'),
(68, '726279a25837bde1f21ff6bf65673d51d7c075d6.jpg', 137, 27, 85, 'حفلة ليلة رأس السنة', 2, '2025-05-03 00:07:35', '2025-05-03 00:07:35'),
(69, '7ba1f267bea0a8bdaf3b589d8c90af687463475b.jpg', 137, 30, 85, 'حفل عيد الحب', 3, '2025-05-03 00:07:59', '2025-05-03 00:07:59'),
(70, 'd4033b5d6aac408f2747c80fb18bae93554ea8cf.jpg', 137, 30, 85, 'حفل عيد الحب', 3, '2025-05-03 00:08:25', '2025-05-03 00:08:25'),
(71, 'e8d5d8fc433aa357811743569342e57fa2afbc32.jpg', 137, 31, 85, 'أنشطة الحياة الليلية', 5, '2025-05-03 00:09:07', '2025-05-03 00:09:07'),
(72, '0070f28c5592b1210e851155b3bb2d3e63006763.jpg', 137, 31, 85, 'أنشطة مناسبة للعائلة', 6, '2025-05-03 00:09:38', '2025-05-03 00:09:38');

-- --------------------------------------------------------

--
-- Table structure for table `user_hero_sliders`
--

CREATE TABLE `user_hero_sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `img` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `subtitle` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `btn_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `btn_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_hero_sliders`
--

INSERT INTO `user_hero_sliders` (`id`, `language_id`, `user_id`, `img`, `title`, `subtitle`, `btn_name`, `btn_url`, `serial_number`, `created_at`, `updated_at`) VALUES
(22, 136, 85, '765f3d1ef8fb47cccaca88c5a0e9d9b1375a7c68.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 1, '2025-05-08 07:21:08', '2025-05-08 07:21:08'),
(23, 136, 85, '4d026504a2c9130f87e5fe556d4dc61ff25e95bf.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 2, '2025-05-08 07:23:36', '2025-05-08 07:23:36'),
(24, 136, 85, '21b9ce16d90ad604501f2436a9075dcd2bf3d4c9.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 3, '2025-05-08 07:24:12', '2025-05-08 07:24:12'),
(25, 137, 85, 'f6359d7a2cdd82142b052bd75a5a46b42d727a1c.jpg', 'الغرفة المثالية والاسترخاء لك', 'الغرفة المثالية والاسترخاء لك', NULL, NULL, 1, '2025-05-08 09:36:36', '2025-05-08 09:36:36'),
(26, 137, 85, '9551947df517d715b68461cb723a80059ef7dbbc.jpg', 'الغرفة المثالية والاسترخاء لك', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 2, '2025-05-08 09:37:02', '2025-05-08 09:37:02'),
(27, 137, 85, 'd307a084a4a5203d9c568fc8424bb25927526d99.jpg', 'الغرفة المثالية والاسترخاء لك', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 3, '2025-05-08 09:37:53', '2025-05-08 09:37:53'),
(28, 138, 86, 'a5eabe5c3e4fb6bdcc4893c9194d523a2b6a5d09.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 1, '2025-05-08 11:03:50', '2025-05-08 11:03:50'),
(29, 138, 86, '726f0ebaa177a7132a679c8580cc207e59dc25f8.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 2, '2025-05-08 11:04:13', '2025-05-08 11:04:13'),
(30, 138, 86, '7537c294fe2b977702fa922e77b6aa3c98d74d53.jpg', 'Hotelia The Perfect And Relax Room For You', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 3, '2025-05-08 11:05:08', '2025-05-08 11:05:08'),
(31, 139, 86, '3db9b99e1a03c43c1dc8f4b665ba81b055336600.jpg', 'الغرفة المثالية والاسترخاء لك', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 1, '2025-05-08 11:05:38', '2025-05-08 11:05:38'),
(32, 139, 86, 'b7928cf081970ed19bce6628d4323b9af22d67f9.jpg', 'الغرفة المثالية والاسترخاء لك', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 2, '2025-05-08 11:06:26', '2025-05-08 11:06:26'),
(33, 139, 86, '7da486117cd3aa1fda6bc1389ad0b6da60444fc7.jpg', 'الغرفة المثالية والاسترخاء لك', 'الغرفة المثالية والاسترخاء لك', NULL, NULL, 3, '2025-05-08 11:06:56', '2025-05-08 11:06:56'),
(34, 140, 87, '4133dc79114bdaa29e933073c8b1d67c54fb8a3a.jpg', 'We Provide Luxurious Rooms and Tour Packages', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 1, '2025-05-08 12:22:53', '2025-05-08 12:22:53'),
(35, 140, 87, '4fb38cb1a9b8bac2cf58213a72885b353362be03.jpg', 'We Provide Luxurious Rooms and Tour Packages', 'Aenean leo ligula, porttitor eu consequat vitae eleifend ac enim aliquam lorem ante dapibus in viverra quisioe.', NULL, NULL, 2, '2025-05-08 12:23:26', '2025-05-08 12:23:26'),
(36, 141, 87, '0af804fba71695d7a8908fdb98269e1650a1b319.jpg', 'نحن نقدم غرفًا فاخرة وباقات سياحية', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 1, '2025-05-08 12:24:32', '2025-05-08 12:24:32'),
(37, 141, 87, '2d9cb1d4051ae92033e7546803ca42b0baafe06a.jpg', 'نحن نقدم غرفًا فاخرة وباقات سياحية', 'أسد أسد صغير، يحمل نتيجة لسيرتك الذاتية، كما هو الحال مع قواعدك السابقة، في الحياة التي تريدها.', NULL, NULL, 3, '2025-05-08 12:24:58', '2025-05-08 12:24:58'),
(38, 132, 83, '8ea2a3502fb92b0a8c7010e840f3ffdfcd831108.png', '1', '1', '1', 'https://www.cyx.me', 1, '2025-05-18 13:06:20', '2025-05-18 13:06:20');

-- --------------------------------------------------------

--
-- Table structure for table `user_intro_count_infos`
--

CREATE TABLE `user_intro_count_infos` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `amount` bigint(20) UNSIGNED NOT NULL,
  `serial_number` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_intro_count_infos`
--

INSERT INTO `user_intro_count_infos` (`id`, `language_id`, `user_id`, `icon`, `title`, `amount`, `serial_number`, `created_at`, `updated_at`) VALUES
(18, 132, 83, 'fas fa-wine-bottle', 'Lots of Amenities', 300, 3, '2025-04-28 11:45:26', '2025-04-28 11:45:26'),
(19, 132, 83, 'fas fa-grin', 'Happy Customers', 700, 2, '2025-04-28 11:45:51', '2025-04-28 11:45:51'),
(20, 132, 83, 'fas fa-building', 'Luxury Rooms', 506, 1, '2025-04-28 11:46:26', '2025-04-28 11:46:26'),
(21, 134, 84, 'fas fa-wine-bottle', 'Lots of Amenities', 300, 4, '2025-05-07 12:07:14', '2025-05-07 12:07:14'),
(22, 134, 84, 'far fa-grin', 'Happy Customers', 700, 2, '2025-05-07 12:07:38', '2025-05-07 12:07:38'),
(23, 134, 84, 'far fa-building', 'Luxury Rooms', 506, 1, '2025-05-07 12:08:00', '2025-05-07 12:08:00'),
(24, 135, 84, 'fas fa-wine-bottle', 'الكثير من وسائل الراحة', 300, 4, '2025-05-07 12:08:39', '2025-05-07 12:08:39'),
(25, 135, 84, 'far fa-grin', 'الزبائن سعداء', 700, 2, '2025-05-07 12:09:05', '2025-05-07 12:09:05'),
(26, 135, 84, 'far fa-building', 'غرف فاخرة', 506, 1, '2025-05-07 12:09:30', '2025-05-07 12:09:30'),
(27, 133, 83, 'fas fa-wine-bottle', 'الكثير من وسائل الراحة', 300, 4, '2025-05-08 06:02:39', '2025-05-08 06:02:39'),
(28, 133, 83, 'far fa-grin', 'الزبائن سعداء', 300, 2, '2025-05-08 06:03:04', '2025-05-08 06:03:21'),
(29, 133, 83, 'far fa-building', 'غرف فاخرة', 506, 1, '2025-05-08 06:04:25', '2025-05-08 06:04:25'),
(30, 136, 85, 'fas fa-bed iconpicker-component', 'Room Available', 300, 1, '2025-05-08 07:42:51', '2025-05-08 07:43:10'),
(31, 136, 85, 'fas fa-user-secret', 'Security Guard', 200, 2, '2025-05-08 07:52:13', '2025-05-08 09:10:03'),
(32, 136, 85, 'far fa-hospital', 'Luxurious Rooms', 499, 3, '2025-05-08 09:07:48', '2025-05-08 09:09:39'),
(33, 136, 85, 'fab fa-servicestack', 'Customers Satisfaction', 100, 5, '2025-05-08 09:08:22', '2025-05-08 09:08:22'),
(34, 137, 85, 'fab fa-servicestack', 'رضا العملاء', 100, 1, '2025-05-08 10:12:54', '2025-05-08 10:12:54'),
(35, 137, 85, 'fas fa-building', 'غرف فاخرة', 499, 2, '2025-05-08 10:13:35', '2025-05-08 10:13:35'),
(36, 137, 85, 'fas fa-user-secret', 'حارس أمن', 200, 3, '2025-05-08 10:14:00', '2025-05-08 10:14:00'),
(37, 137, 85, 'fas fa-bed', 'الغرفة غير متاحة.', 300, 5, '2025-05-08 10:14:31', '2025-05-08 10:14:31'),
(38, 138, 86, 'fas fa-bed iconpicker-component', 'Room Available', 300, 1, '2025-05-08 01:42:51', '2025-05-08 01:43:10'),
(39, 138, 86, 'fas fa-user-secret', 'Security Guard', 200, 2, '2025-05-08 01:52:13', '2025-05-08 03:10:03'),
(40, 138, 86, 'far fa-hospital', 'Luxurious Rooms', 499, 3, '2025-05-08 03:07:48', '2025-05-08 03:09:39'),
(41, 138, 86, 'fab fa-servicestack', 'Customers Satisfaction', 100, 5, '2025-05-08 03:08:22', '2025-05-08 03:08:22'),
(42, 139, 86, 'fab fa-servicestack', 'رضا العملاء', 100, 1, '2025-05-08 04:12:54', '2025-05-08 04:12:54'),
(43, 139, 86, 'fas fa-building', 'غرف فاخرة', 499, 2, '2025-05-08 04:13:35', '2025-05-08 04:13:35'),
(44, 139, 86, 'fas fa-user-secret', 'حارس أمن', 200, 3, '2025-05-08 04:14:00', '2025-05-08 04:14:00'),
(45, 139, 86, 'fas fa-bed', 'الغرفة غير متاحة.', 300, 5, '2025-05-08 04:14:31', '2025-05-08 04:14:31'),
(47, 140, 86, 'fas fa-user-secret', 'Security Guard', 200, 2, '2025-05-08 01:52:13', '2025-05-08 03:10:03'),
(48, 140, 86, 'far fa-hospital', 'Luxurious Rooms', 499, 3, '2025-05-08 03:07:48', '2025-05-08 03:09:39'),
(49, 140, 86, 'fab fa-servicestack', 'Customers Satisfaction', 100, 5, '2025-05-08 03:08:22', '2025-05-08 03:08:22'),
(50, 141, 86, 'fab fa-servicestack', 'رضا العملاء', 100, 1, '2025-05-08 04:12:54', '2025-05-08 04:12:54'),
(51, 141, 86, 'fas fa-building', 'غرف فاخرة', 499, 2, '2025-05-08 04:13:35', '2025-05-08 04:13:35'),
(52, 141, 86, 'fas fa-user-secret', 'حارس أمن', 200, 3, '2025-05-08 04:14:00', '2025-05-08 04:14:00'),
(53, 141, 86, 'fas fa-bed', 'الغرفة غير متاحة.', 300, 5, '2025-05-08 04:14:31', '2025-05-08 04:14:31'),
(54, 140, 87, 'fas fa-check-circle', 'Tour Package Completed', 200, 1, '2025-05-08 12:29:47', '2025-05-08 12:30:43'),
(55, 140, 87, 'fas fa-fighter-jet', 'Tour Package Available', 100, 2, '2025-05-08 12:30:26', '2025-05-08 12:30:26'),
(56, 140, 87, 'fab fa-gratipay', 'Customers Satisfactions', 100, 3, '2025-05-08 12:31:17', '2025-05-08 12:31:17'),
(57, 141, 87, 'fas fa-wine-bottle', 'الكثير من وسائل الراحة', 300, 1, '2025-05-08 13:09:25', '2025-05-08 13:09:25'),
(58, 141, 87, 'fas fa-grin', 'الزبائن سعداء', 700, 2, '2025-05-08 13:09:47', '2025-05-08 13:09:47'),
(59, 141, 87, 'fa fa-fw fa-heart iconpicker-component', 'غرف فاخرة', 505, 3, '2025-05-08 13:10:08', '2025-05-08 13:10:08');

-- --------------------------------------------------------

--
-- Table structure for table `user_languages`
--

CREATE TABLE `user_languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) NOT NULL,
  `code` varchar(255) NOT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT '0',
  `dashboard_default` tinyint(4) NOT NULL DEFAULT '0',
  `rtl` tinyint(4) NOT NULL COMMENT '0 - LTR, 1- RTL',
  `keywords` longtext,
  `user_id` int(11) DEFAULT NULL,
  `added_type` varchar(50) NOT NULL DEFAULT 'admin' COMMENT 'admin,user',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_languages`
--

INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(132, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', 83, 'admin', '2025-04-27 12:53:59', '2025-05-18 09:49:17');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(133, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', 83, 'admin', '2025-04-27 12:53:59', '2025-05-18 09:49:17');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(134, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', 84, 'admin', '2025-04-27 12:55:29', '2025-04-27 12:55:29');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(135, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', 84, 'admin', '2025-04-27 12:55:29', '2025-04-27 12:55:29');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(136, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', 85, 'admin', '2025-04-27 12:56:32', '2025-04-27 12:56:32');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(137, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', 85, 'admin', '2025-04-27 12:56:32', '2025-04-27 12:56:32');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(138, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', 86, 'admin', '2025-04-27 12:58:58', '2025-04-27 12:58:58');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(139, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', 86, 'admin', '2025-04-27 12:58:58', '2025-04-27 12:58:58');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(140, 'English', 'en', 1, 1, 0, '{\n  \"404\": \"404\",\n  \"Log In\": \"Log In\",\n  \"Account Information\": \"Account Information\",\n  \"Sign Up\": \"Sign Up\",\n  \"Dashboard\": \"Dashboard\",\n  \"Logout\": \"Logout\",\n  \"Home\": \"Home\",\n  \"Rooms\": \"Rooms\",\n  \"Room Details\": \"Room Details\",\n  \"Booking Room\": \"Booking Room\",\n  \"Filter Rooms\": \"Filter Rooms\",\n  \"Services\": \"Services\",\n  \"Service Details\": \"Service Details\",\n  \"Blog\": \"Blog\",\n  \"Blog Details\": \"Blog Details\",\n  \"Gallery\": \"Gallery\",\n  \"More\": \"More\",\n  \"Packages\": \"Packages\",\n  \"Package Details\": \"Package Details\",\n  \"About\": \"About\",\n  \"Contact\": \"Contact\",\n  \"TYPE AND PRESS ENTER...\": \"TYPE AND PRESS ENTER...\",\n  \"Dates\": \"Dates\",\n  \"Beds\": \"Beds\",\n  \"Baths\": \"Baths\",\n  \"search\": \"search\",\n  \"Bed\": \"Bed\",\n  \"Bath\": \"Bath\",\n  \"read more\": \"read more\",\n  \"Quick Links\": \"Quick Links\",\n  \"Recent Blogs\": \"Recent Blogs\",\n  \"Room Reservation\": \"Room Reservation\",\n  \"Location\": \"Location\",\n  \"Reviews\": \"Reviews\",\n  \"Address\": \"Address\",\n  \"Phone\": \"Phone\",\n  \"Email\": \"Email\",\n  \"Give Your Review\": \"Give Your Review\",\n  \"Review\": \"Review\",\n  \"Name\": \"Name\",\n  \"Submit\": \"Submit\",\n  \"Night\": \"Night\",\n  \"Nights\": \"Nights\",\n  \"Number of Nights\": \"Number of Nights\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"Number of nights will be calculated based on checkin & checkout date\",\n  \"Guests\": \"Guests\",\n  \"Full Name\": \"Full Name\",\n  \"Select Payment Gateway\": \"Select Payment Gateway\",\n  \"book now\": \"book now\",\n  \"Category\": \"Category\",\n  \"Related Rooms\": \"Related Rooms\",\n  \"More Services\": \"More Services\",\n  \"Admin\": \"Admin\",\n  \"View Blog\": \"View Blog\",\n  \"Search Here\": \"Search Here\",\n  \"Client\\u2019s Comments\": \"Client\\u2019s Comments\",\n  \"Write Your Comment\": \"Write Your Comment\",\n  \"Write Here\": \"Write Here\",\n  \"Show All\": \"Show All\",\n  \"Package Name\": \"Package Name\",\n  \"Search By Package Name\": \"Search By Package Name\",\n  \"Sort By\": \"Sort By\",\n  \"Select One\": \"Select One\",\n  \"New Packages\": \"New Packages\",\n  \"Old Packages\": \"Old Packages\",\n  \"Location Search\": \"Location Search\",\n  \"Search By Location\": \"Search By Location\",\n  \"Filter By Price\": \"Filter By Price\",\n  \"Price\": \"Price\",\n  \"Maximum Persons\": \"Maximum Persons\",\n  \"Package Price\": \"Package Price\",\n  \"Photo Gallery\": \"Photo Gallery\",\n  \"Detailed Day-wise Itinerary\": \"Detailed Day-wise Itinerary\",\n  \"Day\": \"Day\",\n  \"Days\": \"Days\",\n  \"Detailed Time-wise Itinerary\": \"Detailed Time-wise Itinerary\",\n  \"Places Will Be Covered\": \"Places Will Be Covered\",\n  \"Client\'s Reviews\": \"Client\'s Reviews\",\n  \"Book Package\": \"Book Package\",\n  \"Phone Number\": \"Phone Number\",\n  \"Email Address\": \"Email Address\",\n  \"Number of Visitors\": \"Number of Visitors\",\n  \"Book Now\": \"Book Now\",\n  \"Information\": \"Information\",\n  \"Plan Type\": \"Plan Type\",\n  \"Share This Package\": \"Share This Package\",\n  \"Help & Support\": \"Help & Support\",\n  \"Latest Packages\": \"Latest Packages\",\n  \"view package\": \"view package\",\n  \"Send A Message\": \"Send A Message\",\n  \"Email Subject\": \"Email Subject\",\n  \"Write Message\": \"Write Message\",\n  \"Send\": \"Send\",\n  \"Login\": \"Login\",\n  \"Password\": \"Password\",\n  \"Lost your password?\": \"Lost your password?\",\n  \"Reset Password\": \"Reset Password\",\n  \"New Password\": \"New Password\",\n  \"Confirm New Password\": \"Confirm New Password\",\n  \"submit\": \"submit\",\n  \"Signup\": \"Signup\",\n  \"Username\": \"Username\",\n  \"Confirm Password\": \"Confirm Password\",\n  \"Room Bookings\": \"Room Bookings\",\n  \"Package Bookings\": \"Package Bookings\",\n  \"Edit Profile\": \"Edit Profile\",\n  \"Change Password\": \"Change Password\",\n  \"User Information\": \"User Information\",\n  \"City\": \"City\",\n  \"State\": \"State\",\n  \"Country\": \"Country\",\n  \"Total Room Booking\": \"Total Room Booking\",\n  \"Total Package Booking\": \"Total Package Booking\",\n  \"Recent Room Bookings\": \"Recent Room Bookings\",\n  \"Booking Number\": \"Booking Number\",\n  \"Title\": \"Title\",\n  \"Booking Date\": \"Booking Date\",\n  \"Booking Status\": \"Booking Status\",\n  \"Action\": \"Action\",\n  \"Complete\": \"Complete\",\n  \"Incomplete\": \"Incomplete\",\n  \"Pending\": \"Pending\",\n  \"Details\": \"Details\",\n  \"Room Booking Details\": \"Room Booking Details\",\n  \"Booking\": \"Booking\",\n  \"print\": \"print\",\n  \"Payment Information\": \"Payment Information\",\n  \"Payment Status\": \"Payment Status\",\n  \"Paid\": \"Paid\",\n  \"Unpaid\": \"Unpaid\",\n  \"Amount\": \"Amount\",\n  \"Payment Method\": \"Payment Method\",\n  \"back\": \"back\",\n  \"Recent Package Bookings\": \"Recent Package Bookings\",\n  \"Package Booking Details\": \"Package Booking Details\",\n  \"Upload\": \"Upload\",\n  \"First Name\": \"First Name\",\n  \"Last Name\": \"Last Name\",\n  \"Contact Number\": \"Contact Number\",\n  \"Current Password\": \"Current Password\",\n  \"Popular Features\": \"Popular Features\",\n  \"No Testimonial Found!\": \"No Testimonial Found !\",\n  \"No Facilitie Found!\": \"No Facilitie Found !\",\n  \"No Featured Package Found!\": \"No Featured Package Found !\",\n  \"No Featured Room Found!\": \"No Featured Room Found !\",\n  \"No Brand Found!\": \"No Brand Found !\",\n  \"No Room Found!\": \"No Room Found !\",\n  \"No Service Found!\": \"No Service Found!\",\n  \"No Post Category Found!\": \"No Post Category Found!\",\n  \"No Post Found!\": \"No Post Found !\",\n  \"No Latest Post Found!\": \"No Latest Post Found !\",\n  \"No Gallery Found!\": \"No Gallery Found!\",\n  \"No Package Found!\": \"No Package Found !\",\n  \"No Room Booking Found!\": \"No Room Booking Found !\",\n  \"No Package Booking Found!\": \"No Package Booking Found !\",\n  \"No Quick Link Found!\": \"No Quick Link Found !\",\n  \"No Slider Found!\": \"No Slider Found !\",\n  \"No Featured Service Found!\": \"No Featured Service Found !\",\n  \"No FAQ Found!\": \"No FAQ Found !\",\n  \"Forget Password\": \"Forget Password\",\n  \"Search By Post Title\": \"Search By Post Title\",\n  \"proceed\": \"proceed\",\n  \"This Room Has No Review Yet .\": \"This Room Has No Review Yet .\",\n  \"This Package Has No Review Yet .\": \"This Package Has No Review Yet .\",\n  \"Negotiable\": \"Negotiable\",\n  \"Maximum Persons: Ascending\": \"Maximum Persons: Ascending\",\n  \"Maximum Persons: Descending\": \"Maximum Persons: Descending\",\n  \"Number of Days\": \"Number of Days\",\n  \"All\": \"All\",\n  \"Recent Posts\": \"Recent Posts\",\n  \"Number of Days: Ascending\": \"Number of Days: Ascending\",\n  \"Number of Days: Descending\": \"Number of Days: Descending\",\n  \"Location on Map\": \"Location on Map\",\n  \"Click here to see in map\": \"Click here to see in map\",\n  \"on Map\": \"on Map\",\n  \"Up to\": \"Up to\",\n  \"Person & More\": \"Person & More\",\n  \"Persons & More\": \"Persons & More\",\n  \"Google Map\": \"Google Map\",\n  \"Contact Info\": \"Contact Info\",\n  \"Guest\": \"Guest\",\n  \"Filters\": \"Filters\",\n  \"Check In \\/ Out Date\": \"Check In \\/ Out Date\",\n  \"Rent\": \"Rent\",\n  \"Oldest Rooms\": \"Oldest Rooms\",\n  \"Rent: Low to High\": \"Rent: Low to High\",\n  \"Rent: High to Low\": \"Rent: High to Low\",\n  \"Ammenities\": \"Ammenities\",\n  \"Success\": \"Success\",\n  \"Thank You.\": \"Thank You\",\n  \"Number of Guests\": \"Number of Guests\",\n  \"Download Invoice\": \"Download Invoice\",\n  \"Post Details\": \"Post Details\",\n  \"FIXED\": \"FIXED\",\n  \"NEGOTIABLE\": \"NEGOTIABLE\",\n  \"Person\": \"Person\",\n  \"Persons\": \"Persons\",\n  \"Categories\": \"Categories\",\n  \"To Give Your Review\": \"To Give Your Review\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"You are now booking as a guest. if you want to log in before booking, then please\",\n  \"Click Here\": \"Click Here\",\n  \"Related Packages\": \"Related Packages\",\n  \"Card Number\": \"Card Number\",\n  \"Card Code\": \"Card Code\",\n  \"Expire Year\": \"Expire Year\",\n  \"Expire Month\": \"Expire Month\",\n  \"Latest Rooms\": \"Latest Rooms\",\n  \"More Amenities\": \"More Amenities\",\n  \"Enter Your Coupon\": \"Enter Your Coupon\",\n  \"Apply\": \"Apply\",\n  \"Subtotal\": \"Subtotal\",\n  \"Fee\": \"Fee\",\n  \"Total Cost\": \"Total Cost\",\n  \"Customer\": \"Customer\",\n  \"Customer Name\": \"Customer Name\",\n  \"Customer Phone\": \"Customer Phone\",\n  \"Discount\": \"Discount\",\n  \"Total\": \"Total\",\n  \"Amenities\": \"Amenities\",\n  \"Latest Posts\": \"Latest Posts\",\n  \"View Post\": \"View Post\",\n  \"Share\": \"Share\",\n  \"Login via Google\": \"Login via Google\",\n  \"Enter Your Email Address\": \"Enter Your Email Address\",\n  \"We have sent you a mail with an invoice .\": \"We have sent you a mail with an invoice .\",\n  \"Price: Ascending\": \"Price: Ascending\",\n  \"Price: Descending\": \"Price: Descending\",\n  \"To Give Your Review.\": \"To Give Your Review .\",\n  \"Give Your Review.\": \"Give Your Review .\",\n  \"Book now\": \"Book now\",\n  \"Back\": \"Back\",\n  \"Search\": \"Search\",\n  \"The rating field is required.\": \"The rating field is required.\",\n  \"The dates field is required.\": \"The dates field is required.\",\n  \"The nights field is required.\": \"The nights field is required.\",\n  \"The customer name field is required.\": \"The customer name field is required.\",\n  \"The customer phone field is required.\": \"The customer phone field is required.\",\n  \"The customer email field is required.\": \"The customer email field is required.\",\n  \"The room is booked on these following dates:\": \"The room is booked on these following dates:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"The number of guests exceeds the maximum allowed for this room.\",\n  \"You can not apply this coupon for this rooms!\": \"You can not apply this coupon for this rooms!\",\n  \"Coupon applied successfully.\": \"Coupon applied successfully.\",\n  \"Coupon is not valid!\": \"Coupon is not valid!\",\n  \"Sorry, an error has occured!\": \"Sorry, an error has occured!\",\n  \"Sorry, coupon has been expired!\": \"Sorry, coupon has been expired!\",\n  \"You can not apply this coupon for this room!\": \"You can not apply this coupon for this room!\",\n  \"First, fillup the booking dates.\": \"First, fillup the booking dates.\",\n  \"You had not booked this room yet.\": \"You had not booked this room yet.\",\n  \"The star rating field is required.\": \"The star rating field is required.\",\n  \"Review saved successfully!\": \"Review saved successfully!\",\n  \"Email sent successfully!\": \"Email sent successfully!\",\n  \"Please, verify your email address.\": \"Please, verify your email address.\",\n  \"The provided credentials do not match our records!\": \"The provided credentials do not match our records!\",\n  \"Sorry, your account has been deactivated.\": \"Sorry, your account has been deactivated.\",\n  \"A mail was send to your email\": \"A mail was send to your email\",\n  \"New password created successfully\": \"New password created successfully\",\n  \"This link has expired. Please request it again.\": \"This link has expired. Please request it again.\",\n  \"The email field is required.\": \"The email field is required.\",\n  \"The email is already exits.\": \"The email is already exits.\",\n  \"No record found for\": \"No record found for\",\n  \"Please enter validated email.\": \"Please enter validated email.\",\n  \"Username has already been taken\": \"Username has already been taken\",\n  \"Email has already been taken\": \"Email has already been taken\",\n  \"The username field is required.\": \"The username field is required.\",\n  \"The username max length 255.\": \"The username max length 255.\",\n  \"The password field is required.\": \"The password field is required.\",\n  \"The password field must be at least 8 characters.\": \"The password field must be at least 8 characters.\",\n  \"The password field confirmation does not match.\": \"The password field confirmation does not match.\",\n  \"The password confirmation field is required.\": \"The password confirmation field is required.\",\n  \"A verification mail has been sent to your email address.\": \"A verification mail has been sent to your email address.\",\n  \"Your email has verified.\": \"Your email has verified.\",\n  \"Could not verify your email!\": \"Could not verify your email!\",\n  \"Your profile updated successfully.\": \"Your profile updated successfully.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"Your password was not updated, since the provided current password does not match.\",\n  \"Password updated successfully.\": \"Password updated successfully.\",\n  \"Your account has been banned.\": \"Your account has been banned.\",\n  \"Please verify that you are not a robot.\": \"Please verify that you are not a robot.\",\n  \"Captcha error! try again later or contact site admin.\": \"Captcha error! try again later or contact site admin.\",\n  \"Password confirmation failed.\": \"Password confirmation failed.\",\n  \"The confirm new password field is required.\": \"The confirm new password field is required.\",\n  \"Updated Successfully\": \"Updated Successfully\",\n  \"The username is already exits.\": \"The username is already exits.\",\n  \"The image field is required.\": \"The image field is required.\",\n  \"The first name is required.\": \"The first name is required.\",\n  \"The last name field is required.\": \"The last name field is required.\",\n  \"The contact number field is required.\": \"The contact number field is required.\",\n  \"The address field is required.\": \"The address field is required.\",\n  \"The city field is required.\": \"The city field is required.\",\n  \"The country field is required.\": \"The country field is required.\",\n  \"You had not purchased this package yet.\": \"You had not purchased this package yet.\",\n  \"You can not apply this coupon for this package!\": \"You can not apply this coupon for this package!\",\n  \"The visitors field must be numeric.\": \"The visitors field must be numeric.\",\n  \"The visitors email field is required.\": \"The visitors email field is required.\",\n  \"Please select a payment method.\": \"Please select a payment method.\",\n  \"The full name field is required.\": \"The full name field is required.\",\n  \"The subject field is required.\": \"The subject field is required.\",\n  \"The message field is required.\": \"The message field is required.\",\n  \"Invoice\": \"Invoice\",\n  \"We have sent you a mail with an invoice.\": \"We have sent you a mail with an invoice.\",\n  \"We have received your booking request.\": \"We have received your booking request.\",\n  \"You will be notified via mail once it is approved.\": \"You will be notified via mail once it is approved.\",\n  \"Your transaction was successful.\": \"Your transaction was successful.\",\n  \"Payment Success\": \"Payment Success\",\n  \"All Packages\": \"All Packages\",\n  \"All Rooms\": \"All Rooms\",\n  \"Welcome to Hotelia\": \"Welcome to Hotelia\",\n  \"Luxury Living\": \"Luxury Living\",\n  \"Choose Person\": \"Choose Person\",\n  \"Choose Day\": \"Choose Day\",\n  \"Choose Location\": \"Choose Location\",\n  \"Show More\": \"Show More\",\n  \"View All Items\": \"View All Items\",\n  \"All Posts\": \"All Posts\",\n  \"Read More\": \"Read More\",\n  \"Total Package Bookings\": \"Total Package Bookings\",\n  \"Total Room Bookings\": \"Total Room Bookings\",\n  \"Tax\": \"Tax\",\n  \"Bill to\": \"Bill to\",\n  \"Room Type\": \"Room Type\",\n  \"Check-In\": \"Check-In\",\n  \"Check-Out\": \"Check-Out\",\n  \"INVOICE\": \"INVOICE\",\n  \"Paid Amount\": \"Paid Amount\",\n  \"Thanks & Regards\": \"Thanks & Regards\",\n  \"Ratings\": \"Ratings\",\n  \"Reset All\": \"Reset All\",\n  \"View More\": \"View More\",\n  \"PER-PERSON\": \"PER-PERSON\",\n  \"Paid via\": \"Paid via\",\n  \"Share This Service\": \"Share This Service\",\n  \"Share This Room\": \"Share This Room\",\n  \"The payment type field is required.\": \"The payment type field is required.\",\n  \"Keep Me Logged In\": \"Keep Me Logged In\",\n  \"Don’t Have An Account?\": \"Don’t Have An Account?\",\n  \"Create\": \"Create\",\n  \"Back to Home\": \"Back to Home\",\n  \"Already Have A Account?\": \"Already Have A Account?\"\n}\n', 87, 'admin', '2025-04-27 13:00:52', '2025-04-27 13:00:52');
INSERT INTO `user_languages` (`id`, `name`, `code`, `is_default`, `dashboard_default`, `rtl`, `keywords`, `user_id`, `added_type`, `created_at`, `updated_at`) VALUES
(141, 'Arabic', 'ar', 0, 0, 1, '{\n  \"404\": \"404\",\n  \"Log In\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Account Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062d\\u0633\\u0627\\u0628\",\n  \"Sign Up\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Dashboard\": \"\\u0644\\u0648\\u062d\\u0629 \\u0627\\u0644\\u0642\\u064a\\u0627\\u062f\\u0629\",\n  \"Logout\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Home\": \"\\u0628\\u064a\\u062a\",\n  \"Rooms\": \"\\u063a\\u0631\\u0641\",\n  \"Room Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking Room\": \"\\u063a\\u0631\\u0641\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Filter Rooms\": \"\\u063a\\u0631\\u0641 \\u0627\\u0644\\u062a\\u0635\\u0641\\u064a\\u0629\",\n  \"Services\": \"\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Service Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Blog\": \"\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Blog Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Gallery\": \"\\u0645\\u0639\\u0631\\u0636\",\n  \"More\": \"\\u0623\\u0643\\u062b\\u0631\",\n  \"Packages\": \"\\u062d\\u0632\\u0645\",\n  \"Package Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"About\": \"\\u0639\\u0646\",\n  \"Contact\": \"\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"TYPE AND PRESS ENTER...\": \"\\u0627\\u0643\\u062a\\u0628 \\u0648\\u0627\\u0636\\u063a\\u0637 \\u0639\\u0644\\u0649 \\u0625\\u062f\\u062e\\u0627\\u0644 ...\",\n  \"Dates\": \"\\u0628\\u0644\\u062d\",\n  \"Beds\": \"\\u0623\\u0633\\u0631\\u0629\",\n  \"Baths\": \"\\u062d\\u0645\\u0627\\u0645\\u0627\\u062a\",\n  \"search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"Bed\": \"\\u0633\\u0631\\u064a\\u0631\",\n  \"Bath\": \"\\u062d\\u0645\\u0627\\u0645\",\n  \"read more\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Quick Links\": \"\\u0631\\u0648\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639\\u0629\",\n  \"Recent Blogs\": \"\\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0627\\u062a \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Room Reservation\": \"\\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Location\": \"\\u0645\\u0648\\u0642\\u0639\",\n  \"Reviews\": \"\\u0627\\u0644\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a\",\n  \"Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Phone\": \"\\u0647\\u0627\\u062a\\u0641\",\n  \"Email\": \"\\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Give Your Review\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"Review\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629\",\n  \"Name\": \"\\u0627\\u0633\\u0645\",\n  \"Submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Night\": \"\\u0644\\u064a\\u0644\\u0629\",\n  \"Nights\": \"\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of Nights\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a\",\n  \"Number of nights will be calculated based on checkin & checkout date\": \"\\u0633\\u064a\\u062a\\u0645 \\u062d\\u0633\\u0627\\u0628 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a \\u0628\\u0646\\u0627\\u0621\\u064b \\u0639\\u0644\\u0649 \\u062a\\u0627\\u0631\\u064a\\u062e Checkin & Checkout\",\n  \"Guests\": \"\\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Full Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644\",\n  \"Select Payment Gateway\": \"\\u062d\\u062f\\u062f \\u0628\\u0648\\u0627\\u0628\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Category\": \"\\u0641\\u0626\\u0629\",\n  \"Related Rooms\": \"\\u0627\\u0644\\u063a\\u0631\\u0641 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"More Services\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0627\\u062a\",\n  \"Admin\": \"\\u0645\\u0633\\u0624\\u0644\",\n  \"View Blog\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u062f\\u0648\\u0646\\u0629\",\n  \"Search Here\": \"\\u0627\\u0628\\u062d\\u062b \\u0647\\u0646\\u0627\",\n  \"Client\\u2019s Comments\": \"\\u062a\\u0639\\u0644\\u064a\\u0642\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Write Your Comment\": \"\\u0627\\u0643\\u062a\\u0628 \\u062a\\u0639\\u0644\\u064a\\u0642\\u0643\",\n  \"Write Here\": \"\\u0627\\u0643\\u062a\\u0628 \\u0647\\u0646\\u0627\",\n  \"Show All\": \"\\u0623\\u0638\\u0647\\u0631 \\u0643\\u0644 \\u0634\\u064a\\u0621\",\n  \"Package Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Search By Package Name\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Sort By\": \"\\u0641\\u0631\\u0632\",\n  \"Select One\": \"\\u062d\\u062f\\u062f \\u0648\\u0627\\u062d\\u062f\\u0629\",\n  \"New Packages\": \"\\u062d\\u0632\\u0645 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Old Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u0642\\u062f\\u064a\\u0645\\u0629\",\n  \"Location Search\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Search By Location\": \"\\u0627\\u0644\\u0628\\u062d\\u062b \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Filter By Price\": \"\\u062a\\u0635\\u0641\\u064a\\u0629 \\u062d\\u0633\\u0628 \\u0627\\u0644\\u0633\\u0639\\u0631\",\n  \"Price\": \"\\u0633\\u0639\\u0631\",\n  \"Maximum Persons\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Package Price\": \"\\u0633\\u0639\\u0631 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Photo Gallery\": \"\\u0645\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0635\\u0648\\u0631\",\n  \"Detailed Day-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0627\\u0644\\u062a\\u0641\\u0635\\u064a\\u0644\\u064a\",\n  \"Day\": \"\\u064a\\u0648\\u0645\",\n  \"Days\": \"\\u0623\\u064a\\u0627\\u0645\",\n  \"Detailed Time-wise Itinerary\": \"\\u062e\\u0637 \\u0633\\u064a\\u0631 \\u0627\\u0644\\u0631\\u062d\\u0644\\u0629 \\u0628\\u0627\\u0644\\u0648\\u0642\\u062a \\u0627\\u0644\\u0645\\u0641\\u0635\\u0644\",\n  \"Places Will Be Covered\": \"\\u0633\\u064a\\u062a\\u0645 \\u062a\\u063a\\u0637\\u064a\\u0629 \\u0627\\u0644\\u0623\\u0645\\u0627\\u0643\\u0646\",\n  \"Client\'s Reviews\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0627\\u062a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Book Package\": \"\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u062a\\u0627\\u0628\",\n  \"Phone Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062a\\u0644\\u064a\\u0641\\u0648\\u0646\",\n  \"Email Address\": \"\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Number of Visitors\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631\",\n  \"Book Now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0629\",\n  \"Plan Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u062e\\u0637\\u0629\",\n  \"Share This Package\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Help & Support\": \"\\u0627\\u0644\\u0645\\u0633\\u0627\\u0639\\u062f\\u0629 \\u0648\\u0627\\u0644\\u062f\\u0639\\u0645\",\n  \"Latest Packages\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"view package\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Send A Message\": \"\\u0623\\u0631\\u0633\\u0644 \\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Email Subject\": \"\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"Write Message\": \"\\u0627\\u0643\\u062a\\u0628 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629\",\n  \"Send\": \"\\u064a\\u0631\\u0633\\u0644\",\n  \"Login\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Lost your password?\": \"\\u0641\\u0642\\u062f\\u062a \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\\u061f\",\n  \"Reset Password\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u062a\\u0639\\u064a\\u064a\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Reset All\": \"\\u0625\\u0639\\u0627\\u062f\\u0629 \\u0636\\u0628\\u0637 \\u0627\\u0644\\u0643\\u0644\",\n  \"New Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"Confirm New Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629\",\n  \"submit\": \"\\u064a\\u064f\\u0642\\u062f\\u0651\\u0650\\u0645\",\n  \"Signup\": \"\\u0627\\u0634\\u062a\\u0631\\u0627\\u0643\",\n  \"Username\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Confirm Password\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Edit Profile\": \"\\u062a\\u062d\\u0631\\u064a\\u0631 \\u0627\\u0644\\u0645\\u0644\\u0641 \\u0627\\u0644\\u0634\\u062e\\u0635\\u064a\",\n  \"Change Password\": \"\\u062a\\u063a\\u064a\\u064a\\u0631 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"User Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"City\": \"\\u0645\\u062f\\u064a\\u0646\\u0629\",\n  \"State\": \"\\u0648\\u0644\\u0627\\u064a\\u0629\",\n  \"Country\": \"\\u062f\\u0648\\u0644\\u0629\",\n  \"Total Room Booking\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Total Package Booking\": \"\\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Recent Room Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631\\u0629\",\n  \"Booking Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Title\": \"\\u0639\\u0646\\u0648\\u0627\\u0646\",\n  \"Booking Date\": \"\\u062a\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Booking Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"Action\": \"\\u0641\\u0639\\u0644\",\n  \"Complete\": \"\\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Incomplete\": \"\\u063a\\u064a\\u0631 \\u0645\\u0643\\u062a\\u0645\\u0644\",\n  \"Pending\": \"\\u0642\\u064a\\u062f \\u0627\\u0644\\u0627\\u0646\\u062a\\u0638\\u0627\\u0631\",\n  \"Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"Room Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Booking\": \"\\u0627\\u0644\\u062d\\u062c\\u0632\",\n  \"print\": \"\\u0645\\u0637\\u0628\\u0639\\u0629\",\n  \"Payment Information\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Payment Status\": \"\\u062d\\u0627\\u0644\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"Paid\": \"\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Unpaid\": \"\\u063a\\u064a\\u0631 \\u0645\\u062f\\u0641\\u0648\\u0639 \\u0627\\u0644\\u0623\\u062c\\u0631\",\n  \"Amount\": \"\\u0643\\u0645\\u064a\\u0629\",\n  \"Payment Method\": \"\\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"back\": \"\\u062e\\u0644\\u0641\",\n  \"Recent Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Package Booking Details\": \"\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629\",\n  \"Upload\": \"\\u0631\\u0641\\u0639\",\n  \"First Name\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644\",\n  \"Last Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0627\\u0626\\u0644\\u0629\",\n  \"Contact Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Current Password\": \"\\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629\",\n  \"Popular Features\": \"\\u0645\\u064a\\u0632\\u0627\\u062a \\u0634\\u0639\\u0628\\u064a\\u0629\",\n  \"No Testimonial Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0647\\u0627\\u062f\\u0629!\",\n  \"No Facilitie Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u064a\\u0633\\u0631\\u0629!\",\n  \"No Featured Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Featured Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No Brand Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0639\\u0644\\u0627\\u0645\\u0629 \\u062a\\u062c\\u0627\\u0631\\u064a\\u0629!\",\n  \"No Room Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629!\",\n  \"No Post Category Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0641\\u0626\\u0629 \\u0628\\u0639\\u062f!\",\n  \"No Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Latest Post Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0622\\u062e\\u0631 \\u0645\\u0646\\u0634\\u0648\\u0631!\",\n  \"No Gallery Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0645\\u0639\\u0631\\u0636!\",\n  \"No Package Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u0632\\u0645\\u0629!\",\n  \"No Room Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062d\\u062c\\u0632 \\u063a\\u0631\\u0641\\u0629!\",\n  \"No Package Booking Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"No Quick Link Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0631\\u0627\\u0628\\u0637 \\u0633\\u0631\\u064a\\u0639!\",\n  \"No Slider Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0634\\u0631\\u064a\\u0637 \\u0627\\u0644\\u062a\\u0645\\u0631\\u064a\\u0631!\",\n  \"No Featured Service Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u062e\\u062f\\u0645\\u0629 \\u0645\\u0645\\u064a\\u0632\\u0629!\",\n  \"No FAQ Found!\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0633\\u0626\\u0644\\u0629 \\u0627\\u0644\\u0634\\u0627\\u0626\\u0639\\u0629!\",\n  \"Forget Password\": \"\\u0646\\u0646\\u0633\\u0649 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631\",\n  \"Search By Post Title\": \"\\u0627\\u0628\\u062d\\u062b \\u0639\\u0646 \\u0637\\u0631\\u064a\\u0642 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0639\\u062f\",\n  \"proceed\": \"\\u064a\\u062a\\u0627\\u0628\\u0639\",\n  \"This Room Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"This Package Has No Review Yet .\": \"\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0644\\u064a\\u0633 \\u0644\\u0647\\u0627 \\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u0628\\u0639\\u062f.\",\n  \"Negotiable\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Maximum Persons: Ascending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Maximum Persons: Descending\": \"\\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0644\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Number of Days\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645\",\n  \"All\": \"\\u0627\\u0644\\u062c\\u0645\\u064a\\u0639\",\n  \"Recent Posts\": \"\\u0627\\u0644\\u0648\\u0638\\u0627\\u0626\\u0641 \\u0627\\u0644\\u062d\\u062f\\u064a\\u062b\\u0629\",\n  \"Number of Days: Ascending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Number of Days: Descending\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0623\\u064a\\u0627\\u0645: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"Location on Map\": \"\\u0627\\u0644\\u0645\\u0648\\u0642\\u0639 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Click here to see in map\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627 \\u0644\\u062a\\u0631\\u0649 \\u0641\\u064a \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"on Map\": \"\\u0639\\u0644\\u0649 \\u0627\\u0644\\u062e\\u0631\\u064a\\u0637\\u0629\",\n  \"Up to\": \"\\u062d\\u062a\\u0649\",\n  \"Person & More\": \"\\u0634\\u062e\\u0635 \\u0648\\u0623\\u0643\\u062b\\u0631\",\n  \"Persons & More\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635 \\u0648\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Google Map\": \"\\u062e\\u0631\\u064a\\u0637\\u0629 \\u062c\\u0648\\u062c\\u0644\",\n  \"Contact Info\": \"\\u0645\\u0639\\u0644\\u0648\\u0645\\u0627\\u062a \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644\",\n  \"Guest\": \"\\u0636\\u064a\\u0641\",\n  \"Filters\": \"\\u0627\\u0644\\u0645\\u0631\\u0634\\u062d\\u0627\\u062a\",\n  \"Check In \\/ Out Date\": \"\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0627\\u0644\\u062a\\u0627\\u0631\\u064a\\u062e \\/ \\u0627\\u0644\\u062e\\u0631\\u0648\\u062c\",\n  \"Rent\": \"\\u0625\\u064a\\u062c\\u0627\\u0631\",\n  \"Oldest Rooms\": \"\\u0623\\u0642\\u062f\\u0645 \\u063a\\u0631\\u0641\",\n  \"Rent: Low to High\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0646\\u062e\\u0641\\u0636 \\u0625\\u0644\\u0649 \\u0645\\u0631\\u062a\\u0641\\u0639\",\n  \"Rent: High to Low\": \"\\u0627\\u0644\\u0625\\u064a\\u062c\\u0627\\u0631: \\u0645\\u0631\\u062a\\u0641\\u0639 \\u0625\\u0644\\u0649 \\u0645\\u0646\\u062e\\u0641\\u0636\",\n  \"Ammenities\": \"\\u0627\\u0644\\u0630\\u0628\\u0627\\u062a\",\n  \"Success\": \"\\u0646\\u062c\\u0627\\u062d\",\n  \"Thank You.\": \"\\u0634\\u0643\\u0631\\u064b\\u0627 \\u0644\\u0643\",\n  \"Number of Guests\": \"\\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641\",\n  \"Download Invoice\": \"\\u062a\\u0646\\u0632\\u064a\\u0644 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Post Details\": \"\\u0628\\u0639\\u062f \\u0627\\u0644\\u062a\\u0641\\u0627\\u0635\\u064a\\u0644\",\n  \"FIXED\": \"\\u0645\\u064f\\u062b\\u064e\\u0628\\u0651\\u064e\\u062a\",\n  \"NEGOTIABLE\": \"\\u0642\\u0627\\u0628\\u0644 \\u0644\\u0644\\u062a\\u0641\\u0627\\u0648\\u0636\",\n  \"Person\": \"\\u0634\\u062e\\u0635\",\n  \"Persons\": \"\\u0627\\u0644\\u0623\\u0634\\u062e\\u0627\\u0635\",\n  \"Categories\": \"\\u0641\\u0626\\u0627\\u062a\",\n  \"To Give Your Review\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643\",\n  \"You are now booking as a guest. if you want to log in before booking, then please\": \"\\u0623\\u0646\\u062a \\u0627\\u0644\\u0622\\u0646 \\u062a\\u062d\\u062c\\u0632 \\u0643\\u0636\\u064a\\u0641.\",\n  \"Click Here\": \"\\u0627\\u0646\\u0642\\u0631 \\u0647\\u0646\\u0627\",\n  \"Related Packages\": \"\\u0627\\u0644\\u062d\\u0632\\u0645 \\u0630\\u0627\\u062a \\u0627\\u0644\\u0635\\u0644\\u0629\",\n  \"Card Number\": \"\\u0631\\u0642\\u0645 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Card Code\": \"\\u0631\\u0645\\u0632 \\u0627\\u0644\\u0628\\u0637\\u0627\\u0642\\u0629\",\n  \"Expire Year\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u062a\\u0647\\u0627\",\n  \"Expire Month\": \"\\u062a\\u0646\\u062a\\u0647\\u064a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0634\\u0647\\u0631\",\n  \"Latest Rooms\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"More Amenities\": \"\\u0627\\u0644\\u0645\\u0632\\u064a\\u062f \\u0645\\u0646 \\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Enter Your Coupon\": \"\\u0623\\u062f\\u062e\\u0644 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643\",\n  \"Apply\": \"\\u064a\\u062a\\u0642\\u062f\\u0645\",\n  \"Subtotal\": \"\\u0646\\u0637\\u0627\\u0642 \\u0641\\u0631\\u0639\\u064a\",\n  \"Fee\": \"\\u0645\\u0635\\u0627\\u0631\\u064a\\u0641\",\n  \"Total Cost\": \"\\u0627\\u0644\\u062a\\u0643\\u0644\\u0641\\u0629 \\u0627\\u0644\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a\\u0629\",\n  \"Customer\": \"\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Name\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Customer Phone\": \"\\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644\",\n  \"Discount\": \"\\u062a\\u062e\\u0641\\u064a\\u0636\",\n  \"Total\": \"\\u0627\\u0644\\u0645\\u062c\\u0645\\u0648\\u0639\",\n  \"Amenities\": \"\\u0648\\u0633\\u0627\\u0626\\u0644 \\u0627\\u0644\\u0631\\u0627\\u062d\\u0629\",\n  \"Latest Posts\": \"\\u0623\\u062d\\u062f\\u062b \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"View Post\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0646\\u0634\\u0648\\u0631\",\n  \"Share\": \"\\u064a\\u0634\\u0627\\u0631\\u0643\",\n  \"Login via Google\": \"\\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644 \\u0639\\u0628\\u0631 Google\",\n  \"Enter Your Email Address\": \"\\u0623\\u062f\\u062e\\u0644 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"We have sent you a mail with an invoice .\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"Price: Ascending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u062a\\u0635\\u0627\\u0639\\u062f\\u064a\",\n  \"Price: Descending\": \"\\u0627\\u0644\\u0633\\u0639\\u0631: \\u0627\\u0644\\u0647\\u0628\\u0648\\u0637\",\n  \"To Give Your Review.\": \"\\u0644\\u0625\\u0639\\u0637\\u0627\\u0621 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Give Your Review.\": \"\\u0623\\u0639\\u0637 \\u0645\\u0631\\u0627\\u062c\\u0639\\u062a\\u0643.\",\n  \"Book now\": \"\\u0643\\u062a\\u0627\\u0628 \\u0627\\u0644\\u0622\\u0646\",\n  \"Back\": \"\\u062e\\u0644\\u0641\",\n  \"Search\": \"\\u064a\\u0628\\u062d\\u062b\",\n  \"The rating field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0642\\u064a\\u064a\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The dates field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The nights field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0644\\u064a\\u0627\\u0644\\u064a.\",\n  \"The customer name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer phone field is required.\": \"\\u062d\\u0642\\u0644 \\u0647\\u0627\\u062a\\u0641 \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The customer email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0639\\u0645\\u064a\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The room is booked on these following dates:\": \"\\u062a\\u0645 \\u062d\\u062c\\u0632 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0641\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062a\\u0627\\u0644\\u064a\\u0629:\",\n  \"The number of guests exceeds the maximum allowed for this room.\": \"\\u064a\\u062a\\u062c\\u0627\\u0648\\u0632 \\u0639\\u062f\\u062f \\u0627\\u0644\\u0636\\u064a\\u0648\\u0641 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0627\\u0644\\u0645\\u0633\\u0645\\u0648\\u062d \\u0628\\u0647 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629.\",\n  \"You can not apply this coupon for this rooms!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641!\",\n  \"Coupon applied successfully.\": \"\\u062a\\u0645 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Coupon is not valid!\": \"\\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u063a\\u064a\\u0631 \\u0635\\u0627\\u0644\\u062d\\u0629!\",\n  \"Sorry, an error has occured!\": \"\\u0622\\u0633\\u0641 \\u060c \\u062d\\u062f\\u062b \\u062e\\u0637\\u0623!\",\n  \"Sorry, coupon has been expired!\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u0627\\u0646\\u062a\\u0647\\u062a \\u0635\\u0644\\u0627\\u062d\\u064a\\u0629 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629!\",\n  \"You can not apply this coupon for this room!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629!\",\n  \"First, fillup the booking dates.\": \"\\u0623\\u0648\\u0644\\u0627 \\u060c \\u0645\\u0644\\u0621 \\u062a\\u0648\\u0627\\u0631\\u064a\\u062e \\u0627\\u0644\\u062d\\u062c\\u0632.\",\n  \"You had not booked this room yet.\": \"\\u0644\\u0645 \\u062a\\u062d\\u062c\\u0632 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629 \\u0628\\u0639\\u062f.\",\n  \"The star rating field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u062a\\u0635\\u0646\\u064a\\u0641 \\u0627\\u0644\\u0646\\u062c\\u0648\\u0645.\",\n  \"Review saved successfully!\": \"\\u0645\\u0631\\u0627\\u062c\\u0639\\u0629 \\u062d\\u0641\\u0638 \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Email sent successfully!\": \"\\u0623\\u0631\\u0633\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0628\\u0646\\u062c\\u0627\\u062d!\",\n  \"Please, verify your email address.\": \"\\u0645\\u0646 \\u0641\\u0636\\u0644\\u0643 \\u060c \\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"The provided credentials do not match our records!\": \"\\u0628\\u064a\\u0627\\u0646\\u0627\\u062a \\u0627\\u0644\\u0627\\u0639\\u062a\\u0645\\u0627\\u062f \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642 \\u0645\\u0639 \\u0633\\u062c\\u0644\\u0627\\u062a\\u0646\\u0627!\",\n  \"Sorry, your account has been deactivated.\": \"\\u0622\\u0633\\u0641 \\u060c \\u0644\\u0642\\u062f \\u062a\\u0645 \\u0625\\u0644\\u063a\\u0627\\u0621 \\u062a\\u0646\\u0634\\u064a\\u0637 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"A mail was send to your email\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0625\\u0644\\u0649 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"New password created successfully\": \"\\u062a\\u0645 \\u0625\\u0646\\u0634\\u0627\\u0621 \\u0643\\u0644\\u0645\\u0629 \\u0645\\u0631\\u0648\\u0631 \\u062c\\u062f\\u064a\\u062f\\u0629 \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"This link has expired. Please request it again.\": \"\\u0627\\u0646\\u062a\\u0647\\u0649 \\u0647\\u0630\\u0627 \\u0627\\u0644\\u0631\\u0627\\u0628\\u0637.\",\n  \"The email field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The email is already exits.\": \"\\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0645\\u0648\\u062c\\u0632 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"No record found for\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u0627\\u0644\\u0639\\u062b\\u0648\\u0631 \\u0639\\u0644\\u0649 \\u0633\\u062c\\u0644 \\u0644\",\n  \"Please enter validated email.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u0625\\u062f\\u062e\\u0627\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0627\\u0644\\u0630\\u064a \\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646\\u0647.\",\n  \"Username has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645\",\n  \"Email has already been taken\": \"\\u062a\\u0645 \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644 \\u0623\\u062e\\u0630 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a\",\n  \"The username field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The username max length 255.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0627\\u0644\\u062d\\u062f \\u0627\\u0644\\u0623\\u0642\\u0635\\u0649 \\u0637\\u0648\\u0644 255.\",\n  \"The password field is required.\": \"\\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The password field must be at least 8 characters.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 8 \\u0623\\u062d\\u0631\\u0641 \\u0639\\u0644\\u0649 \\u0627\\u0644\\u0623\\u0642\\u0644.\",\n  \"The password field confirmation does not match.\": \"\\u062a\\u0623\\u0643\\u064a\\u062f \\u062d\\u0642\\u0644 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0644\\u0627 \\u064a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"The password confirmation field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"A verification mail has been sent to your email address.\": \"\\u062a\\u0645 \\u0625\\u0631\\u0633\\u0627\\u0644 \\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0625\\u0644\\u0649 \\u0639\\u0646\\u0648\\u0627\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Your email has verified.\": \"\\u062a\\u0645 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a.\",\n  \"Could not verify your email!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0628\\u0631\\u064a\\u062f\\u0643 \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a!\",\n  \"Your profile updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0645\\u0644\\u0641 \\u0627\\u0644\\u062a\\u0639\\u0631\\u064a\\u0641 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your password was not updated, since the provided current password does not match.\": \"\\u0644\\u0645 \\u064a\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062e\\u0627\\u0635\\u0629 \\u0628\\u0643 \\u060c \\u0644\\u0623\\u0646 \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062d\\u0627\\u0644\\u064a\\u0629 \\u0627\\u0644\\u0645\\u0642\\u062f\\u0645\\u0629 \\u0644\\u0627 \\u062a\\u062a\\u0637\\u0627\\u0628\\u0642.\",\n  \"Password updated successfully.\": \"\\u062a\\u0645 \\u062a\\u062d\\u062f\\u064a\\u062b \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0628\\u0646\\u062c\\u0627\\u062d.\",\n  \"Your account has been banned.\": \"\\u062a\\u0645 \\u062d\\u0638\\u0631 \\u062d\\u0633\\u0627\\u0628\\u0643.\",\n  \"Please verify that you are not a robot.\": \"\\u064a\\u0631\\u062c\\u0649 \\u0627\\u0644\\u062a\\u062d\\u0642\\u0642 \\u0645\\u0646 \\u0623\\u0646\\u0643 \\u0644\\u0633\\u062a \\u0631\\u0648\\u0628\\u0648\\u062a\\u064b\\u0627.\",\n  \"Captcha error! try again later or contact site admin.\": \"\\u062e\\u0637\\u0623 Captcha!\",\n  \"Password confirmation failed.\": \"\\u0641\\u0634\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631.\",\n  \"The confirm new password field is required.\": \"\\u062d\\u0642\\u0644 \\u062a\\u0623\\u0643\\u064a\\u062f \\u0643\\u0644\\u0645\\u0629 \\u0627\\u0644\\u0645\\u0631\\u0648\\u0631 \\u0627\\u0644\\u062c\\u062f\\u064a\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Updated Successfully\": \"\\u062a\\u062d\\u062f\\u064a\\u062b \\u0628\\u0646\\u062c\\u0627\\u062d\",\n  \"The username is already exits.\": \"\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0645\\u0633\\u062a\\u062e\\u062f\\u0645 \\u0645\\u0648\\u062c\\u0648\\u062f \\u0628\\u0627\\u0644\\u0641\\u0639\\u0644.\",\n  \"The image field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0635\\u0648\\u0631\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The first name is required.\": \"\\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u0648\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The last name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0623\\u062e\\u064a\\u0631 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The contact number field is required.\": \"\\u062d\\u0642\\u0644 \\u0631\\u0642\\u0645 \\u0627\\u0644\\u0627\\u062a\\u0635\\u0627\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The address field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0639\\u0646\\u0648\\u0627\\u0646 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The city field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u062f\\u064a\\u0646\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The country field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0644\\u062f \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"You had not purchased this package yet.\": \"\\u0644\\u0645 \\u062a\\u0634\\u062a\\u0631\\u064a \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0628\\u0639\\u062f.\",\n  \"You can not apply this coupon for this package!\": \"\\u0644\\u0627 \\u064a\\u0645\\u0643\\u0646\\u0643 \\u062a\\u0637\\u0628\\u064a\\u0642 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u0642\\u0633\\u064a\\u0645\\u0629 \\u0644\\u0647\\u0630\\u0647 \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629!\",\n  \"The visitors field must be numeric.\": \"\\u064a\\u062c\\u0628 \\u0623\\u0646 \\u064a\\u0643\\u0648\\u0646 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0632\\u0648\\u0627\\u0631 \\u0631\\u0642\\u0645\\u064a\\u064b\\u0627.\",\n  \"The visitors email field is required.\": \"\\u0645\\u0637\\u0644\\u0648\\u0628 \\u062d\\u0642\\u0644 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0627\\u0644\\u0625\\u0644\\u0643\\u062a\\u0631\\u0648\\u0646\\u064a \\u0644\\u0644\\u0632\\u0648\\u0627\\u0631.\",\n  \"Please select a payment method.\": \"\\u0627\\u0644\\u0631\\u062c\\u0627\\u0621 \\u062a\\u062d\\u062f\\u064a\\u062f \\u0637\\u0631\\u064a\\u0642\\u0629 \\u0627\\u0644\\u062f\\u0641\\u0639.\",\n  \"The full name field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0627\\u0633\\u0645 \\u0627\\u0644\\u0643\\u0627\\u0645\\u0644 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The subject field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0645\\u0648\\u0636\\u0648\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"The message field is required.\": \"\\u062d\\u0642\\u0644 \\u0627\\u0644\\u0631\\u0633\\u0627\\u0644\\u0629 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Invoice\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"We have sent you a mail with an invoice.\": \"\\u0644\\u0642\\u062f \\u0623\\u0631\\u0633\\u0644\\u0646\\u0627 \\u0644\\u0643 \\u0628\\u0631\\u064a\\u062f\\u064b\\u0627 \\u0645\\u0639 \\u0641\\u0627\\u062a\\u0648\\u0631\\u0629.\",\n  \"We have received your booking request.\": \"\\u0644\\u0642\\u062f \\u062a\\u0644\\u0642\\u064a\\u0646\\u0627 \\u0637\\u0644\\u0628 \\u0627\\u0644\\u062d\\u062c\\u0632 \\u0627\\u0644\\u062e\\u0627\\u0635 \\u0628\\u0643.\",\n  \"You will be notified via mail once it is approved.\": \"\\u0633\\u064a\\u062a\\u0645 \\u0625\\u062e\\u0637\\u0627\\u0631\\u0643 \\u0639\\u0628\\u0631 \\u0627\\u0644\\u0628\\u0631\\u064a\\u062f \\u0628\\u0645\\u062c\\u0631\\u062f \\u0627\\u0644\\u0645\\u0648\\u0627\\u0641\\u0642\\u0629 \\u0639\\u0644\\u064a\\u0647.\",\n  \"Your transaction was successful.\": \"\\u0643\\u0627\\u0646\\u062a \\u0645\\u0639\\u0627\\u0645\\u0644\\u062a\\u0643 \\u0646\\u0627\\u062c\\u062d\\u0629.\",\n  \"Payment Success\": \"\\u0646\\u062c\\u0627\\u062d \\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"All Packages\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u062d\\u0632\\u0645\",\n  \"All Rooms\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Welcome to Hotelia\": \"\\u0645\\u0631\\u062d\\u0628\\u0627 \\u0628\\u0643\\u0645 \\u0641\\u064a \\u0641\\u0646\\u062f\\u0642\",\n  \"Luxury Living\": \"\\u0627\\u0644\\u0645\\u0639\\u064a\\u0634\\u0629 \\u0627\\u0644\\u0641\\u0627\\u062e\\u0631\\u0629\",\n  \"Choose Person\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0634\\u062e\\u0635\",\n  \"Choose Day\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u064a\\u0648\\u0645\",\n  \"Choose Location\": \"\\u0627\\u062e\\u062a\\u0631 \\u0627\\u0644\\u0645\\u0648\\u0642\\u0639\",\n  \"Show More\": \"\\u062a\\u0638\\u0647\\u0631 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"View All Items\": \"\\u0639\\u0631\\u0636 \\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0639\\u0646\\u0627\\u0635\\u0631\",\n  \"All Posts\": \"\\u062c\\u0645\\u064a\\u0639 \\u0627\\u0644\\u0645\\u0634\\u0627\\u0631\\u0643\\u0627\\u062a\",\n  \"Read More\": \"\\u0627\\u0642\\u0631\\u0623 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"Total Package Bookings\": \"\\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u062d\\u0632\\u0645\\u0629 \\u0627\\u0644\\u0643\\u0644\\u064a\\u0629\",\n  \"Total Room Bookings\": \"\\u0625\\u062c\\u0645\\u0627\\u0644\\u064a \\u062d\\u062c\\u0648\\u0632\\u0627\\u062a \\u0627\\u0644\\u063a\\u0631\\u0641\",\n  \"Tax\": \"\\u0636\\u0631\\u064a\\u0628\\u0629\",\n  \"Bill to\": \"\\u0645\\u0634\\u0631\\u0648\\u0639 \\u0642\\u0627\\u0646\\u0648\\u0646 \\u0644\",\n  \"Room Type\": \"\\u0646\\u0648\\u0639 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"Check-In\": \"\\u062a\\u062d\\u0642\\u0642 \\u0641\\u064a\",\n  \"Check-Out\": \"\\u0627\\u0644\\u062f\\u0641\\u0639\",\n  \"INVOICE\": \"\\u0641\\u0627\\u062a\\u0648\\u0631\\u0629\",\n  \"Paid Amount\": \"\\u0627\\u0644\\u0645\\u0628\\u0644\\u063a \\u0627\\u0644\\u0645\\u062f\\u0641\\u0648\\u0639\",\n  \"Thanks & Regards\": \"\\u0634\\u0643\\u0631\\u0627 \\u0648\\u062a\\u062d\\u064a\\u0627\\u062a\\u064a\",\n  \"Ratings\": \"\\u062a\\u0642\\u064a\\u064a\\u0645\\u0627\\u062a\",\n  \"View More\": \"\\u0639\\u0631\\u0636 \\u0627\\u0644\\u0645\\u0632\\u064a\\u062f\",\n  \"PER-PERSON\": \"\\u0644\\u0643\\u0644 \\u0634\\u062e\\u0635\",\n  \"Paid via\": \"\\u062f\\u0641\\u0639\\u062a \\u0639\\u0628\\u0631\",\n  \"Share This Service\": \"\\u0645\\u0634\\u0627\\u0631\\u0643\\u0629 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u062e\\u062f\\u0645\\u0629\",\n  \"Share This Room\": \"\\u0634\\u0627\\u0631\\u0643 \\u0647\\u0630\\u0647 \\u0627\\u0644\\u063a\\u0631\\u0641\\u0629\",\n  \"The payment type field is required.\": \"\\u062d\\u0642\\u0644 \\u0646\\u0648\\u0639 \\u0627\\u0644\\u062f\\u0641\\u0639 \\u0645\\u0637\\u0644\\u0648\\u0628.\",\n  \"Keep me login\": \"\\u0627\\u062c\\u0639\\u0644\\u0646\\u064a \\u062a\\u0633\\u062c\\u064a\\u0644 \\u0627\\u0644\\u062f\\u062e\\u0648\\u0644\",\n  \"Don\\u2019t Have An Account?\": \"\\u0644\\u064a\\u0633 \\u0644\\u062f\\u064a\\u0643 \\u062d\\u0633\\u0627\\u0628\\u061f\",\n  \"Create\": \"\\u064a\\u062e\\u0644\\u0642\",\n  \"Back to Home\": \"العودة إلى\",\n  \"Already Have A Account?\": \"هل لديك حساب بالفعل؟\"\n}\n', 87, 'admin', '2025-04-27 13:00:52', '2025-04-27 13:00:52');

-- --------------------------------------------------------

--
-- Table structure for table `user_mail_templates`
--

CREATE TABLE `user_mail_templates` (
  `id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `mail_type` varchar(50) CHARACTER SET utf8 NOT NULL,
  `mail_subject` varchar(255) CHARACTER SET utf8 NOT NULL,
  `mail_body` longtext CHARACTER SET utf8
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `user_mail_templates`
--

INSERT INTO `user_mail_templates` (`id`, `user_id`, `mail_type`, `mail_subject`, `mail_body`) VALUES
(485, 83, 'room_booking_for_online_gateway', 'Confirmation of Room Booking For Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your order with {website_title}! We\'re excited to let you know that we’ve received your booking. Below, you’ll find the details of your reservation:</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p>**Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p>If you have any questions or need to make changes to your booking, feel free to contact us anytime.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  <br />support@{website_title}.com</p>'),
(486, 83, 'room_booking_for_offline_gateway', 'Confirmation of Room Booking For Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your booking with {website_title}! We\'ve received your reservation request, and the details are provided below.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p> **Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p> **Payment Method: Offline**</p>\r\n<p>Once we receive your payment, we will send you a confirmation email.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  </p>'),
(487, 83, 'package_booking_for_online_gateway', 'Confirmation of Package Booking for Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>We’re excited to let you know that your package booking with {website_title} was successful! Below are the details of your booking:</p>\r\n<p>*Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>Thank you for choosing us for your travel experience. We look forward to welcoming you soon!</p>\r\n<p>If you have any questions, feel free to contact us at any time.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(488, 83, 'package_booking_for_offline_gateway', 'Confirmation of Package Booking for Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for booking with {website_title}! We’ve received your package booking request. Your payment is pending, and your booking will be confirmed once the payment is completed.</p>\r\n<p>**Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>**Payment Method: Offline**</p>\r\n<p> </p>\r\n<p>Once we receive the payment, we will send a confirmation email.</p>\r\n<p>If you have any questions, feel free to reach out.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}** </p>'),
(489, 83, 'room_booking_payment_cancelled', 'Room Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your room booking request with {website_title} has been rejected. We sincerely apologize for the inconvenience.</p>\r\n<p> **Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Room Name: {room_name}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}</p>\r\n<p>This rejection may be due to unavailability, incomplete payment, or other internal constraints.</p>\r\n<p>If you believe this was a mistake or would like to explore alternative options, please feel free to contact our support team.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(490, 83, 'package_booking_payment_cancelled', 'Package Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your package booking request with {website_title} has been rejected. We truly apologize for any inconvenience this may cause.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}</p>\r\n<p>This rejection may be due to limited availability, incomplete payment, or other internal reasons.</p>\r\n<p>If you\'d like assistance rebooking or exploring other package options, please contact our support team — we’ll be happy to help.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(491, 83, 'room_booking_payment_received', 'Room Booking Confirmation of Payment Received', '<p>Dear {customer_name},</p>\r\n<p>We’re pleased to inform you that we have received your payment for your room booking with {website_title}. Your booking is now confirmed!</p>\r\n<p> **Booking Details**</p>\r\n<ul>\r\n<li>Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </li>\r\n<li>**Room Information**</li>\r\n</ul>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}</p>\r\n<p>**Payment Status:**  Payment Received</p>\r\n<p>We look forward to hosting you! If you have any special requests or questions, feel free to reach out to us.</p>\r\n<p>Thank you for choosing **{website_title}**.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(492, 83, 'package_booking_payment_received', 'Package Booking Confirmation of Payment Received', '<p>Confirmation of Payment Received</p><p>{customer_name}</p><p>{website_title}<br /></p>'),
(493, 83, 'verify_email', 'Verify Your Email Address', '<p>Dear {customer_name},</p>\r\n<p>Thank you for registering with {website_title}!</p>\r\n<p>To complete your registration, please verify your email address by clicking the link below:</p>\r\n<p> Verification Link:  </p>\r\n<p>{verification_link}</p>\r\n<p>Username: {customer_username}</p>\r\n<p>If you did not create this account, please ignore this message.</p>\r\n<p>We\'re excited to have you with us!</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(494, 83, 'reset_password', 'Recover Password of Your Account', '<p>Hello {customer_name},</p>\r\n<p>We received a request to reset your password for your {website_title} account. You can reset it by clicking the link below:</p>\r\n<p> Password Reset Link:  <br />{password_reset_link}</p>\r\n<p>If you did not request this, please ignore this email. This link will expire shortly for your security.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(535, 84, 'room_booking_for_online_gateway', 'Confirmation of Room Booking For Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your order with {website_title}! We\'re excited to let you know that we’ve received your booking. Below, you’ll find the details of your reservation:</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p>**Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p>If you have any questions or need to make changes to your booking, feel free to contact us anytime.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  <br />support@{website_title}.com</p>'),
(536, 84, 'room_booking_for_offline_gateway', 'Confirmation of Room Booking For Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your booking with {website_title}! We\'ve received your reservation request, and the details are provided below.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p> **Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p> **Payment Method: Offline**</p>\r\n<p>Once we receive your payment, we will send you a confirmation email.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  </p>'),
(537, 84, 'package_booking_for_online_gateway', 'Confirmation of Package Booking for Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>We’re excited to let you know that your package booking with {website_title} was successful! Below are the details of your booking:</p>\r\n<p>*Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>Thank you for choosing us for your travel experience. We look forward to welcoming you soon!</p>\r\n<p>If you have any questions, feel free to contact us at any time.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(538, 84, 'package_booking_for_offline_gateway', 'Confirmation of Package Booking for Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for booking with {website_title}! We’ve received your package booking request. Your payment is pending, and your booking will be confirmed once the payment is completed.</p>\r\n<p>**Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>**Payment Method: Offline**</p>\r\n<p> </p>\r\n<p>Once we receive the payment, we will send a confirmation email.</p>\r\n<p>If you have any questions, feel free to reach out.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}** </p>'),
(539, 84, 'room_booking_payment_cancelled', 'Room Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your room booking request with {website_title} has been rejected. We sincerely apologize for the inconvenience.</p>\r\n<p> **Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Room Name: {room_name}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}</p>\r\n<p>This rejection may be due to unavailability, incomplete payment, or other internal constraints.</p>\r\n<p>If you believe this was a mistake or would like to explore alternative options, please feel free to contact our support team.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(540, 84, 'package_booking_payment_cancelled', 'Package Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your package booking request with {website_title} has been rejected. We truly apologize for any inconvenience this may cause.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}</p>\r\n<p>This rejection may be due to limited availability, incomplete payment, or other internal reasons.</p>\r\n<p>If you\'d like assistance rebooking or exploring other package options, please contact our support team — we’ll be happy to help.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(541, 84, 'room_booking_payment_received', 'Room Booking Confirmation of Payment Received', '<p>Dear {customer_name},</p>\r\n<p>We’re pleased to inform you that we have received your payment for your room booking with {website_title}. Your booking is now confirmed!</p>\r\n<p> **Booking Details**</p>\r\n<ul>\r\n<li>Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </li>\r\n<li>**Room Information**</li>\r\n</ul>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}</p>\r\n<p>**Payment Status:**  Payment Received</p>\r\n<p>We look forward to hosting you! If you have any special requests or questions, feel free to reach out to us.</p>\r\n<p>Thank you for choosing **{website_title}**.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(542, 84, 'package_booking_payment_received', 'Package Booking Confirmation of Payment Received', '<p>Confirmation of Payment Received</p><p>{customer_name}</p><p>{website_title}<br /></p>'),
(543, 84, 'verify_email', 'Verify Your Email Address', '<p>Dear {customer_name},</p>\r\n<p>Thank you for registering with {website_title}!</p>\r\n<p>To complete your registration, please verify your email address by clicking the link below:</p>\r\n<p> Verification Link:  </p>\r\n<p>{verification_link}</p>\r\n<p>Username: {customer_username}</p>\r\n<p>If you did not create this account, please ignore this message.</p>\r\n<p>We\'re excited to have you with us!</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(544, 84, 'reset_password', 'Recover Password of Your Account', '<p>Hello {customer_name},</p>\r\n<p>We received a request to reset your password for your {website_title} account. You can reset it by clicking the link below:</p>\r\n<p> Password Reset Link:  <br />{password_reset_link}</p>\r\n<p>If you did not request this, please ignore this email. This link will expire shortly for your security.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(545, 85, 'room_booking_for_online_gateway', 'Confirmation of Room Booking For Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your order with {website_title}! We\'re excited to let you know that we’ve received your booking. Below, you’ll find the details of your reservation:</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p>**Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p>If you have any questions or need to make changes to your booking, feel free to contact us anytime.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  <br />support@{website_title}.com</p>'),
(546, 85, 'room_booking_for_offline_gateway', 'Confirmation of Room Booking For Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your booking with {website_title}! We\'ve received your reservation request, and the details are provided below.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p> **Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p> **Payment Method: Offline**</p>\r\n<p>Once we receive your payment, we will send you a confirmation email.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  </p>'),
(547, 85, 'package_booking_for_online_gateway', 'Confirmation of Package Booking for Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>We’re excited to let you know that your package booking with {website_title} was successful! Below are the details of your booking:</p>\r\n<p>*Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>Thank you for choosing us for your travel experience. We look forward to welcoming you soon!</p>\r\n<p>If you have any questions, feel free to contact us at any time.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(548, 85, 'package_booking_for_offline_gateway', 'Confirmation of Package Booking for Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for booking with {website_title}! We’ve received your package booking request. Your payment is pending, and your booking will be confirmed once the payment is completed.</p>\r\n<p>**Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>**Payment Method: Offline**</p>\r\n<p> </p>\r\n<p>Once we receive the payment, we will send a confirmation email.</p>\r\n<p>If you have any questions, feel free to reach out.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}** </p>'),
(549, 85, 'room_booking_payment_cancelled', 'Room Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your room booking request with {website_title} has been rejected. We sincerely apologize for the inconvenience.</p>\r\n<p> **Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Room Name: {room_name}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}</p>\r\n<p>This rejection may be due to unavailability, incomplete payment, or other internal constraints.</p>\r\n<p>If you believe this was a mistake or would like to explore alternative options, please feel free to contact our support team.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(550, 85, 'package_booking_payment_cancelled', 'Package Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your package booking request with {website_title} has been rejected. We truly apologize for any inconvenience this may cause.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}</p>\r\n<p>This rejection may be due to limited availability, incomplete payment, or other internal reasons.</p>\r\n<p>If you\'d like assistance rebooking or exploring other package options, please contact our support team — we’ll be happy to help.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(551, 85, 'room_booking_payment_received', 'Room Booking Confirmation of Payment Received', '<p>Dear {customer_name},</p>\r\n<p>We’re pleased to inform you that we have received your payment for your room booking with {website_title}. Your booking is now confirmed!</p>\r\n<p> **Booking Details**</p>\r\n<ul>\r\n<li>Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </li>\r\n<li>**Room Information**</li>\r\n</ul>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}</p>\r\n<p>**Payment Status:**  Payment Received</p>\r\n<p>We look forward to hosting you! If you have any special requests or questions, feel free to reach out to us.</p>\r\n<p>Thank you for choosing **{website_title}**.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(552, 85, 'package_booking_payment_received', 'Package Booking Confirmation of Payment Received', '<p>Confirmation of Payment Received</p><p>{customer_name}</p><p>{website_title}<br /></p>'),
(553, 85, 'verify_email', 'Verify Your Email Address', '<p>Dear {customer_name},</p>\r\n<p>Thank you for registering with {website_title}!</p>\r\n<p>To complete your registration, please verify your email address by clicking the link below:</p>\r\n<p> Verification Link:  </p>\r\n<p>{verification_link}</p>\r\n<p>Username: {customer_username}</p>\r\n<p>If you did not create this account, please ignore this message.</p>\r\n<p>We\'re excited to have you with us!</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(554, 85, 'reset_password', 'Recover Password of Your Account', '<p>Hello {customer_name},</p>\r\n<p>We received a request to reset your password for your {website_title} account. You can reset it by clicking the link below:</p>\r\n<p> Password Reset Link:  <br />{password_reset_link}</p>\r\n<p>If you did not request this, please ignore this email. This link will expire shortly for your security.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(555, 86, 'room_booking_for_online_gateway', 'Confirmation of Room Booking For Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your order with {website_title}! We\'re excited to let you know that we’ve received your booking. Below, you’ll find the details of your reservation:</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p>**Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p>If you have any questions or need to make changes to your booking, feel free to contact us anytime.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  <br />support@{website_title}.com</p>'),
(556, 86, 'room_booking_for_offline_gateway', 'Confirmation of Room Booking For Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your booking with {website_title}! We\'ve received your reservation request, and the details are provided below.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p> **Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p> **Payment Method: Offline**</p>\r\n<p>Once we receive your payment, we will send you a confirmation email.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  </p>'),
(557, 86, 'package_booking_for_online_gateway', 'Confirmation of Package Booking for Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>We’re excited to let you know that your package booking with {website_title} was successful! Below are the details of your booking:</p>\r\n<p>*Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>Thank you for choosing us for your travel experience. We look forward to welcoming you soon!</p>\r\n<p>If you have any questions, feel free to contact us at any time.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(558, 86, 'package_booking_for_offline_gateway', 'Confirmation of Package Booking for Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for booking with {website_title}! We’ve received your package booking request. Your payment is pending, and your booking will be confirmed once the payment is completed.</p>\r\n<p>**Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>**Payment Method: Offline**</p>\r\n<p> </p>\r\n<p>Once we receive the payment, we will send a confirmation email.</p>\r\n<p>If you have any questions, feel free to reach out.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}** </p>'),
(559, 86, 'room_booking_payment_cancelled', 'Room Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your room booking request with {website_title} has been rejected. We sincerely apologize for the inconvenience.</p>\r\n<p> **Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Room Name: {room_name}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}</p>\r\n<p>This rejection may be due to unavailability, incomplete payment, or other internal constraints.</p>\r\n<p>If you believe this was a mistake or would like to explore alternative options, please feel free to contact our support team.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(560, 86, 'package_booking_payment_cancelled', 'Package Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your package booking request with {website_title} has been rejected. We truly apologize for any inconvenience this may cause.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}</p>\r\n<p>This rejection may be due to limited availability, incomplete payment, or other internal reasons.</p>\r\n<p>If you\'d like assistance rebooking or exploring other package options, please contact our support team — we’ll be happy to help.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(561, 86, 'room_booking_payment_received', 'Room Booking Confirmation of Payment Received', '<p>Dear {customer_name},</p>\r\n<p>We’re pleased to inform you that we have received your payment for your room booking with {website_title}. Your booking is now confirmed!</p>\r\n<p> **Booking Details**</p>\r\n<ul>\r\n<li>Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </li>\r\n<li>**Room Information**</li>\r\n</ul>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}</p>\r\n<p>**Payment Status:**  Payment Received</p>\r\n<p>We look forward to hosting you! If you have any special requests or questions, feel free to reach out to us.</p>\r\n<p>Thank you for choosing **{website_title}**.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(562, 86, 'package_booking_payment_received', 'Package Booking Confirmation of Payment Received', '<p>Confirmation of Payment Received</p><p>{customer_name}</p><p>{website_title}<br /></p>'),
(563, 86, 'verify_email', 'Verify Your Email Address', '<p>Dear {customer_name},</p>\r\n<p>Thank you for registering with {website_title}!</p>\r\n<p>To complete your registration, please verify your email address by clicking the link below:</p>\r\n<p> Verification Link:  </p>\r\n<p>{verification_link}</p>\r\n<p>Username: {customer_username}</p>\r\n<p>If you did not create this account, please ignore this message.</p>\r\n<p>We\'re excited to have you with us!</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(564, 86, 'reset_password', 'Recover Password of Your Account', '<p>Hello {customer_name},</p>\r\n<p>We received a request to reset your password for your {website_title} account. You can reset it by clicking the link below:</p>\r\n<p> Password Reset Link:  <br />{password_reset_link}</p>\r\n<p>If you did not request this, please ignore this email. This link will expire shortly for your security.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(565, 87, 'room_booking_for_online_gateway', 'Confirmation of Room Booking For Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your order with {website_title}! We\'re excited to let you know that we’ve received your booking. Below, you’ll find the details of your reservation:</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p>**Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p>If you have any questions or need to make changes to your booking, feel free to contact us anytime.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  <br />support@{website_title}.com</p>'),
(566, 87, 'room_booking_for_offline_gateway', 'Confirmation of Room Booking For Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for your booking with {website_title}! We\'ve received your reservation request, and the details are provided below.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </p>\r\n<p> **Room Information**</p>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}  </p>\r\n<p> **Payment Method: Offline**</p>\r\n<p>Once we receive your payment, we will send you a confirmation email.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}**  </p>'),
(567, 87, 'package_booking_for_online_gateway', 'Confirmation of Package Booking for Online Gateway', '<p>Dear {customer_name},</p>\r\n<p>We’re excited to let you know that your package booking with {website_title} was successful! Below are the details of your booking:</p>\r\n<p>*Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>Thank you for choosing us for your travel experience. We look forward to welcoming you soon!</p>\r\n<p>If you have any questions, feel free to contact us at any time.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(568, 87, 'package_booking_for_offline_gateway', 'Confirmation of Package Booking for Offline Gateway', '<p>Dear {customer_name},</p>\r\n<p>Thank you for booking with {website_title}! We’ve received your package booking request. Your payment is pending, and your booking will be confirmed once the payment is completed.</p>\r\n<p>**Package Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}  </p>\r\n<p>**Payment Method: Offline**</p>\r\n<p> </p>\r\n<p>Once we receive the payment, we will send a confirmation email.</p>\r\n<p>If you have any questions, feel free to reach out.</p>\r\n<p>Thanks &amp; Regards,  <br />**{website_title}** </p>'),
(569, 87, 'room_booking_payment_cancelled', 'Room Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your room booking request with {website_title} has been rejected. We sincerely apologize for the inconvenience.</p>\r\n<p> **Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Room Name: {room_name}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}</p>\r\n<p>This rejection may be due to unavailability, incomplete payment, or other internal constraints.</p>\r\n<p>If you believe this was a mistake or would like to explore alternative options, please feel free to contact our support team.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(570, 87, 'package_booking_payment_cancelled', 'Package Booking Request is Rejected', '<p>Dear {customer_name},</p>\r\n<p>We regret to inform you that your package booking request with {website_title} has been rejected. We truly apologize for any inconvenience this may cause.</p>\r\n<p>**Booking Details**</p>\r\n<p>- Booking Number: {booking_number}  <br />- Package Name: {package_name}  <br />- Package Price: {package_price}  <br />- Discount: {discount}  <br />- Number of Visitors: {number_of_visitors}</p>\r\n<p>This rejection may be due to limited availability, incomplete payment, or other internal reasons.</p>\r\n<p>If you\'d like assistance rebooking or exploring other package options, please contact our support team — we’ll be happy to help.</p>\r\n<p>Thank you for your understanding.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>'),
(571, 87, 'room_booking_payment_received', 'Room Booking Confirmation of Payment Received', '<p>Dear {customer_name},</p>\r\n<p>We’re pleased to inform you that we have received your payment for your room booking with {website_title}. Your booking is now confirmed!</p>\r\n<p> **Booking Details**</p>\r\n<ul>\r\n<li>Booking Number: {booking_number}  <br />- Booking Date: {booking_date}  <br />- Number of Nights: {number_of_night}  <br />- Check-in Date: {check_in_date}  <br />- Checkout Date: {check_out_date}  <br />- Number of Guests: {number_of_guests}  </li>\r\n<li>**Room Information**</li>\r\n</ul>\r\n<p>- Room Name: {room_name}  <br />- Room Type: {room_type}  <br />- Room Amenities: {room_amenities}  <br />- Room Rent: {room_rent}  <br />- Discount: {discount}</p>\r\n<p>**Payment Status:**  Payment Received</p>\r\n<p>We look forward to hosting you! If you have any special requests or questions, feel free to reach out to us.</p>\r\n<p>Thank you for choosing **{website_title}**.</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(572, 87, 'package_booking_payment_received', 'Package Booking Confirmation of Payment Received', '<p>Confirmation of Payment Received</p><p>{customer_name}</p><p>{website_title}<br /></p>'),
(573, 87, 'verify_email', 'Verify Your Email Address', '<p>Dear {customer_name},</p>\r\n<p>Thank you for registering with {website_title}!</p>\r\n<p>To complete your registration, please verify your email address by clicking the link below:</p>\r\n<p> Verification Link:  </p>\r\n<p>{verification_link}</p>\r\n<p>Username: {customer_username}</p>\r\n<p>If you did not create this account, please ignore this message.</p>\r\n<p>We\'re excited to have you with us!</p>\r\n<p>Best regards,  <br />**{website_title}**  </p>'),
(574, 87, 'reset_password', 'Recover Password of Your Account', '<p>Hello {customer_name},</p>\r\n<p>We received a request to reset your password for your {website_title} account. You can reset it by clicking the link below:</p>\r\n<p> Password Reset Link:  <br />{password_reset_link}</p>\r\n<p>If you did not request this, please ignore this email. This link will expire shortly for your security.</p>\r\n<p>Best regards,  <br />**{website_title}**  <br /><br /></p>');

-- --------------------------------------------------------

--
-- Table structure for table `user_menus`
--

CREATE TABLE `user_menus` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `language_id` int(11) DEFAULT NULL,
  `menus` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_menus`
--

INSERT INTO `user_menus` (`id`, `user_id`, `language_id`, `menus`, `created_at`, `updated_at`) VALUES
(184, 83, 133, '[{\"text\":\"بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"خدمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"الغرف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"الحزم\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"مدونة\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"معرض الصور\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"اتصال\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"التعليمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"},{\"text\":\"معلومات عنا\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"}]', '2025-05-13 07:08:48', '2025-05-13 07:08:48'),
(186, 83, 132, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Services\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"Rooms\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"Packages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"Blog\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Gallery\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"About Us\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"}]', '2025-05-19 05:56:53', '2025-05-19 05:56:53'),
(188, 84, 135, '[{\"text\":\"منزل، بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"خدمات \",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"غرف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"برامج سياحية\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"المدونات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"صالة عرض\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"اتصال\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"التعليمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"},{\"type\":\"about\",\"text\":\"عن\",\"href\":\"\",\"target\":\"_self\"}]', '2025-05-19 06:49:25', '2025-05-19 06:49:25'),
(189, 85, 137, '[{\"text\":\"بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"خدمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"الغرف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"الحزم\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"مدونة\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"معرض الصور\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"اتصال\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"التعليمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"},{\"type\":\"about\",\"text\":\"عن\",\"href\":\"\",\"target\":\"_self\"}]', '2025-05-19 06:58:33', '2025-05-19 06:58:33'),
(193, 85, 136, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Services\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"Rooms\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"Packages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"Blog\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Gallery\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"About\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"}]', '2025-05-19 07:06:58', '2025-05-19 07:06:58'),
(194, 86, 138, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Services\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"Rooms\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"Packages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"Blogs\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Gallery\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"type\":\"about\",\"text\":\"About\",\"href\":\"\",\"target\":\"_self\"}]', '2025-05-19 07:17:10', '2025-05-19 07:17:10'),
(196, 87, 140, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Services\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"Rooms\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"Packages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"Blogs\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Gallery\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"}]', '2025-05-19 07:39:25', '2025-05-19 07:39:25'),
(197, 87, 141, '[{\"text\":\"بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"خدمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"الغرف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"الحزم\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"مدونة\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"معرض الصور\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"التعليمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"}]', '2025-05-19 07:39:42', '2025-05-19 07:39:42'),
(198, 86, 139, '[{\"text\":\"بيت\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"خدمات\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"الغرف\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"الحزم\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"مدونة\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"معرض الصور\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"اتصال\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"عن\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"about\"}]', '2025-05-19 10:29:03', '2025-05-19 10:29:03'),
(202, 84, 134, '[{\"text\":\"Home\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"home\"},{\"text\":\"Services\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"service\"},{\"text\":\"Rooms\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"room\"},{\"text\":\"Packages\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"package\"},{\"text\":\"Blog\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"blog\"},{\"text\":\"Gallery\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"gallery\"},{\"text\":\"Contact\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"contact\"},{\"text\":\"FAQ\",\"href\":\"\",\"icon\":\"empty\",\"target\":\"_self\",\"title\":\"\",\"type\":\"faq\"},{\"type\":\"about\",\"text\":\"About\",\"href\":\"\",\"target\":\"_self\"}]', '2025-05-19 11:47:44', '2025-05-19 11:47:44');

-- --------------------------------------------------------

--
-- Table structure for table `user_newsletter_sections`
--

CREATE TABLE `user_newsletter_sections` (
  `id` int(11) NOT NULL,
  `language_id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `background_image` varchar(255) DEFAULT NULL,
  `image` varchar(255) DEFAULT NULL,
  `title` varchar(255) NOT NULL,
  `text` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;

-- --------------------------------------------------------

--
-- Table structure for table `user_offline_gateways`
--

CREATE TABLE `user_offline_gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `short_description` text,
  `instructions` blob,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `serial_number` int(11) NOT NULL DEFAULT '0',
  `is_receipt` tinyint(4) NOT NULL DEFAULT '1',
  `receipt` varchar(100) DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_offline_gateways`
--

INSERT INTO `user_offline_gateways` (`id`, `name`, `short_description`, `instructions`, `status`, `serial_number`, `is_receipt`, `receipt`, `user_id`, `created_at`, `updated_at`) VALUES
(16, 'Bank of America', 'Bank of America has 4,265 branches in the country, only about 700 fewer than Chase. It started as a small institution serving immigrants in San Francisco.', '', 1, 2, 1, NULL, 83, '2025-04-29 10:49:36', '2025-04-29 10:49:36'),
(17, 'Citibank', 'A pioneer of both the credit card industry and automated teller machines, Citibank – formerly the City Bank of New York.', '', 1, 1, 0, NULL, 83, '2025-04-29 10:50:00', '2025-05-13 07:22:50'),
(18, 'Bank of America', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.', '', 1, 1, 1, NULL, 86, '2025-05-20 11:28:55', '2025-05-20 11:28:55'),
(19, 'Bank of America', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.', '', 1, 1, 1, NULL, 87, '2025-05-20 11:29:48', '2025-05-20 11:29:48'),
(20, 'Bank of America', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.', '', 1, 1, 1, NULL, 85, '2025-05-20 11:31:37', '2025-05-20 11:31:37'),
(21, 'Bank of America', 'It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.', '', 1, 0, 1, NULL, 84, '2025-05-20 11:32:06', '2025-05-20 11:32:06');

-- --------------------------------------------------------

--
-- Table structure for table `user_packages`
--

CREATE TABLE `user_packages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `package_category_index` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `user_id` int(11) NOT NULL,
  `slider_imgs` text COLLATE utf8_unicode_ci NOT NULL,
  `featured_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `plan_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `max_persons` mediumint(8) UNSIGNED DEFAULT NULL,
  `number_of_days` int(11) NOT NULL DEFAULT '1',
  `pricing_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `package_price` decimal(8,2) UNSIGNED DEFAULT NULL,
  `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'this email will be used to contact with the admin',
  `phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL COMMENT 'this phone will be used to contact with the admin',
  `avg_rating` decimal(4,2) UNSIGNED DEFAULT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 - will not show in home page, 1 - will show in home page',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_packages`
--

INSERT INTO `user_packages` (`id`, `package_category_index`, `user_id`, `slider_imgs`, `featured_img`, `plan_type`, `max_persons`, `number_of_days`, `pricing_type`, `package_price`, `email`, `phone`, `avg_rating`, `is_featured`, `created_at`, `updated_at`) VALUES
(19, '6811c772b7360', 83, '[\"c8443874a0421f00a1df897cc71ba4e63d06cedc.jpg\",\"dadf21f6e788170630c077af5b3efbbd8cda4b0a.jpg\",\"38d25e606a179636d39afb93566472859197aabd.jpg\"]', '6811c82ac8cb5.png', 'daywise', 5, 3, 'fixed', '40.00', 'demo@example.com', '2384923802', NULL, 1, '2025-04-30 06:50:18', '2025-05-07 07:08:36'),
(20, '6811c77caef73', 83, '[\"20e7e05851f27983ccdfb3f57c024422a4e430e2.jpg\",\"3e99e529b5baf04aaa1dfcdc3f1191ae4ed9b894.jpg\",\"d0c2c69b95cb574881da890d06f5662cf6fccf0a.jpg\"]', '6811cd55bee80.png', 'timewise', 3, 1, 'fixed', '70.00', 'example@demo.com', '07834222', NULL, 0, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(21, '6811c772b7360', 83, '[\"3bc290ccd3d14401374c60474826fdb471ac1312.jpg\",\"7cdc5c64e94c54f5da0a8cf9c1cdb1c6a4780a94.jpg\",\"a10b7b123d4fca65671f316474a67f1e1b7bc203.jpg\",\"a9c4bdb8ec2313ab8f478c5a0d20e51640ccdd6d.jpg\"]', '6811d01f7e24b.png', 'daywise', 3, 2, 'per-person', '121.00', 'demo@demo.com', '984023843', NULL, 0, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(22, '6811c772b7360', 83, '[\"fed693b6ca5765ce44c4a7cdeddac78b702cf743.jpg\",\"1b09c94e3ca14c9b50852e1266835737f83622ef.jpg\",\"5080c22e68b90a6373a07001e8f96048f9f2094a.jpg\"]', '6811d211e8cb1.png', 'daywise', 2, 1, 'negotiable', '40.00', 'example@demo.com', '02482309842', NULL, 1, '2025-04-30 07:32:34', '2025-05-11 10:07:19'),
(23, '6811c772b7360', 83, '[\"f75f251d43839a1fda64fd2e87e832d3ce21624b.jpg\",\"763a46db8470a7e50c5eac42a123f872ed6196fa.jpg\",\"ded0b2ee864c0f2e692e7070046c232e3c26165c.jpg\",\"3de8106ac59dc26ba86e987d1be10a08f570b06a.jpg\"]', '6811d402c8f4f.png', 'timewise', 2, 1, 'per-person', '10.00', 'demo@example.com', '03789295350', NULL, 1, '2025-04-30 07:40:50', '2025-05-03 06:26:37'),
(24, '6811c765afc2b', 83, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 08:48:00', '2025-04-30 08:48:00'),
(25, '6811c77caef73', 83, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 08:52:59', '2025-05-03 06:26:54'),
(26, '6811c772b7360', 84, '[\"c8443874a0421f00a1df897cc71ba4e63d06cedc.jpg\",\"dadf21f6e788170630c077af5b3efbbd8cda4b0a.jpg\",\"38d25e606a179636d39afb93566472859197aabd.jpg\"]', '6811c82ac8cb5.png', 'daywise', 5, 3, 'fixed', '40.00', 'demo@example.com', '2384923802', NULL, 0, '2025-04-30 06:50:18', '2025-04-30 06:50:18'),
(27, '6811c77caef73', 84, '[\"20e7e05851f27983ccdfb3f57c024422a4e430e2.jpg\",\"3e99e529b5baf04aaa1dfcdc3f1191ae4ed9b894.jpg\",\"d0c2c69b95cb574881da890d06f5662cf6fccf0a.jpg\"]', '6811cd55bee80.png', 'timewise', 3, 1, 'fixed', '70.00', 'example@demo.com', '07834222', NULL, 0, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(28, '6811c772b7360', 84, '[\"3bc290ccd3d14401374c60474826fdb471ac1312.jpg\",\"7cdc5c64e94c54f5da0a8cf9c1cdb1c6a4780a94.jpg\",\"a10b7b123d4fca65671f316474a67f1e1b7bc203.jpg\",\"a9c4bdb8ec2313ab8f478c5a0d20e51640ccdd6d.jpg\"]', '6811d01f7e24b.png', 'daywise', 3, 2, 'per-person', '121.00', 'demo@demo.com', '984023843', NULL, 0, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(29, '6811c772b7360', 84, '[\"fed693b6ca5765ce44c4a7cdeddac78b702cf743.jpg\",\"1b09c94e3ca14c9b50852e1266835737f83622ef.jpg\",\"5080c22e68b90a6373a07001e8f96048f9f2094a.jpg\"]', '6811d211e8cb1.png', 'daywise', 2, 1, 'fixed', '40.00', 'example@demo.com', '02482309842', NULL, 1, '2025-04-30 07:32:34', '2025-05-07 11:57:42'),
(30, '6811c772b7360', 84, '[\"f75f251d43839a1fda64fd2e87e832d3ce21624b.jpg\",\"763a46db8470a7e50c5eac42a123f872ed6196fa.jpg\",\"ded0b2ee864c0f2e692e7070046c232e3c26165c.jpg\",\"3de8106ac59dc26ba86e987d1be10a08f570b06a.jpg\"]', '6811d402c8f4f.png', 'timewise', 2, 1, 'per-person', '10.00', 'demo@example.com', '03789295350', NULL, 1, '2025-04-30 07:40:50', '2025-05-07 11:57:40'),
(31, '6811c765afc2b', 83, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 1, '2025-04-30 08:48:00', '2025-05-07 11:57:38'),
(32, '6811c77caef73', 84, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 08:52:59', '2025-05-07 11:57:36'),
(33, '6811c772b7360', 85, '[\"c8443874a0421f00a1df897cc71ba4e63d06cedc.jpg\",\"dadf21f6e788170630c077af5b3efbbd8cda4b0a.jpg\",\"38d25e606a179636d39afb93566472859197aabd.jpg\"]', '6811c82ac8cb5.png', 'daywise', 5, 3, 'fixed', '40.00', 'demo@example.com', '2384923802', NULL, 1, '2025-04-30 00:50:18', '2025-05-03 00:26:31'),
(34, '6811c77caef73', 85, '[\"20e7e05851f27983ccdfb3f57c024422a4e430e2.jpg\",\"3e99e529b5baf04aaa1dfcdc3f1191ae4ed9b894.jpg\",\"d0c2c69b95cb574881da890d06f5662cf6fccf0a.jpg\"]', '6811cd55bee80.png', 'timewise', 3, 1, 'fixed', '70.00', 'example@demo.com', '07834222', NULL, 0, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(35, '6811c772b7360', 85, '[\"3bc290ccd3d14401374c60474826fdb471ac1312.jpg\",\"7cdc5c64e94c54f5da0a8cf9c1cdb1c6a4780a94.jpg\",\"a10b7b123d4fca65671f316474a67f1e1b7bc203.jpg\",\"a9c4bdb8ec2313ab8f478c5a0d20e51640ccdd6d.jpg\"]', '6811d01f7e24b.png', 'daywise', 3, 2, 'per-person', '121.00', 'demo@demo.com', '984023843', NULL, 0, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(36, '6811c772b7360', 85, '[\"fed693b6ca5765ce44c4a7cdeddac78b702cf743.jpg\",\"1b09c94e3ca14c9b50852e1266835737f83622ef.jpg\",\"5080c22e68b90a6373a07001e8f96048f9f2094a.jpg\"]', '6811d211e8cb1.png', 'daywise', 2, 1, 'fixed', '40.00', 'example@demo.com', '02482309842', NULL, 1, '2025-04-30 01:32:34', '2025-05-03 00:26:42'),
(37, '6811c772b7360', 85, '[\"f75f251d43839a1fda64fd2e87e832d3ce21624b.jpg\",\"763a46db8470a7e50c5eac42a123f872ed6196fa.jpg\",\"ded0b2ee864c0f2e692e7070046c232e3c26165c.jpg\",\"3de8106ac59dc26ba86e987d1be10a08f570b06a.jpg\"]', '6811d402c8f4f.png', 'timewise', 2, 1, 'per-person', '10.00', 'demo@example.com', '03789295350', NULL, 1, '2025-04-30 01:40:50', '2025-05-03 00:26:37'),
(38, '6811c765afc2b', 85, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(39, '6811c77caef73', 85, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 02:52:59', '2025-05-03 00:26:54'),
(40, '6811c765afc2b', 85, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(41, '6811c772b7360', 86, '[\"c8443874a0421f00a1df897cc71ba4e63d06cedc.jpg\",\"dadf21f6e788170630c077af5b3efbbd8cda4b0a.jpg\",\"38d25e606a179636d39afb93566472859197aabd.jpg\"]', '6811c82ac8cb5.png', 'daywise', 5, 3, 'fixed', '40.00', 'demo@example.com', '2384923802', NULL, 1, '2025-04-30 00:50:18', '2025-05-03 00:26:31'),
(42, '6811c77caef73', 86, '[\"20e7e05851f27983ccdfb3f57c024422a4e430e2.jpg\",\"3e99e529b5baf04aaa1dfcdc3f1191ae4ed9b894.jpg\",\"d0c2c69b95cb574881da890d06f5662cf6fccf0a.jpg\"]', '6811cd55bee80.png', 'timewise', 3, 1, 'fixed', '70.00', 'example@demo.com', '07834222', NULL, 1, '2025-04-30 01:12:21', '2025-05-19 11:13:34'),
(43, '6811c772b7360', 86, '[\"3bc290ccd3d14401374c60474826fdb471ac1312.jpg\",\"7cdc5c64e94c54f5da0a8cf9c1cdb1c6a4780a94.jpg\",\"a10b7b123d4fca65671f316474a67f1e1b7bc203.jpg\",\"a9c4bdb8ec2313ab8f478c5a0d20e51640ccdd6d.jpg\"]', '6811d01f7e24b.png', 'daywise', 3, 2, 'per-person', '121.00', 'demo@demo.com', '984023843', NULL, 1, '2025-04-30 01:24:15', '2025-05-19 11:13:32'),
(44, '6811c772b7360', 86, '[\"fed693b6ca5765ce44c4a7cdeddac78b702cf743.jpg\",\"1b09c94e3ca14c9b50852e1266835737f83622ef.jpg\",\"5080c22e68b90a6373a07001e8f96048f9f2094a.jpg\"]', '6811d211e8cb1.png', 'daywise', 2, 1, 'fixed', '40.00', 'example@demo.com', '02482309842', NULL, 1, '2025-04-30 01:32:34', '2025-05-03 00:26:42'),
(45, '6811c772b7360', 86, '[\"f75f251d43839a1fda64fd2e87e832d3ce21624b.jpg\",\"763a46db8470a7e50c5eac42a123f872ed6196fa.jpg\",\"ded0b2ee864c0f2e692e7070046c232e3c26165c.jpg\",\"3de8106ac59dc26ba86e987d1be10a08f570b06a.jpg\"]', '6811d402c8f4f.png', 'timewise', 2, 1, 'per-person', '10.00', 'demo@example.com', '03789295350', NULL, 1, '2025-04-30 01:40:50', '2025-05-03 00:26:37'),
(46, '6811c765afc2b', 86, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 1, '2025-04-30 02:48:00', '2025-05-19 11:13:30'),
(47, '6811c77caef73', 86, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 02:52:59', '2025-05-03 00:26:54'),
(48, '6811c765afc2b', 86, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(49, '6811c772b7360', 87, '[\"c8443874a0421f00a1df897cc71ba4e63d06cedc.jpg\",\"dadf21f6e788170630c077af5b3efbbd8cda4b0a.jpg\",\"38d25e606a179636d39afb93566472859197aabd.jpg\"]', '6811c82ac8cb5.png', 'daywise', 5, 3, 'fixed', '40.00', 'demo@example.com', '2384923802', NULL, 1, '2025-04-30 00:50:18', '2025-05-03 00:26:31'),
(50, '6811c77caef73', 87, '[\"20e7e05851f27983ccdfb3f57c024422a4e430e2.jpg\",\"3e99e529b5baf04aaa1dfcdc3f1191ae4ed9b894.jpg\",\"d0c2c69b95cb574881da890d06f5662cf6fccf0a.jpg\"]', '6811cd55bee80.png', 'timewise', 3, 1, 'fixed', '70.00', 'example@demo.com', '07834222', NULL, 1, '2025-04-30 01:12:21', '2025-05-19 11:24:35'),
(51, '6811c772b7360', 87, '[\"3bc290ccd3d14401374c60474826fdb471ac1312.jpg\",\"7cdc5c64e94c54f5da0a8cf9c1cdb1c6a4780a94.jpg\",\"a10b7b123d4fca65671f316474a67f1e1b7bc203.jpg\",\"a9c4bdb8ec2313ab8f478c5a0d20e51640ccdd6d.jpg\"]', '6811d01f7e24b.png', 'daywise', 3, 2, 'per-person', '121.00', 'demo@demo.com', '984023843', NULL, 1, '2025-04-30 01:24:15', '2025-05-19 11:24:33'),
(52, '6811c772b7360', 87, '[\"fed693b6ca5765ce44c4a7cdeddac78b702cf743.jpg\",\"1b09c94e3ca14c9b50852e1266835737f83622ef.jpg\",\"5080c22e68b90a6373a07001e8f96048f9f2094a.jpg\"]', '6811d211e8cb1.png', 'daywise', 2, 1, 'fixed', '40.00', 'example@demo.com', '02482309842', NULL, 1, '2025-04-30 01:32:34', '2025-05-03 00:26:42'),
(53, '6811c772b7360', 87, '[\"f75f251d43839a1fda64fd2e87e832d3ce21624b.jpg\",\"763a46db8470a7e50c5eac42a123f872ed6196fa.jpg\",\"ded0b2ee864c0f2e692e7070046c232e3c26165c.jpg\",\"3de8106ac59dc26ba86e987d1be10a08f570b06a.jpg\"]', '6811d402c8f4f.png', 'timewise', 2, 1, 'per-person', '10.00', 'demo@example.com', '03789295350', NULL, 1, '2025-04-30 01:40:50', '2025-05-03 00:26:37'),
(54, '6811c765afc2b', 87, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 1, '2025-04-30 02:48:00', '2025-05-19 11:24:31'),
(55, '6811c77caef73', 87, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 02:52:59', '2025-05-03 00:26:54'),
(56, '6811c765afc2b', 87, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(57, '6811c77caef73', 84, '[\"fdae72dd6b9078e3bd8cefc36817dc68ce98d719.jpg\",\"3a910fc33f3c2406a69e8a8f3f4bd60a8edaaa80.jpg\",\"37090495d8408213a3502334dc3c191f9dce3f06.jpg\",\"0732d66f442cf3e7f03eaa710e2a519c9b001247.jpg\"]', '6811e4eb03c2f.png', 'daywise', 5, 2, 'per-person', '29.99', 'demo@gmail.com', NULL, NULL, 1, '2025-04-30 02:52:59', '2025-05-03 00:26:54'),
(58, '6811c765afc2b', 84, '[\"71d830b4b62804be2f2a930427de38f89b376f3c.jpg\",\"20530a36e6f24f2e8db9be86e546fd98edb20b14.jpg\",\"62b057ede518100b0893e38cd21ac1d0aeabc2ac.jpg\",\"7fdafd551fec93907d7d231a0dda8cc57d423214.jpg\"]', '6811e3c005c13.png', 'timewise', 4, 1, 'fixed', '100.00', 'example@example.com', '14701699', NULL, 0, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(59, '6811c772b7360', 87, '[\"9a694d26feb81d071def80adc247dbec6f52b369.png\",\"f94422bbfa382b91180051ca8b78678628d07f8d.png\"]', '682ae100f1901.png', 'daywise', 5, 2, 'fixed', '99.99', 'demo@gmail.com', NULL, NULL, 1, '2025-05-19 07:42:58', '2025-05-19 11:07:07'),
(60, '6811c765afc2b', 85, '[\"169d95ef76e27df89a94f12f06117140ee7d5198.png\",\"bd975ec99cbd7d00c8f63ca67e0e6510efd48da7.png\"]', '682b09e87590a.png', 'daywise', 5, 2, 'negotiable', NULL, 'demo@gmail.com', NULL, NULL, 0, '2025-05-19 10:37:28', '2025-05-19 10:37:28'),
(61, '6811c765afc2b', 86, '[\"7a8d34569e8a2890325349f35d98bd18d5fa993d.png\",\"8847e02c87dceae40b3b8ec407df1588e0df5670.png\"]', '682b130c87d19.png', 'daywise', 5, 2, 'fixed', '100.00', 'demo@gmail.com', NULL, NULL, 1, '2025-05-19 11:16:28', '2025-05-19 11:16:35');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_bookings`
--

CREATE TABLE `user_package_bookings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_number` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_membership_id` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `customer_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `customer_phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `visitors` int(10) UNSIGNED NOT NULL,
  `subtotal` decimal(8,2) UNSIGNED NOT NULL,
  `discount` decimal(8,2) UNSIGNED NOT NULL DEFAULT '0.00',
  `tax` decimal(10,2) NOT NULL DEFAULT '0.00',
  `fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `grand_total` decimal(8,2) UNSIGNED DEFAULT NULL,
  `currency_symbol` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_symbol_position` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `currency_text_position` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_method` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `gateway_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `attachment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 -> payment incomplete, 1 -> payment complete',
  `payment_offline_status` tinyint(1) DEFAULT NULL,
  `actual_total` decimal(8,2) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_package_categories`
--

CREATE TABLE `user_package_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `indx` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_package_categories`
--

INSERT INTO `user_package_categories` (`id`, `language_id`, `user_id`, `name`, `slug`, `status`, `serial_number`, `indx`, `created_at`, `updated_at`) VALUES
(60, 132, 83, 'Vacation', 'vacation', 1, 1, '6811c765afc2b', '2025-04-30 06:47:01', '2025-04-30 06:47:01'),
(61, 133, 83, 'عطلة', 'عطلة', 1, 1, '6811c765afc2b', '2025-04-30 06:47:01', '2025-04-30 06:48:13'),
(62, 132, 83, 'Mountains & Hills', 'mountains-&-hills', 1, 2, '6811c772b7360', '2025-04-30 06:47:14', '2025-05-07 07:05:48'),
(63, 133, 83, 'الجبل والتلال', 'الجبل-والتلال', 1, 2, '6811c772b7360', '2025-04-30 06:47:14', '2025-05-07 07:05:48'),
(64, 132, 83, 'Holiday', 'holiday', 1, 3, '6811c77caef73', '2025-04-30 06:47:24', '2025-04-30 06:47:24'),
(65, 133, 83, 'يوم الاجازة', 'يوم-الاجازة', 1, 3, '6811c77caef73', '2025-04-30 06:47:24', '2025-04-30 06:47:40'),
(66, 134, 84, 'Vacation', 'vacation', 1, 1, '6811c765afc2b', '2025-04-30 06:47:01', '2025-04-30 06:47:01'),
(67, 135, 84, 'عطلة', 'عطلة', 1, 1, '6811c765afc2b', '2025-04-30 06:47:01', '2025-04-30 06:48:13'),
(68, 134, 84, 'Mountains & Hills', 'mountains-&-hills', 1, 2, '6811c772b7360', '2025-04-30 06:47:14', '2025-04-30 06:47:14'),
(69, 135, 84, 'الجبل والتلال', 'الجبل-والتلال', 1, 2, '6811c772b7360', '2025-04-30 06:47:14', '2025-04-30 06:47:51'),
(70, 134, 84, 'Holiday', 'holiday', 1, 3, '6811c77caef73', '2025-04-30 06:47:24', '2025-04-30 06:47:24'),
(71, 135, 84, 'يوم الاجازة', 'يوم-الاجازة', 1, 3, '6811c77caef73', '2025-04-30 06:47:24', '2025-04-30 06:47:40'),
(72, 136, 85, 'Vacation', 'vacation', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:47:01'),
(73, 137, 85, 'عطلة', 'عطلة', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:48:13'),
(74, 136, 85, 'Mountains & Hills', 'mountains-&-hills', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:14'),
(75, 137, 85, 'الجبل والتلال', 'الجبل-والتلال', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:51'),
(76, 136, 85, 'Holiday', 'holiday', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:24'),
(77, 137, 85, 'يوم الاجازة', 'يوم-الاجازة', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:40'),
(78, 138, 86, 'Vacation', 'vacation', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:47:01'),
(79, 139, 86, 'عطلة', 'عطلة', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:48:13'),
(80, 138, 86, 'Mountains & Hills', 'mountains-&-hills', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:14'),
(81, 139, 86, 'الجبل والتلال', 'الجبل-والتلال', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:51'),
(82, 138, 86, 'Holiday', 'holiday', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:24'),
(83, 139, 86, 'يوم الاجازة', 'يوم-الاجازة', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:40'),
(84, 140, 87, 'Vacation', 'vacation', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:47:01'),
(85, 141, 87, 'عطلة', 'عطلة', 1, 1, '6811c765afc2b', '2025-04-30 00:47:01', '2025-04-30 00:48:13'),
(86, 140, 87, 'Mountains & Hills', 'mountains-&-hills', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:14'),
(87, 141, 87, 'الجبل والتلال', 'الجبل-والتلال', 1, 2, '6811c772b7360', '2025-04-30 00:47:14', '2025-04-30 00:47:51'),
(88, 140, 87, 'Holiday', 'holiday', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:24'),
(89, 141, 87, 'يوم الاجازة', 'يوم-الاجازة', 1, 3, '6811c77caef73', '2025-04-30 00:47:24', '2025-04-30 00:47:40'),
(90, 138, 86, 'Cultural Tours', 'cultural-tours', 1, 4, '682b137a2a332', '2025-05-19 11:18:18', '2025-05-19 11:18:18'),
(91, 139, 86, 'الجولات الثقافية', 'الجولات-الثقافية', 1, 4, '682b137a2a332', '2025-05-19 11:18:18', '2025-05-19 11:18:18');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_contents`
--

CREATE TABLE `user_package_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `description` longtext COLLATE utf8_unicode_ci,
  `meta_keywords` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_package_contents`
--

INSERT INTO `user_package_contents` (`id`, `language_id`, `user_id`, `package_id`, `title`, `slug`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(28, 132, 83, 19, 'Hiking and Camping: 5-Day Rocky Mountain Trek', 'hiking-and-camping-5-day-rocky-mountain-trek', '<p>Immerse yourself in the beauty of Rocky Mountain National Park on this 5-day hiking and camping tour. Hike through alpine meadows, past towering waterfalls, and along crystal-clear lakes. Camp under the stars and enjoy the peace and quiet of the wilderness.</p>\r\n<p>This 5-day hiking and camping tour is the perfect way to experience the best of Rocky Mountain National Park. You\'ll hike some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak. You\'ll also camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</p>\r\n<p>Along the way, you\'ll be accompanied by experienced guides who will help you stay safe and on track. You\'ll also learn about the park\'s history, geology, and wildlife.</p>\r\n<p>This tour is perfect for hikers of all levels. No prior hiking experience is necessary, but you should be in good physical condition.</p>\r\n<p><strong>Highlights</strong></p>\r\n<ul>\r\n<li>Hike to some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak.</li>\r\n<li>Camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</li>\r\n<li>Learn about the park\'s history, geology, and wildlife from experienced guides.</li>\r\n<li>Enjoy the peace and quiet of the wilderness.</li>\r\n</ul>\r\n<p><strong>What\'s Included</strong></p>\r\n<ul>\r\n<li>All meals</li>\r\n<li>Camping gear</li>\r\n<li>Transportation to and from the park</li>\r\n<li>Guided hikes</li>\r\n<li>Park entrance fees</li>\r\n</ul>\r\n<p><strong>What\'s Not Included</strong></p>\r\n<ul>\r\n<li>Personal gear</li>\r\n<li>Tips for guides</li>\r\n<li>Alcoholic beverages</li>\r\n</ul>', NULL, NULL, '2025-04-30 06:50:19', '2025-04-30 06:50:19'),
(29, 133, 83, 19, 'المشي لمسافات طويلة والتخييم: رحلة روكي ماونتن تريك لمدة 5 أيام', 'almshy-lmsafat-toyl-oaltkhyym-rhl-roky-maontn-tryk-lmd-5-ayam', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">انغمس في جمال حديقة روكي ماونتن الوطنية في جولة التنزه والتخييم لمدة 5 أ<br style=\"text-align:right;\" />يام. تنزه عبر المروج الألبية ، والشلالات الشاهقة ، وعلى طول البحيرات الصافية. قم بالتخييم تحت النجوم واس<br style=\"text-align:right;\" />تمتع بهدوء وهدوء البرية.\r\n\r\nتعد جولة التنزه والتخييم لمدة 5 أيام الطريقة المثالية لتجربة أفضل ما في متنزه روكي ماونتن الوطني.<br style=\"text-align:right;\" /> سترتفع في بعض المسارات الأكثر شهرة في المنتزه ، بما في ذلك <br style=\"text-align:right;\" />. ستخيم أيضًا في بعض أكثر المواقع الخلابة في المنتزه ، بما في ذلك\r\n\r\nعلى طول الطريق ، سيرافقك مرشدون متمرسون سيساعدونك على البقاء آمنًا وعلى المسار الصحيح. ستتعرف أيضًا على تاريخ المتنز<br style=\"text-align:right;\" />ه والجيولوجيا والحياة البرية.\r\n\r\nهذه الجولة مثالية للمتنزهين من جميع المستويات. لا يلزم وجود خبرة سابقة في التنزه ، ولكن يجب أن تكون في حالة بدنية جيدة.\r\n\r\nيسلط الضوء</span></pre>', NULL, NULL, '2025-04-30 06:50:19', '2025-04-30 06:50:19'),
(30, 132, 83, 20, 'History Buffs: 1-Day Greek Island Hopping Tour', 'history-buffs-1-day-greek-island-hopping-tour', '<p>This 1-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p>Sure, here is the tour package post thumbnail image, summary, and description for the post title \"History Buffs: 7-Day Greek Island Hopping Tour\"</p>\r\n<p><strong>Summary:</strong></p>\r\n<p>Immerse yourself in the rich history of Greece on this 7-day island hopping tour. Visit some of the most iconic archaeological sites in the world, including the Acropolis, Knossos, and Delphi. Explore the beautiful islands of Mykonos, Santorini, Milos, and Crete, and learn about the ancient civilizations that once thrived here. This tour is perfect for history buffs who want to experience the best of what Greece has to offer.</p>\r\n<p><strong>Description:</strong></p>\r\n<p>This 7-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p><strong>Highlights:</strong></p>\r\n<ul>\r\n<li>Visit the Acropolis in Athens</li>\r\n<li>Explore the ancient ruins of Knossos</li>\r\n<li>Hike to the top of Mount Profitis Ilias on Crete</li>\r\n<li>Swim in the crystal-clear waters of the Aegean Sea</li>\r\n<li>Sample traditional Greek cuisine</li>\r\n<li>Experience the vibrant nightlife of Mykonos</li>\r\n</ul>\r\n<p><strong>Included:</strong></p>\r\n<ul>\r\n<li>Round-trip flights from your home city to Athens</li>\r\n<li>Accommodation in 4-star hotels</li>\r\n<li>All meals</li>\r\n<li>Guided tours of all archaeological sites</li>\r\n<li>Ferry transfers between islands</li>\r\n<li>Travel insurance</li>\r\n</ul>\r\n<p><strong>Not Included:</strong></p>\r\n<ul>\r\n<li>Personal expenses</li>\r\n<li>Tips for guides and drivers</li>\r\n<li>Visas and entry fees</li>\r\n</ul>\r\n<p><strong>Book your tour today and experience the history of Greece for yourself!</strong></p>', NULL, NULL, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(31, 133, 83, 20, 'هواة التاريخ: جولة قفز في الجزيرة اليونانية ليوم واحد', 'hoa-altarykh-gol-kfz-fy-algzyr-alyonany-lyom-oahd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق يومًا واحدًا إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا <br style=\"text-align:right;\" />، حيث ستزور الأكروبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز على متن عبارة إلى جزيرة ميكونوس النا<br style=\"text-align:right;\" />بضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة ميلوس ، وهي جزيرة ذات<br style=\"text-align:right;\" /> مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، وهي جزيرة رومانسية ت<br style=\"text-align:right;\" />تمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة في الي<br style=\"text-align:right;\" />ونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالتأكيد ، إليك صورة مصغرة بعد نشر حزمة الجولة ، وملخصًا ، ووصفًا لعنوان المنشور \"هواة التاريخ: جولة قفز في الجزي<br style=\"text-align:right;\" />رة اليونانية لمدة 7 أيام\":</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\"><strong style=\"text-align:right;\">ملخص:</strong>\r\n\r\nانغمس في تاريخ اليونان الغني في جولة التنقل بين الجزر التي تستغرق 7 أيام. قم بزيارة بعض المواقع الأثرية الأكثر شهرة في الع<br style=\"text-align:right;\" />الم ، بما في ذلك الأكروبوليس وكنوسوس ودلفي. استكشف جزر ميكونوس وسانتوريني وميلوس وكريت الجميلة ، وتعرف عل<br style=\"text-align:right;\" />ى الحضارات القديمة التي ازدهرت هنا في يوم من الأيام. هذه الجولة مثالية لهواة التاريخ الذين يرغبون في تجرب<br style=\"text-align:right;\" />ة أفضل ما تقدمه اليونان.</span><strong style=\"text-align:right;\">:</strong></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق 7 أيام إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا ، حيث ستزور الأكر<br style=\"text-align:right;\" />وبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز <br style=\"text-align:right;\" />على متن عبارة إلى جزيرة ميكونوس النابضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة <br style=\"text-align:right;\" />ميلوس ، وهي جزيرة ذات مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، و<br style=\"text-align:right;\" />هي جزيرة رومانسية تتمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة <br style=\"text-align:right;\" />في اليونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(32, 132, 83, 21, 'Go Skiing in the Rockies: A Winter Wonderland', 'go-skiing-in-the-rockies-a-winter-wonderland', '<p>The Rocky Mountains are a winter wonderland, and there\'s no better way to experience them than by skiing. With their endless slopes, stunning scenery, and cozy lodges, the Rockies offer the perfect winter getaway for skiers of all levels.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>5 nights\' accommodation in a luxurious ski resort</li>\r\n<li>5 days of lift tickets</li>\r\n<li>Daily breakfast</li>\r\n<li>Optional guided skiing or snowboarding lessons</li>\r\n<li>Transfers to and from the airport</li>\r\n</ul>\r\n<p>In addition to skiing, there are also plenty of other winter activities to enjoy in the Rockies, such as snowshoeing, ice skating, and sleigh rides. So whether you\'re a seasoned skier or just starting out, this tour is the perfect way to experience the magic of winter in the Rockies.</p>\r\n<p><strong>Here are some additional details that you can include in the tour package description:</strong></p>\r\n<ul>\r\n<li>The best time to go skiing in the Rockies is from December to March, when the snow is at its best.</li>\r\n<li>There are several different ski resorts to choose from in the Rockies, each with its own unique personality. Some of the most popular resorts include Aspen, Vail, and Banff.</li>\r\n<li>There are also a number of cross-country skiing and snowshoeing trails in the Rockies, perfect for those who prefer a more leisurely pace.</li>\r\n<li>In addition to skiing and snowboarding, there are also a number of other winter activities to enjoy in the Rockies, such as ice skating, sleigh rides, and snowmobiling.</li>\r\n</ul>', NULL, NULL, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(33, 133, 83, 21, 'الذهاب للتزلج في جبال روكي: أرض العجائب الشتوية', 'althhab-lltzlg-fy-gbal-roky-ard-alaagayb-alshtoy', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال روكي هي أرض العجائب الشتوية ، وليس هناك طريقة أفضل لتجربتها من التزلج. بفضل منحدراتها التي لا نهاية لها<br style=\"text-align:right;\" /> ومناظرها الخلابة ونزلها المريحة ، توفر جبال روكي ملاذًا شتويًا مثاليًا للمتزلجين من جميع المستويات.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تتضمن هذه الرحلة السياحية ما يلي:</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul style=\"text-align:right;\">\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإقامة لمدة 5 ليالٍ في منتجع تزلج فاخر\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">إفطار يومي\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">دروس اختيارية في التزلج أو التزلج على الجليد</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n</li>\r\n</ul>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالإضافة إلى التزلج ، هناك أيضًا الكثير من الأنشطة الشتوية الأخرى للاستمتاع بها في جبال روكي ، مثل المشي بالأحذية <br style=\"text-align:right;\" />الثلجية والتزلج على الجليد وركوب الزلاجات. لذا ، سواء كنت متزلجًا متمرسًا أو بدأت للتو ، فهذه الجولة هي ا<br style=\"text-align:right;\" />لطريقة المثلى لتجربة سحر الشتاء في جبال روكي.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(34, 132, 83, 22, 'Explore the Swiss Alps: A Hiker\'s Paradise', 'explore-the-swiss-alps-a-hikers-paradise', '<p>The Swiss Alps are a hiker\'s paradise, with stunning mountain scenery, well-maintained trails, and a variety of hiking difficulty levels to choose from. This tour package takes you on a journey through some of the most beautiful and challenging terrain in the Alps, including the Matterhorn, Eiger, and Jungfrau mountains. You\'ll also explore charming villages, sample delicious Swiss food, and learn about the local culture.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>\r\n<ul>\r\n<li>Hike to the top of the Matterhorn</li>\r\n<li>Explore the Eiger North Face</li>\r\n<li>Visit the Jungfraujoch, the highest railway station in Europe</li>\r\n<li>Stroll through the charming village of Zermatt</li>\r\n<li>Sample delicious Swiss food and wine</li>\r\n<li>Learn about the local culture</li>\r\n</ul>\r\n</li>\r\n<li><strong>Included:</strong>\r\n<ul>\r\n<li>Accommodation</li>\r\n<li>Breakfast, lunch, and dinner</li>\r\n<li>Transportation</li>\r\n<li>Hiking guides</li>\r\n<li>Activities</li>\r\n</ul>\r\n</li>\r\n<li><strong>Not Included:</strong>\r\n<ul>\r\n<li>Travel Insurance</li>\r\n<li>Personal expenses</li>\r\n</ul>\r\n</li>\r\n</ul>', NULL, NULL, '2025-04-30 07:32:34', '2025-04-30 07:32:34'),
(35, 133, 83, 22, 'استكشف جبال الألب السويسرية: جنة المسافر', 'astkshf-gbal-alalb-alsoysry-gn-almsafr', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال الألب السويسرية هي جنة لممارسي رياضة المشي لمسافات طويلة ، مع مناظر جبلية خلابة ومسارات جيدة <br style=\"text-align:right;\" />الصيانة ومجموعة متنوعة من مستويات صعوبة التنزه للاختيار من بينها. تأخذك حزمة الجولة هذه في رحلة عبر بعض من أجمل ال<br style=\"text-align:right;\" />تضاريس وأكثرها تحديًا في جبال الألب ، بما في ذلك جبال ماترهورن وإيجر ويونغفراو. ستستكشف أيضًا القرى الساحرة ، وتتذوق ال<br style=\"text-align:right;\" />طعام السويسري اللذيذ ، وتتعرف على الثقافة المحلية.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">.مدة: 7 أيام / 6 ليالي يسلط الضوء: تنزه إلى قمة ماترهورن استكشف Eiger North Face قم بزيارة Jungfraujoch ، أعلى محطة سكة حديد في أوروبا تجول في قرية زيرمات الساحرة تذوق الطعام والنبيذ السويسري اللذيذ تعرف على الثقافة المحلية يشمل:</span></li>\r\n</ul>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإفطار والغداء والعشاء\r\nمواصلات\r\nأدلة التنزه\r\nأنشطة</span></pre>', NULL, NULL, '2025-04-30 07:32:34', '2025-04-30 07:32:34'),
(36, 132, 83, 23, 'Climb Mount Everest: The Ultimate Bucket List Adventure', 'climb-mount-everest-the-ultimate-bucket-list-adventure', '<p>Climb Mount Everest and experience the ultimate bucket list adventure. This tour package includes everything you need to successfully summit the world\'s highest mountain, from flights and permits to guides and equipment. You\'ll trek through the stunning Himalayas, acclimatize to the altitude, and learn from experienced mountaineers. With this tour, you\'ll have the chance to achieve your dream of climbing Mount Everest and reach the top of the world.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>Trek to Everest Base Camp, acclimatize to the altitude, summit Mount Everest, experience the unique Sherpa culture</li>\r\n<li><strong>Duration:</strong>20 days</li>\r\n<li><strong>Price:</strong>Starting at $45,000</li>\r\n<li><strong>Logistics:</strong>Flights, permits, guides, equipment, accommodation</li>\r\n<li><strong>Physical difficulty:</strong>Strenuous</li>\r\n<li><strong>Skill level:</strong>Experienced mountaineer</li>\r\n</ul>\r\n<p>This tour is for those who are looking for the ultimate challenge and want to experience the thrill of climbing Mount Everest. It is a physically demanding and expensive trip, but it is also an incredibly rewarding one. If you are ready to take on the challenge of a lifetime, then this tour is for you.</p>', NULL, NULL, '2025-04-30 07:40:50', '2025-04-30 07:40:50'),
(37, 133, 83, 23, 'تسلق جبل إيفرست: مغامرة قائمة الجرافات المطلقة', 'tslk-gbl-ayfrst-mghamr-kaym-algrafat-almtlk', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تسلق جبل إيفرست واختبر مغامرة قائمة الجرافات المطلقة. تتضمن حزمة الجولة هذه كل ما تحتاجه لتتسلق بنجاح أعلى جبل في العال<br style=\"text-align:right;\" />الرحلات الجوية والتصاريح إلى المرشدين والمعدات. سوف تتجول في جبال الهيمالايا المذهلة ، وتتأقلم مع الارتفاع ، وتتعلم من متس<br style=\"text-align:right;\" />ي الجبال ذوي الخبرة.<br style=\"text-align:right;\" /> من خلال هذه الجولة ، ستتاح لك الفرصة لتحقيق حلمك في تسلق جبل إيفرست والوصول إلى قمة العالم.\r\n\r\nأبرز الملامح: رحلة إلى معسكر قاعدة إيفرست ، والتأقلم مع الارتفاع ، وقمة جبل إيفرست ، وتجربة ثقافة شيربا الفريدة.\r\nالمدة: 20 يومًا\r\nالسعر: يبدأ من 45000 دولار\r\nالخدمات اللوجستية: الرحلات الجوية ، التصاريح ، الأدلة ، المعدات ، الإقامة\r\nالصعوبة الجسدية: شاقة\r\nمستوى المهارة: متسلق الجبال من ذوي الخبرة\r\n\r\nهذه الجولة مخصصة لأولئك الذين يبحثون عن التحدي النهائي ويريدون تجربة إثارة تسلق جبل إيفرست. إنها رحلة متطلبة<br style=\"text-align:right;\" /> جسديًا ومكلفة ، ولكنها أيضًا رحلة مجزية بشكل لا يصدق. <br style=\"text-align:right;\" />إذا كنت مستعدًا لمواجهة تحدي العمر ، فهذه الجولة تناسبك.</span></pre>', NULL, NULL, '2025-04-30 07:40:50', '2025-04-30 07:40:50'),
(38, 132, 83, 24, 'Beach Bum\'s Paradise in Bali', 'beach-bums-paradise-in-bali', '<p>Bali is a tropical paradise with some of the most beautiful beaches in the world. This tour package is perfect for beach bums who want to relax and soak up the sun. You\'ll visit some of the island\'s most popular beaches, including Seminyak, Canggu, and Uluwatu. You\'ll also have the opportunity to go surfing, snorkeling, and diving. And of course, you\'ll indulge in plenty of delicious Balinese food and drinks.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>7 nights accommodation in a beachfront hotel</li>\r\n<li>Daily breakfast</li>\r\n<li>3 guided tours of the island\'s most popular beaches</li>\r\n<li>Surfing lessons</li>\r\n<li>Snorkeling and diving excursions</li>\r\n<li>A variety of Balinese food and drinks</li>\r\n</ul>\r\n<p><strong>Why you should choose this tour:</strong></p>\r\n<ul>\r\n<li>Bali is a beautiful island with stunning beaches, lush green forests, and ancient temples.</li>\r\n<li>This tour package includes all the activities you need to relax and have fun in the sun.</li>\r\n<li>The price of this tour package is very reasonable.</li>\r\n<li>Our team of experienced tour guides will ensure that you have a memorable vacation.</li>\r\n</ul>', NULL, NULL, '2025-04-30 08:48:00', '2025-04-30 08:48:00'),
(39, 133, 83, 24, 'شاطئ باوز بارادايس في بالي', 'shaty-baoz-baradays-fy-baly', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالي جنة استوائية بها بعض من أجمل الشواطئ في العالم. حزمة الجولة هذه مثالية لمحبي الشاطئ الذين يرغبون في الاسترخاء والاستمتاع بأشعة الشمس. ستزور بعضًا من أشهر شواطئ الجزيرة ، بما في ذلك سيمينياك وكانغو وأولوواتو. ستتاح لك أيضًا فرصة الذهاب لركوب الأمواج والغطس والغوص. وبالطبع ، سوف تنغمس في الكثير من الأطعمة والمشروبات البالية اللذيذة.\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\n- إقامة لمدة 7 ليالي في فندق على شاطئ البحر\r\nإفطار يومي\r\n3 جولات إرشادية في أشهر شواطئ الجزيرة\r\nدروس ركوب الأمواج\r\nرحلات الغطس والغوص\r\nمجموعة متنوعة من الأطعمة والمشروبات البالية\r\n\r\nلماذا يجب عليك اختيار هذه الجولة:\r\n\r\nبالي جزيرة جميلة بها شواطئ خلابة وغابات خضراء مورقة ومعابد قديمة.\r\nتتضمن حزمة الجولة هذه جميع الأنشطة التي تحتاجها للاسترخاء والاستمتاع بأشعة الشمس.\r\nسعر هذه الحزمة السياحية معقول للغاية.\r\nسيضمن لك فريقنا من المرشدين السياحيين ذوي الخبرة قضاء إجازة لا تُنسى</span></pre>', NULL, NULL, '2025-04-30 08:48:00', '2025-04-30 08:48:00'),
(40, 132, 83, 25, '7-Day Caribbean Beach Vacation', '7-day-caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-04-30 08:52:59', '2025-04-30 08:52:59'),
(41, 133, 83, 25, 'إجازة على الشاطئ الكاريبي لمدة 7 أيام', 'agaz-aal-alshaty-alkaryby-lmd-7-ayam', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 08:52:59', '2025-04-30 08:52:59'),
(42, 134, 84, 26, 'Hiking and Camping: 5-Day Rocky Mountain Trek', 'hiking-and-camping-5-day-rocky-mountain-trek', '<p>Immerse yourself in the beauty of Rocky Mountain National Park on this 5-day hiking and camping tour. Hike through alpine meadows, past towering waterfalls, and along crystal-clear lakes. Camp under the stars and enjoy the peace and quiet of the wilderness.</p>\r\n<p>This 5-day hiking and camping tour is the perfect way to experience the best of Rocky Mountain National Park. You\'ll hike some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak. You\'ll also camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</p>\r\n<p>Along the way, you\'ll be accompanied by experienced guides who will help you stay safe and on track. You\'ll also learn about the park\'s history, geology, and wildlife.</p>\r\n<p>This tour is perfect for hikers of all levels. No prior hiking experience is necessary, but you should be in good physical condition.</p>\r\n<p><strong>Highlights</strong></p>\r\n<ul>\r\n<li>Hike to some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak.</li>\r\n<li>Camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</li>\r\n<li>Learn about the park\'s history, geology, and wildlife from experienced guides.</li>\r\n<li>Enjoy the peace and quiet of the wilderness.</li>\r\n</ul>\r\n<p><strong>What\'s Included</strong></p>\r\n<ul>\r\n<li>All meals</li>\r\n<li>Camping gear</li>\r\n<li>Transportation to and from the park</li>\r\n<li>Guided hikes</li>\r\n<li>Park entrance fees</li>\r\n</ul>\r\n<p><strong>What\'s Not Included</strong></p>\r\n<ul>\r\n<li>Personal gear</li>\r\n<li>Tips for guides</li>\r\n<li>Alcoholic beverages</li>\r\n</ul>', NULL, NULL, '2025-04-30 06:50:19', '2025-04-30 06:50:19'),
(43, 135, 84, 26, 'المشي لمسافات طويلة والتخييم: رحلة روكي ماونتن تريك لمدة 5 أيام', 'almshy-lmsafat-toyl-oaltkhyym-rhl-roky-maontn-tryk-lmd-5-ayam', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">انغمس في جمال حديقة روكي ماونتن الوطنية في جولة التنزه والتخييم لمدة 5 أ<br style=\"text-align:right;\" />يام. تنزه عبر المروج الألبية ، والشلالات الشاهقة ، وعلى طول البحيرات الصافية. قم بالتخييم تحت النجوم واس<br style=\"text-align:right;\" />تمتع بهدوء وهدوء البرية.\r\n\r\nتعد جولة التنزه والتخييم لمدة 5 أيام الطريقة المثالية لتجربة أفضل ما في متنزه روكي ماونتن الوطني.<br style=\"text-align:right;\" /> سترتفع في بعض المسارات الأكثر شهرة في المنتزه ، بما في ذلك <br style=\"text-align:right;\" />. ستخيم أيضًا في بعض أكثر المواقع الخلابة في المنتزه ، بما في ذلك\r\n\r\nعلى طول الطريق ، سيرافقك مرشدون متمرسون سيساعدونك على البقاء آمنًا وعلى المسار الصحيح. ستتعرف أيضًا على تاريخ المتنز<br style=\"text-align:right;\" />ه والجيولوجيا والحياة البرية.\r\n\r\nهذه الجولة مثالية للمتنزهين من جميع المستويات. لا يلزم وجود خبرة سابقة في التنزه ، ولكن يجب أن تكون في حالة بدنية جيدة.\r\n\r\nيسلط الضوء</span></pre>', NULL, NULL, '2025-04-30 06:50:19', '2025-04-30 06:50:19'),
(44, 134, 84, 27, 'History Buffs: 1-Day Greek Island Hopping Tour', 'history-buffs-1-day-greek-island-hopping-tour', '<p>This 1-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p>Sure, here is the tour package post thumbnail image, summary, and description for the post title \"History Buffs: 7-Day Greek Island Hopping Tour\"</p>\r\n<p><strong>Summary:</strong></p>\r\n<p>Immerse yourself in the rich history of Greece on this 7-day island hopping tour. Visit some of the most iconic archaeological sites in the world, including the Acropolis, Knossos, and Delphi. Explore the beautiful islands of Mykonos, Santorini, Milos, and Crete, and learn about the ancient civilizations that once thrived here. This tour is perfect for history buffs who want to experience the best of what Greece has to offer.</p>\r\n<p><strong>Description:</strong></p>\r\n<p>This 7-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p><strong>Highlights:</strong></p>\r\n<ul>\r\n<li>Visit the Acropolis in Athens</li>\r\n<li>Explore the ancient ruins of Knossos</li>\r\n<li>Hike to the top of Mount Profitis Ilias on Crete</li>\r\n<li>Swim in the crystal-clear waters of the Aegean Sea</li>\r\n<li>Sample traditional Greek cuisine</li>\r\n<li>Experience the vibrant nightlife of Mykonos</li>\r\n</ul>\r\n<p><strong>Included:</strong></p>\r\n<ul>\r\n<li>Round-trip flights from your home city to Athens</li>\r\n<li>Accommodation in 4-star hotels</li>\r\n<li>All meals</li>\r\n<li>Guided tours of all archaeological sites</li>\r\n<li>Ferry transfers between islands</li>\r\n<li>Travel insurance</li>\r\n</ul>\r\n<p><strong>Not Included:</strong></p>\r\n<ul>\r\n<li>Personal expenses</li>\r\n<li>Tips for guides and drivers</li>\r\n<li>Visas and entry fees</li>\r\n</ul>\r\n<p><strong>Book your tour today and experience the history of Greece for yourself!</strong></p>', NULL, NULL, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(45, 135, 84, 27, 'هواة التاريخ: جولة قفز في الجزيرة اليونانية ليوم واحد', 'hoa-altarykh-gol-kfz-fy-algzyr-alyonany-lyom-oahd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق يومًا واحدًا إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا <br style=\"text-align:right;\" />، حيث ستزور الأكروبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز على متن عبارة إلى جزيرة ميكونوس النا<br style=\"text-align:right;\" />بضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة ميلوس ، وهي جزيرة ذات<br style=\"text-align:right;\" /> مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، وهي جزيرة رومانسية ت<br style=\"text-align:right;\" />تمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة في الي<br style=\"text-align:right;\" />ونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالتأكيد ، إليك صورة مصغرة بعد نشر حزمة الجولة ، وملخصًا ، ووصفًا لعنوان المنشور \"هواة التاريخ: جولة قفز في الجزي<br style=\"text-align:right;\" />رة اليونانية لمدة 7 أيام\":</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\"><strong style=\"text-align:right;\">ملخص:</strong>\r\n\r\nانغمس في تاريخ اليونان الغني في جولة التنقل بين الجزر التي تستغرق 7 أيام. قم بزيارة بعض المواقع الأثرية الأكثر شهرة في الع<br style=\"text-align:right;\" />الم ، بما في ذلك الأكروبوليس وكنوسوس ودلفي. استكشف جزر ميكونوس وسانتوريني وميلوس وكريت الجميلة ، وتعرف عل<br style=\"text-align:right;\" />ى الحضارات القديمة التي ازدهرت هنا في يوم من الأيام. هذه الجولة مثالية لهواة التاريخ الذين يرغبون في تجرب<br style=\"text-align:right;\" />ة أفضل ما تقدمه اليونان.</span><strong style=\"text-align:right;\">:</strong></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق 7 أيام إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا ، حيث ستزور الأكر<br style=\"text-align:right;\" />وبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز <br style=\"text-align:right;\" />على متن عبارة إلى جزيرة ميكونوس النابضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة <br style=\"text-align:right;\" />ميلوس ، وهي جزيرة ذات مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، و<br style=\"text-align:right;\" />هي جزيرة رومانسية تتمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة <br style=\"text-align:right;\" />في اليونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 07:12:21', '2025-04-30 07:12:21'),
(46, 134, 84, 28, 'Go Skiing in the Rockies: A Winter Wonderland', 'go-skiing-in-the-rockies-a-winter-wonderland', '<p>The Rocky Mountains are a winter wonderland, and there\'s no better way to experience them than by skiing. With their endless slopes, stunning scenery, and cozy lodges, the Rockies offer the perfect winter getaway for skiers of all levels.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>5 nights\' accommodation in a luxurious ski resort</li>\r\n<li>5 days of lift tickets</li>\r\n<li>Daily breakfast</li>\r\n<li>Optional guided skiing or snowboarding lessons</li>\r\n<li>Transfers to and from the airport</li>\r\n</ul>\r\n<p>In addition to skiing, there are also plenty of other winter activities to enjoy in the Rockies, such as snowshoeing, ice skating, and sleigh rides. So whether you\'re a seasoned skier or just starting out, this tour is the perfect way to experience the magic of winter in the Rockies.</p>\r\n<p><strong>Here are some additional details that you can include in the tour package description:</strong></p>\r\n<ul>\r\n<li>The best time to go skiing in the Rockies is from December to March, when the snow is at its best.</li>\r\n<li>There are several different ski resorts to choose from in the Rockies, each with its own unique personality. Some of the most popular resorts include Aspen, Vail, and Banff.</li>\r\n<li>There are also a number of cross-country skiing and snowshoeing trails in the Rockies, perfect for those who prefer a more leisurely pace.</li>\r\n<li>In addition to skiing and snowboarding, there are also a number of other winter activities to enjoy in the Rockies, such as ice skating, sleigh rides, and snowmobiling.</li>\r\n</ul>', NULL, NULL, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(47, 135, 84, 28, 'الذهاب للتزلج في جبال روكي: أرض العجائب الشتوية', 'althhab-lltzlg-fy-gbal-roky-ard-alaagayb-alshtoy', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال روكي هي أرض العجائب الشتوية ، وليس هناك طريقة أفضل لتجربتها من التزلج. بفضل منحدراتها التي لا نهاية لها<br style=\"text-align:right;\" /> ومناظرها الخلابة ونزلها المريحة ، توفر جبال روكي ملاذًا شتويًا مثاليًا للمتزلجين من جميع المستويات.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تتضمن هذه الرحلة السياحية ما يلي:</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul style=\"text-align:right;\">\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإقامة لمدة 5 ليالٍ في منتجع تزلج فاخر\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">إفطار يومي\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">دروس اختيارية في التزلج أو التزلج على الجليد</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n</li>\r\n</ul>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالإضافة إلى التزلج ، هناك أيضًا الكثير من الأنشطة الشتوية الأخرى للاستمتاع بها في جبال روكي ، مثل المشي بالأحذية <br style=\"text-align:right;\" />الثلجية والتزلج على الجليد وركوب الزلاجات. لذا ، سواء كنت متزلجًا متمرسًا أو بدأت للتو ، فهذه الجولة هي ا<br style=\"text-align:right;\" />لطريقة المثلى لتجربة سحر الشتاء في جبال روكي.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 07:24:15', '2025-04-30 07:24:15'),
(48, 134, 84, 29, 'Explore the Swiss Alps: A Hiker\'s Paradise', 'explore-the-swiss-alps-a-hikers-paradise', '<p>The Swiss Alps are a hiker\'s paradise, with stunning mountain scenery, well-maintained trails, and a variety of hiking difficulty levels to choose from. This tour package takes you on a journey through some of the most beautiful and challenging terrain in the Alps, including the Matterhorn, Eiger, and Jungfrau mountains. You\'ll also explore charming villages, sample delicious Swiss food, and learn about the local culture.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>\r\n<ul>\r\n<li>Hike to the top of the Matterhorn</li>\r\n<li>Explore the Eiger North Face</li>\r\n<li>Visit the Jungfraujoch, the highest railway station in Europe</li>\r\n<li>Stroll through the charming village of Zermatt</li>\r\n<li>Sample delicious Swiss food and wine</li>\r\n<li>Learn about the local culture</li>\r\n</ul>\r\n</li>\r\n<li><strong>Included:</strong>\r\n<ul>\r\n<li>Accommodation</li>\r\n<li>Breakfast, lunch, and dinner</li>\r\n<li>Transportation</li>\r\n<li>Hiking guides</li>\r\n<li>Activities</li>\r\n</ul>\r\n</li>\r\n<li><strong>Not Included:</strong>\r\n<ul>\r\n<li>Travel Insurance</li>\r\n<li>Personal expenses</li>\r\n</ul>\r\n</li>\r\n</ul>', NULL, NULL, '2025-04-30 07:32:34', '2025-04-30 07:32:34'),
(49, 135, 84, 29, 'استكشف جبال الألب السويسرية: جنة المسافر', 'astkshf-gbal-alalb-alsoysry-gn-almsafr', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال الألب السويسرية هي جنة لممارسي رياضة المشي لمسافات طويلة ، مع مناظر جبلية خلابة ومسارات جيدة <br style=\"text-align:right;\" />الصيانة ومجموعة متنوعة من مستويات صعوبة التنزه للاختيار من بينها. تأخذك حزمة الجولة هذه في رحلة عبر بعض من أجمل ال<br style=\"text-align:right;\" />تضاريس وأكثرها تحديًا في جبال الألب ، بما في ذلك جبال ماترهورن وإيجر ويونغفراو. ستستكشف أيضًا القرى الساحرة ، وتتذوق ال<br style=\"text-align:right;\" />طعام السويسري اللذيذ ، وتتعرف على الثقافة المحلية.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">.مدة: 7 أيام / 6 ليالي يسلط الضوء: تنزه إلى قمة ماترهورن استكشف Eiger North Face قم بزيارة Jungfraujoch ، أعلى محطة سكة حديد في أوروبا تجول في قرية زيرمات الساحرة تذوق الطعام والنبيذ السويسري اللذيذ تعرف على الثقافة المحلية يشمل:</span></li>\r\n</ul>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإفطار والغداء والعشاء\r\nمواصلات\r\nأدلة التنزه\r\nأنشطة</span></pre>', NULL, NULL, '2025-04-30 07:32:34', '2025-04-30 07:32:34'),
(50, 134, 84, 30, 'Climb Mount Everest: The Ultimate Bucket List Adventure', 'climb-mount-everest-the-ultimate-bucket-list-adventure', '<p>Climb Mount Everest and experience the ultimate bucket list adventure. This tour package includes everything you need to successfully summit the world\'s highest mountain, from flights and permits to guides and equipment. You\'ll trek through the stunning Himalayas, acclimatize to the altitude, and learn from experienced mountaineers. With this tour, you\'ll have the chance to achieve your dream of climbing Mount Everest and reach the top of the world.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>Trek to Everest Base Camp, acclimatize to the altitude, summit Mount Everest, experience the unique Sherpa culture</li>\r\n<li><strong>Duration:</strong>20 days</li>\r\n<li><strong>Price:</strong>Starting at $45,000</li>\r\n<li><strong>Logistics:</strong>Flights, permits, guides, equipment, accommodation</li>\r\n<li><strong>Physical difficulty:</strong>Strenuous</li>\r\n<li><strong>Skill level:</strong>Experienced mountaineer</li>\r\n</ul>\r\n<p>This tour is for those who are looking for the ultimate challenge and want to experience the thrill of climbing Mount Everest. It is a physically demanding and expensive trip, but it is also an incredibly rewarding one. If you are ready to take on the challenge of a lifetime, then this tour is for you.</p>', NULL, NULL, '2025-04-30 07:40:50', '2025-04-30 07:40:50'),
(51, 135, 84, 30, 'تسلق جبل إيفرست: مغامرة قائمة الجرافات المطلقة', 'tslk-gbl-ayfrst-mghamr-kaym-algrafat-almtlk', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تسلق جبل إيفرست واختبر مغامرة قائمة الجرافات المطلقة. تتضمن حزمة الجولة هذه كل ما تحتاجه لتتسلق بنجاح أعلى جبل في العال<br style=\"text-align:right;\" />الرحلات الجوية والتصاريح إلى المرشدين والمعدات. سوف تتجول في جبال الهيمالايا المذهلة ، وتتأقلم مع الارتفاع ، وتتعلم من متس<br style=\"text-align:right;\" />ي الجبال ذوي الخبرة.<br style=\"text-align:right;\" /> من خلال هذه الجولة ، ستتاح لك الفرصة لتحقيق حلمك في تسلق جبل إيفرست والوصول إلى قمة العالم.\r\n\r\nأبرز الملامح: رحلة إلى معسكر قاعدة إيفرست ، والتأقلم مع الارتفاع ، وقمة جبل إيفرست ، وتجربة ثقافة شيربا الفريدة.\r\nالمدة: 20 يومًا\r\nالسعر: يبدأ من 45000 دولار\r\nالخدمات اللوجستية: الرحلات الجوية ، التصاريح ، الأدلة ، المعدات ، الإقامة\r\nالصعوبة الجسدية: شاقة\r\nمستوى المهارة: متسلق الجبال من ذوي الخبرة\r\n\r\nهذه الجولة مخصصة لأولئك الذين يبحثون عن التحدي النهائي ويريدون تجربة إثارة تسلق جبل إيفرست. إنها رحلة متطلبة<br style=\"text-align:right;\" /> جسديًا ومكلفة ، ولكنها أيضًا رحلة مجزية بشكل لا يصدق. <br style=\"text-align:right;\" />إذا كنت مستعدًا لمواجهة تحدي العمر ، فهذه الجولة تناسبك.</span></pre>', NULL, NULL, '2025-04-30 07:40:50', '2025-04-30 07:40:50'),
(52, 134, 84, 31, 'Beach Bum\'s Paradise in Bali', 'beach-bums-paradise-in-bali', '<p>Bali is a tropical paradise with some of the most beautiful beaches in the world. This tour package is perfect for beach bums who want to relax and soak up the sun. You\'ll visit some of the island\'s most popular beaches, including Seminyak, Canggu, and Uluwatu. You\'ll also have the opportunity to go surfing, snorkeling, and diving. And of course, you\'ll indulge in plenty of delicious Balinese food and drinks.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>7 nights accommodation in a beachfront hotel</li>\r\n<li>Daily breakfast</li>\r\n<li>3 guided tours of the island\'s most popular beaches</li>\r\n<li>Surfing lessons</li>\r\n<li>Snorkeling and diving excursions</li>\r\n<li>A variety of Balinese food and drinks</li>\r\n</ul>\r\n<p><strong>Why you should choose this tour:</strong></p>\r\n<ul>\r\n<li>Bali is a beautiful island with stunning beaches, lush green forests, and ancient temples.</li>\r\n<li>This tour package includes all the activities you need to relax and have fun in the sun.</li>\r\n<li>The price of this tour package is very reasonable.</li>\r\n<li>Our team of experienced tour guides will ensure that you have a memorable vacation.</li>\r\n</ul>', NULL, NULL, '2025-04-30 08:48:00', '2025-04-30 08:48:00'),
(53, 135, 84, 31, 'شاطئ باوز بارادايس في بالي', 'shaty-baoz-baradays-fy-baly', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالي جنة استوائية بها بعض من أجمل الشواطئ في العالم. حزمة الجولة هذه مثالية لمحبي الشاطئ الذين يرغبون في الاسترخاء والاستمتاع بأشعة الشمس. ستزور بعضًا من أشهر شواطئ الجزيرة ، بما في ذلك سيمينياك وكانغو وأولوواتو. ستتاح لك أيضًا فرصة الذهاب لركوب الأمواج والغطس والغوص. وبالطبع ، سوف تنغمس في الكثير من الأطعمة والمشروبات البالية اللذيذة.\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\n- إقامة لمدة 7 ليالي في فندق على شاطئ البحر\r\nإفطار يومي\r\n3 جولات إرشادية في أشهر شواطئ الجزيرة\r\nدروس ركوب الأمواج\r\nرحلات الغطس والغوص\r\nمجموعة متنوعة من الأطعمة والمشروبات البالية\r\n\r\nلماذا يجب عليك اختيار هذه الجولة:\r\n\r\nبالي جزيرة جميلة بها شواطئ خلابة وغابات خضراء مورقة ومعابد قديمة.\r\nتتضمن حزمة الجولة هذه جميع الأنشطة التي تحتاجها للاسترخاء والاستمتاع بأشعة الشمس.\r\nسعر هذه الحزمة السياحية معقول للغاية.\r\nسيضمن لك فريقنا من المرشدين السياحيين ذوي الخبرة قضاء إجازة لا تُنسى</span></pre>', NULL, NULL, '2025-04-30 08:48:00', '2025-04-30 08:48:00'),
(54, 134, 84, 32, '7-Day Caribbean Beach Vacation', '7-day-caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-04-30 08:52:59', '2025-04-30 08:52:59');
INSERT INTO `user_package_contents` (`id`, `language_id`, `user_id`, `package_id`, `title`, `slug`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(55, 135, 84, 32, 'إجازة على الشاطئ الكاريبي لمدة 7 أيام', 'agaz-aal-alshaty-alkaryby-lmd-7-ayam', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 08:52:59', '2025-04-30 08:52:59'),
(56, 136, 85, 33, 'Hiking and Camping: 5-Day Rocky Mountain Trek', 'hiking-and-camping-5-day-rocky-mountain-trek', '<p>Immerse yourself in the beauty of Rocky Mountain National Park on this 5-day hiking and camping tour. Hike through alpine meadows, past towering waterfalls, and along crystal-clear lakes. Camp under the stars and enjoy the peace and quiet of the wilderness.</p>\r\n<p>This 5-day hiking and camping tour is the perfect way to experience the best of Rocky Mountain National Park. You\'ll hike some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak. You\'ll also camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</p>\r\n<p>Along the way, you\'ll be accompanied by experienced guides who will help you stay safe and on track. You\'ll also learn about the park\'s history, geology, and wildlife.</p>\r\n<p>This tour is perfect for hikers of all levels. No prior hiking experience is necessary, but you should be in good physical condition.</p>\r\n<p><strong>Highlights</strong></p>\r\n<ul>\r\n<li>Hike to some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak.</li>\r\n<li>Camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</li>\r\n<li>Learn about the park\'s history, geology, and wildlife from experienced guides.</li>\r\n<li>Enjoy the peace and quiet of the wilderness.</li>\r\n</ul>\r\n<p><strong>What\'s Included</strong></p>\r\n<ul>\r\n<li>All meals</li>\r\n<li>Camping gear</li>\r\n<li>Transportation to and from the park</li>\r\n<li>Guided hikes</li>\r\n<li>Park entrance fees</li>\r\n</ul>\r\n<p><strong>What\'s Not Included</strong></p>\r\n<ul>\r\n<li>Personal gear</li>\r\n<li>Tips for guides</li>\r\n<li>Alcoholic beverages</li>\r\n</ul>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(57, 137, 85, 33, 'المشي لمسافات طويلة والتخييم: رحلة روكي ماونتن تريك لمدة 5 أيام', 'almshy-lmsafat-toyl-oaltkhyym-rhl-roky-maontn-tryk-lmd-5-ayam', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">انغمس في جمال حديقة روكي ماونتن الوطنية في جولة التنزه والتخييم لمدة 5 أ<br style=\"text-align:right;\" />يام. تنزه عبر المروج الألبية ، والشلالات الشاهقة ، وعلى طول البحيرات الصافية. قم بالتخييم تحت النجوم واس<br style=\"text-align:right;\" />تمتع بهدوء وهدوء البرية.\r\n\r\nتعد جولة التنزه والتخييم لمدة 5 أيام الطريقة المثالية لتجربة أفضل ما في متنزه روكي ماونتن الوطني.<br style=\"text-align:right;\" /> سترتفع في بعض المسارات الأكثر شهرة في المنتزه ، بما في ذلك <br style=\"text-align:right;\" />. ستخيم أيضًا في بعض أكثر المواقع الخلابة في المنتزه ، بما في ذلك\r\n\r\nعلى طول الطريق ، سيرافقك مرشدون متمرسون سيساعدونك على البقاء آمنًا وعلى المسار الصحيح. ستتعرف أيضًا على تاريخ المتنز<br style=\"text-align:right;\" />ه والجيولوجيا والحياة البرية.\r\n\r\nهذه الجولة مثالية للمتنزهين من جميع المستويات. لا يلزم وجود خبرة سابقة في التنزه ، ولكن يجب أن تكون في حالة بدنية جيدة.\r\n\r\nيسلط الضوء</span></pre>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(58, 136, 85, 34, 'History Buffs: 1-Day Greek Island Hopping Tour', 'history-buffs-1-day-greek-island-hopping-tour', '<p>This 1-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p>Sure, here is the tour package post thumbnail image, summary, and description for the post title \"History Buffs: 7-Day Greek Island Hopping Tour\"</p>\r\n<p><strong>Summary:</strong></p>\r\n<p>Immerse yourself in the rich history of Greece on this 7-day island hopping tour. Visit some of the most iconic archaeological sites in the world, including the Acropolis, Knossos, and Delphi. Explore the beautiful islands of Mykonos, Santorini, Milos, and Crete, and learn about the ancient civilizations that once thrived here. This tour is perfect for history buffs who want to experience the best of what Greece has to offer.</p>\r\n<p><strong>Description:</strong></p>\r\n<p>This 7-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p><strong>Highlights:</strong></p>\r\n<ul>\r\n<li>Visit the Acropolis in Athens</li>\r\n<li>Explore the ancient ruins of Knossos</li>\r\n<li>Hike to the top of Mount Profitis Ilias on Crete</li>\r\n<li>Swim in the crystal-clear waters of the Aegean Sea</li>\r\n<li>Sample traditional Greek cuisine</li>\r\n<li>Experience the vibrant nightlife of Mykonos</li>\r\n</ul>\r\n<p><strong>Included:</strong></p>\r\n<ul>\r\n<li>Round-trip flights from your home city to Athens</li>\r\n<li>Accommodation in 4-star hotels</li>\r\n<li>All meals</li>\r\n<li>Guided tours of all archaeological sites</li>\r\n<li>Ferry transfers between islands</li>\r\n<li>Travel insurance</li>\r\n</ul>\r\n<p><strong>Not Included:</strong></p>\r\n<ul>\r\n<li>Personal expenses</li>\r\n<li>Tips for guides and drivers</li>\r\n<li>Visas and entry fees</li>\r\n</ul>\r\n<p><strong>Book your tour today and experience the history of Greece for yourself!</strong></p>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(59, 137, 85, 34, 'هواة التاريخ: جولة قفز في الجزيرة اليونانية ليوم واحد', 'hoa-altarykh-gol-kfz-fy-algzyr-alyonany-lyom-oahd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق يومًا واحدًا إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا <br style=\"text-align:right;\" />، حيث ستزور الأكروبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز على متن عبارة إلى جزيرة ميكونوس النا<br style=\"text-align:right;\" />بضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة ميلوس ، وهي جزيرة ذات<br style=\"text-align:right;\" /> مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، وهي جزيرة رومانسية ت<br style=\"text-align:right;\" />تمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة في الي<br style=\"text-align:right;\" />ونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالتأكيد ، إليك صورة مصغرة بعد نشر حزمة الجولة ، وملخصًا ، ووصفًا لعنوان المنشور \"هواة التاريخ: جولة قفز في الجزي<br style=\"text-align:right;\" />رة اليونانية لمدة 7 أيام\":</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\"><strong style=\"text-align:right;\">ملخص:</strong>\r\n\r\nانغمس في تاريخ اليونان الغني في جولة التنقل بين الجزر التي تستغرق 7 أيام. قم بزيارة بعض المواقع الأثرية الأكثر شهرة في الع<br style=\"text-align:right;\" />الم ، بما في ذلك الأكروبوليس وكنوسوس ودلفي. استكشف جزر ميكونوس وسانتوريني وميلوس وكريت الجميلة ، وتعرف عل<br style=\"text-align:right;\" />ى الحضارات القديمة التي ازدهرت هنا في يوم من الأيام. هذه الجولة مثالية لهواة التاريخ الذين يرغبون في تجرب<br style=\"text-align:right;\" />ة أفضل ما تقدمه اليونان.</span><strong style=\"text-align:right;\">:</strong></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق 7 أيام إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا ، حيث ستزور الأكر<br style=\"text-align:right;\" />وبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز <br style=\"text-align:right;\" />على متن عبارة إلى جزيرة ميكونوس النابضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة <br style=\"text-align:right;\" />ميلوس ، وهي جزيرة ذات مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، و<br style=\"text-align:right;\" />هي جزيرة رومانسية تتمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة <br style=\"text-align:right;\" />في اليونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(60, 136, 85, 35, 'Go Skiing in the Rockies: A Winter Wonderland', 'go-skiing-in-the-rockies-a-winter-wonderland', '<p>The Rocky Mountains are a winter wonderland, and there\'s no better way to experience them than by skiing. With their endless slopes, stunning scenery, and cozy lodges, the Rockies offer the perfect winter getaway for skiers of all levels.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>5 nights\' accommodation in a luxurious ski resort</li>\r\n<li>5 days of lift tickets</li>\r\n<li>Daily breakfast</li>\r\n<li>Optional guided skiing or snowboarding lessons</li>\r\n<li>Transfers to and from the airport</li>\r\n</ul>\r\n<p>In addition to skiing, there are also plenty of other winter activities to enjoy in the Rockies, such as snowshoeing, ice skating, and sleigh rides. So whether you\'re a seasoned skier or just starting out, this tour is the perfect way to experience the magic of winter in the Rockies.</p>\r\n<p><strong>Here are some additional details that you can include in the tour package description:</strong></p>\r\n<ul>\r\n<li>The best time to go skiing in the Rockies is from December to March, when the snow is at its best.</li>\r\n<li>There are several different ski resorts to choose from in the Rockies, each with its own unique personality. Some of the most popular resorts include Aspen, Vail, and Banff.</li>\r\n<li>There are also a number of cross-country skiing and snowshoeing trails in the Rockies, perfect for those who prefer a more leisurely pace.</li>\r\n<li>In addition to skiing and snowboarding, there are also a number of other winter activities to enjoy in the Rockies, such as ice skating, sleigh rides, and snowmobiling.</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(61, 137, 85, 35, 'الذهاب للتزلج في جبال روكي: أرض العجائب الشتوية', 'althhab-lltzlg-fy-gbal-roky-ard-alaagayb-alshtoy', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال روكي هي أرض العجائب الشتوية ، وليس هناك طريقة أفضل لتجربتها من التزلج. بفضل منحدراتها التي لا نهاية لها<br style=\"text-align:right;\" /> ومناظرها الخلابة ونزلها المريحة ، توفر جبال روكي ملاذًا شتويًا مثاليًا للمتزلجين من جميع المستويات.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تتضمن هذه الرحلة السياحية ما يلي:</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul style=\"text-align:right;\">\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإقامة لمدة 5 ليالٍ في منتجع تزلج فاخر\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">إفطار يومي\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">دروس اختيارية في التزلج أو التزلج على الجليد</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n</li>\r\n</ul>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالإضافة إلى التزلج ، هناك أيضًا الكثير من الأنشطة الشتوية الأخرى للاستمتاع بها في جبال روكي ، مثل المشي بالأحذية <br style=\"text-align:right;\" />الثلجية والتزلج على الجليد وركوب الزلاجات. لذا ، سواء كنت متزلجًا متمرسًا أو بدأت للتو ، فهذه الجولة هي ا<br style=\"text-align:right;\" />لطريقة المثلى لتجربة سحر الشتاء في جبال روكي.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(62, 136, 85, 36, 'Explore the Swiss Alps: A Hiker\'s Paradise', 'explore-the-swiss-alps-a-hikers-paradise', '<p>The Swiss Alps are a hiker\'s paradise, with stunning mountain scenery, well-maintained trails, and a variety of hiking difficulty levels to choose from. This tour package takes you on a journey through some of the most beautiful and challenging terrain in the Alps, including the Matterhorn, Eiger, and Jungfrau mountains. You\'ll also explore charming villages, sample delicious Swiss food, and learn about the local culture.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>\r\n<ul>\r\n<li>Hike to the top of the Matterhorn</li>\r\n<li>Explore the Eiger North Face</li>\r\n<li>Visit the Jungfraujoch, the highest railway station in Europe</li>\r\n<li>Stroll through the charming village of Zermatt</li>\r\n<li>Sample delicious Swiss food and wine</li>\r\n<li>Learn about the local culture</li>\r\n</ul>\r\n</li>\r\n<li><strong>Included:</strong>\r\n<ul>\r\n<li>Accommodation</li>\r\n<li>Breakfast, lunch, and dinner</li>\r\n<li>Transportation</li>\r\n<li>Hiking guides</li>\r\n<li>Activities</li>\r\n</ul>\r\n</li>\r\n<li><strong>Not Included:</strong>\r\n<ul>\r\n<li>Travel Insurance</li>\r\n<li>Personal expenses</li>\r\n</ul>\r\n</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(63, 137, 85, 36, 'استكشف جبال الألب السويسرية: جنة المسافر', 'astkshf-gbal-alalb-alsoysry-gn-almsafr', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال الألب السويسرية هي جنة لممارسي رياضة المشي لمسافات طويلة ، مع مناظر جبلية خلابة ومسارات جيدة <br style=\"text-align:right;\" />الصيانة ومجموعة متنوعة من مستويات صعوبة التنزه للاختيار من بينها. تأخذك حزمة الجولة هذه في رحلة عبر بعض من أجمل ال<br style=\"text-align:right;\" />تضاريس وأكثرها تحديًا في جبال الألب ، بما في ذلك جبال ماترهورن وإيجر ويونغفراو. ستستكشف أيضًا القرى الساحرة ، وتتذوق ال<br style=\"text-align:right;\" />طعام السويسري اللذيذ ، وتتعرف على الثقافة المحلية.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">.مدة: 7 أيام / 6 ليالي يسلط الضوء: تنزه إلى قمة ماترهورن استكشف Eiger North Face قم بزيارة Jungfraujoch ، أعلى محطة سكة حديد في أوروبا تجول في قرية زيرمات الساحرة تذوق الطعام والنبيذ السويسري اللذيذ تعرف على الثقافة المحلية يشمل:</span></li>\r\n</ul>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإفطار والغداء والعشاء\r\nمواصلات\r\nأدلة التنزه\r\nأنشطة</span></pre>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(64, 136, 85, 37, 'Climb Mount Everest: The Ultimate Bucket List Adventure', 'climb-mount-everest-the-ultimate-bucket-list-adventure', '<p>Climb Mount Everest and experience the ultimate bucket list adventure. This tour package includes everything you need to successfully summit the world\'s highest mountain, from flights and permits to guides and equipment. You\'ll trek through the stunning Himalayas, acclimatize to the altitude, and learn from experienced mountaineers. With this tour, you\'ll have the chance to achieve your dream of climbing Mount Everest and reach the top of the world.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>Trek to Everest Base Camp, acclimatize to the altitude, summit Mount Everest, experience the unique Sherpa culture</li>\r\n<li><strong>Duration:</strong>20 days</li>\r\n<li><strong>Price:</strong>Starting at $45,000</li>\r\n<li><strong>Logistics:</strong>Flights, permits, guides, equipment, accommodation</li>\r\n<li><strong>Physical difficulty:</strong>Strenuous</li>\r\n<li><strong>Skill level:</strong>Experienced mountaineer</li>\r\n</ul>\r\n<p>This tour is for those who are looking for the ultimate challenge and want to experience the thrill of climbing Mount Everest. It is a physically demanding and expensive trip, but it is also an incredibly rewarding one. If you are ready to take on the challenge of a lifetime, then this tour is for you.</p>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(65, 137, 85, 37, 'تسلق جبل إيفرست: مغامرة قائمة الجرافات المطلقة', 'tslk-gbl-ayfrst-mghamr-kaym-algrafat-almtlk', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تسلق جبل إيفرست واختبر مغامرة قائمة الجرافات المطلقة. تتضمن حزمة الجولة هذه كل ما تحتاجه لتتسلق بنجاح أعلى جبل في العال<br style=\"text-align:right;\" />الرحلات الجوية والتصاريح إلى المرشدين والمعدات. سوف تتجول في جبال الهيمالايا المذهلة ، وتتأقلم مع الارتفاع ، وتتعلم من متس<br style=\"text-align:right;\" />ي الجبال ذوي الخبرة.<br style=\"text-align:right;\" /> من خلال هذه الجولة ، ستتاح لك الفرصة لتحقيق حلمك في تسلق جبل إيفرست والوصول إلى قمة العالم.\r\n\r\nأبرز الملامح: رحلة إلى معسكر قاعدة إيفرست ، والتأقلم مع الارتفاع ، وقمة جبل إيفرست ، وتجربة ثقافة شيربا الفريدة.\r\nالمدة: 20 يومًا\r\nالسعر: يبدأ من 45000 دولار\r\nالخدمات اللوجستية: الرحلات الجوية ، التصاريح ، الأدلة ، المعدات ، الإقامة\r\nالصعوبة الجسدية: شاقة\r\nمستوى المهارة: متسلق الجبال من ذوي الخبرة\r\n\r\nهذه الجولة مخصصة لأولئك الذين يبحثون عن التحدي النهائي ويريدون تجربة إثارة تسلق جبل إيفرست. إنها رحلة متطلبة<br style=\"text-align:right;\" /> جسديًا ومكلفة ، ولكنها أيضًا رحلة مجزية بشكل لا يصدق. <br style=\"text-align:right;\" />إذا كنت مستعدًا لمواجهة تحدي العمر ، فهذه الجولة تناسبك.</span></pre>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(66, 136, 85, 38, 'Beach Bum\'s Paradise in Bali', 'beach-bums-paradise-in-bali', '<p>Bali is a tropical paradise with some of the most beautiful beaches in the world. This tour package is perfect for beach bums who want to relax and soak up the sun. You\'ll visit some of the island\'s most popular beaches, including Seminyak, Canggu, and Uluwatu. You\'ll also have the opportunity to go surfing, snorkeling, and diving. And of course, you\'ll indulge in plenty of delicious Balinese food and drinks.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>7 nights accommodation in a beachfront hotel</li>\r\n<li>Daily breakfast</li>\r\n<li>3 guided tours of the island\'s most popular beaches</li>\r\n<li>Surfing lessons</li>\r\n<li>Snorkeling and diving excursions</li>\r\n<li>A variety of Balinese food and drinks</li>\r\n</ul>\r\n<p><strong>Why you should choose this tour:</strong></p>\r\n<ul>\r\n<li>Bali is a beautiful island with stunning beaches, lush green forests, and ancient temples.</li>\r\n<li>This tour package includes all the activities you need to relax and have fun in the sun.</li>\r\n<li>The price of this tour package is very reasonable.</li>\r\n<li>Our team of experienced tour guides will ensure that you have a memorable vacation.</li>\r\n</ul>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(67, 137, 85, 38, 'شاطئ باوز بارادايس في بالي', 'shaty-baoz-baradays-fy-baly', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالي جنة استوائية بها بعض من أجمل الشواطئ في العالم. حزمة الجولة هذه مثالية لمحبي الشاطئ الذين يرغبون في الاسترخاء والاستمتاع بأشعة الشمس. ستزور بعضًا من أشهر شواطئ الجزيرة ، بما في ذلك سيمينياك وكانغو وأولوواتو. ستتاح لك أيضًا فرصة الذهاب لركوب الأمواج والغطس والغوص. وبالطبع ، سوف تنغمس في الكثير من الأطعمة والمشروبات البالية اللذيذة.\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\n- إقامة لمدة 7 ليالي في فندق على شاطئ البحر\r\nإفطار يومي\r\n3 جولات إرشادية في أشهر شواطئ الجزيرة\r\nدروس ركوب الأمواج\r\nرحلات الغطس والغوص\r\nمجموعة متنوعة من الأطعمة والمشروبات البالية\r\n\r\nلماذا يجب عليك اختيار هذه الجولة:\r\n\r\nبالي جزيرة جميلة بها شواطئ خلابة وغابات خضراء مورقة ومعابد قديمة.\r\nتتضمن حزمة الجولة هذه جميع الأنشطة التي تحتاجها للاسترخاء والاستمتاع بأشعة الشمس.\r\nسعر هذه الحزمة السياحية معقول للغاية.\r\nسيضمن لك فريقنا من المرشدين السياحيين ذوي الخبرة قضاء إجازة لا تُنسى</span></pre>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(68, 136, 85, 39, '7-Day Caribbean Beach Vacation', '7-day-caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(69, 137, 85, 39, 'إجازة على الشاطئ الكاريبي لمدة 7 أيام', 'agaz-aal-alshaty-alkaryby-lmd-7-ayam', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(70, 138, 86, 41, 'Hiking and Camping: 5-Day Rocky Mountain Trek', 'hiking-and-camping-5-day-rocky-mountain-trek', '<p>Immerse yourself in the beauty of Rocky Mountain National Park on this 5-day hiking and camping tour. Hike through alpine meadows, past towering waterfalls, and along crystal-clear lakes. Camp under the stars and enjoy the peace and quiet of the wilderness.</p>\r\n<p>This 5-day hiking and camping tour is the perfect way to experience the best of Rocky Mountain National Park. You\'ll hike some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak. You\'ll also camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</p>\r\n<p>Along the way, you\'ll be accompanied by experienced guides who will help you stay safe and on track. You\'ll also learn about the park\'s history, geology, and wildlife.</p>\r\n<p>This tour is perfect for hikers of all levels. No prior hiking experience is necessary, but you should be in good physical condition.</p>\r\n<p><strong>Highlights</strong></p>\r\n<ul>\r\n<li>Hike to some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak.</li>\r\n<li>Camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</li>\r\n<li>Learn about the park\'s history, geology, and wildlife from experienced guides.</li>\r\n<li>Enjoy the peace and quiet of the wilderness.</li>\r\n</ul>\r\n<p><strong>What\'s Included</strong></p>\r\n<ul>\r\n<li>All meals</li>\r\n<li>Camping gear</li>\r\n<li>Transportation to and from the park</li>\r\n<li>Guided hikes</li>\r\n<li>Park entrance fees</li>\r\n</ul>\r\n<p><strong>What\'s Not Included</strong></p>\r\n<ul>\r\n<li>Personal gear</li>\r\n<li>Tips for guides</li>\r\n<li>Alcoholic beverages</li>\r\n</ul>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(71, 139, 86, 41, 'المشي لمسافات طويلة والتخييم: رحلة روكي ماونتن تريك لمدة 5 أيام', 'almshy-lmsafat-toyl-oaltkhyym-rhl-roky-maontn-tryk-lmd-5-ayam', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">انغمس في جمال حديقة روكي ماونتن الوطنية في جولة التنزه والتخييم لمدة 5 أ<br style=\"text-align:right;\" />يام. تنزه عبر المروج الألبية ، والشلالات الشاهقة ، وعلى طول البحيرات الصافية. قم بالتخييم تحت النجوم واس<br style=\"text-align:right;\" />تمتع بهدوء وهدوء البرية.\r\n\r\nتعد جولة التنزه والتخييم لمدة 5 أيام الطريقة المثالية لتجربة أفضل ما في متنزه روكي ماونتن الوطني.<br style=\"text-align:right;\" /> سترتفع في بعض المسارات الأكثر شهرة في المنتزه ، بما في ذلك <br style=\"text-align:right;\" />. ستخيم أيضًا في بعض أكثر المواقع الخلابة في المنتزه ، بما في ذلك\r\n\r\nعلى طول الطريق ، سيرافقك مرشدون متمرسون سيساعدونك على البقاء آمنًا وعلى المسار الصحيح. ستتعرف أيضًا على تاريخ المتنز<br style=\"text-align:right;\" />ه والجيولوجيا والحياة البرية.\r\n\r\nهذه الجولة مثالية للمتنزهين من جميع المستويات. لا يلزم وجود خبرة سابقة في التنزه ، ولكن يجب أن تكون في حالة بدنية جيدة.\r\n\r\nيسلط الضوء</span></pre>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(72, 138, 86, 42, 'History Buffs: 1-Day Greek Island Hopping Tour', 'history-buffs-1-day-greek-island-hopping-tour', '<p>This 1-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p>Sure, here is the tour package post thumbnail image, summary, and description for the post title \"History Buffs: 7-Day Greek Island Hopping Tour\"</p>\r\n<p><strong>Summary:</strong></p>\r\n<p>Immerse yourself in the rich history of Greece on this 7-day island hopping tour. Visit some of the most iconic archaeological sites in the world, including the Acropolis, Knossos, and Delphi. Explore the beautiful islands of Mykonos, Santorini, Milos, and Crete, and learn about the ancient civilizations that once thrived here. This tour is perfect for history buffs who want to experience the best of what Greece has to offer.</p>\r\n<p><strong>Description:</strong></p>\r\n<p>This 7-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p><strong>Highlights:</strong></p>\r\n<ul>\r\n<li>Visit the Acropolis in Athens</li>\r\n<li>Explore the ancient ruins of Knossos</li>\r\n<li>Hike to the top of Mount Profitis Ilias on Crete</li>\r\n<li>Swim in the crystal-clear waters of the Aegean Sea</li>\r\n<li>Sample traditional Greek cuisine</li>\r\n<li>Experience the vibrant nightlife of Mykonos</li>\r\n</ul>\r\n<p><strong>Included:</strong></p>\r\n<ul>\r\n<li>Round-trip flights from your home city to Athens</li>\r\n<li>Accommodation in 4-star hotels</li>\r\n<li>All meals</li>\r\n<li>Guided tours of all archaeological sites</li>\r\n<li>Ferry transfers between islands</li>\r\n<li>Travel insurance</li>\r\n</ul>\r\n<p><strong>Not Included:</strong></p>\r\n<ul>\r\n<li>Personal expenses</li>\r\n<li>Tips for guides and drivers</li>\r\n<li>Visas and entry fees</li>\r\n</ul>\r\n<p><strong>Book your tour today and experience the history of Greece for yourself!</strong></p>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(73, 139, 86, 42, 'هواة التاريخ: جولة قفز في الجزيرة اليونانية ليوم واحد', 'hoa-altarykh-gol-kfz-fy-algzyr-alyonany-lyom-oahd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق يومًا واحدًا إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا <br style=\"text-align:right;\" />، حيث ستزور الأكروبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز على متن عبارة إلى جزيرة ميكونوس النا<br style=\"text-align:right;\" />بضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة ميلوس ، وهي جزيرة ذات<br style=\"text-align:right;\" /> مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، وهي جزيرة رومانسية ت<br style=\"text-align:right;\" />تمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة في الي<br style=\"text-align:right;\" />ونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالتأكيد ، إليك صورة مصغرة بعد نشر حزمة الجولة ، وملخصًا ، ووصفًا لعنوان المنشور \"هواة التاريخ: جولة قفز في الجزي<br style=\"text-align:right;\" />رة اليونانية لمدة 7 أيام\":</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\"><strong style=\"text-align:right;\">ملخص:</strong>\r\n\r\nانغمس في تاريخ اليونان الغني في جولة التنقل بين الجزر التي تستغرق 7 أيام. قم بزيارة بعض المواقع الأثرية الأكثر شهرة في الع<br style=\"text-align:right;\" />الم ، بما في ذلك الأكروبوليس وكنوسوس ودلفي. استكشف جزر ميكونوس وسانتوريني وميلوس وكريت الجميلة ، وتعرف عل<br style=\"text-align:right;\" />ى الحضارات القديمة التي ازدهرت هنا في يوم من الأيام. هذه الجولة مثالية لهواة التاريخ الذين يرغبون في تجرب<br style=\"text-align:right;\" />ة أفضل ما تقدمه اليونان.</span><strong style=\"text-align:right;\">:</strong></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق 7 أيام إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا ، حيث ستزور الأكر<br style=\"text-align:right;\" />وبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز <br style=\"text-align:right;\" />على متن عبارة إلى جزيرة ميكونوس النابضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة <br style=\"text-align:right;\" />ميلوس ، وهي جزيرة ذات مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، و<br style=\"text-align:right;\" />هي جزيرة رومانسية تتمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة <br style=\"text-align:right;\" />في اليونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(74, 138, 86, 43, 'Go Skiing in the Rockies: A Winter Wonderland', 'go-skiing-in-the-rockies-a-winter-wonderland', '<p>The Rocky Mountains are a winter wonderland, and there\'s no better way to experience them than by skiing. With their endless slopes, stunning scenery, and cozy lodges, the Rockies offer the perfect winter getaway for skiers of all levels.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>5 nights\' accommodation in a luxurious ski resort</li>\r\n<li>5 days of lift tickets</li>\r\n<li>Daily breakfast</li>\r\n<li>Optional guided skiing or snowboarding lessons</li>\r\n<li>Transfers to and from the airport</li>\r\n</ul>\r\n<p>In addition to skiing, there are also plenty of other winter activities to enjoy in the Rockies, such as snowshoeing, ice skating, and sleigh rides. So whether you\'re a seasoned skier or just starting out, this tour is the perfect way to experience the magic of winter in the Rockies.</p>\r\n<p><strong>Here are some additional details that you can include in the tour package description:</strong></p>\r\n<ul>\r\n<li>The best time to go skiing in the Rockies is from December to March, when the snow is at its best.</li>\r\n<li>There are several different ski resorts to choose from in the Rockies, each with its own unique personality. Some of the most popular resorts include Aspen, Vail, and Banff.</li>\r\n<li>There are also a number of cross-country skiing and snowshoeing trails in the Rockies, perfect for those who prefer a more leisurely pace.</li>\r\n<li>In addition to skiing and snowboarding, there are also a number of other winter activities to enjoy in the Rockies, such as ice skating, sleigh rides, and snowmobiling.</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(75, 139, 86, 43, 'الذهاب للتزلج في جبال روكي: أرض العجائب الشتوية', 'althhab-lltzlg-fy-gbal-roky-ard-alaagayb-alshtoy', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال روكي هي أرض العجائب الشتوية ، وليس هناك طريقة أفضل لتجربتها من التزلج. بفضل منحدراتها التي لا نهاية لها<br style=\"text-align:right;\" /> ومناظرها الخلابة ونزلها المريحة ، توفر جبال روكي ملاذًا شتويًا مثاليًا للمتزلجين من جميع المستويات.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تتضمن هذه الرحلة السياحية ما يلي:</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul style=\"text-align:right;\">\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإقامة لمدة 5 ليالٍ في منتجع تزلج فاخر\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">إفطار يومي\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">دروس اختيارية في التزلج أو التزلج على الجليد</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n</li>\r\n</ul>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالإضافة إلى التزلج ، هناك أيضًا الكثير من الأنشطة الشتوية الأخرى للاستمتاع بها في جبال روكي ، مثل المشي بالأحذية <br style=\"text-align:right;\" />الثلجية والتزلج على الجليد وركوب الزلاجات. لذا ، سواء كنت متزلجًا متمرسًا أو بدأت للتو ، فهذه الجولة هي ا<br style=\"text-align:right;\" />لطريقة المثلى لتجربة سحر الشتاء في جبال روكي.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(76, 138, 86, 44, 'Explore the Swiss Alps: A Hiker\'s Paradise', 'explore-the-swiss-alps-a-hikers-paradise', '<p>The Swiss Alps are a hiker\'s paradise, with stunning mountain scenery, well-maintained trails, and a variety of hiking difficulty levels to choose from. This tour package takes you on a journey through some of the most beautiful and challenging terrain in the Alps, including the Matterhorn, Eiger, and Jungfrau mountains. You\'ll also explore charming villages, sample delicious Swiss food, and learn about the local culture.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>\r\n<ul>\r\n<li>Hike to the top of the Matterhorn</li>\r\n<li>Explore the Eiger North Face</li>\r\n<li>Visit the Jungfraujoch, the highest railway station in Europe</li>\r\n<li>Stroll through the charming village of Zermatt</li>\r\n<li>Sample delicious Swiss food and wine</li>\r\n<li>Learn about the local culture</li>\r\n</ul>\r\n</li>\r\n<li><strong>Included:</strong>\r\n<ul>\r\n<li>Accommodation</li>\r\n<li>Breakfast, lunch, and dinner</li>\r\n<li>Transportation</li>\r\n<li>Hiking guides</li>\r\n<li>Activities</li>\r\n</ul>\r\n</li>\r\n<li><strong>Not Included:</strong>\r\n<ul>\r\n<li>Travel Insurance</li>\r\n<li>Personal expenses</li>\r\n</ul>\r\n</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(77, 139, 86, 44, 'استكشف جبال الألب السويسرية: جنة المسافر', 'astkshf-gbal-alalb-alsoysry-gn-almsafr', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال الألب السويسرية هي جنة لممارسي رياضة المشي لمسافات طويلة ، مع مناظر جبلية خلابة ومسارات جيدة <br style=\"text-align:right;\" />الصيانة ومجموعة متنوعة من مستويات صعوبة التنزه للاختيار من بينها. تأخذك حزمة الجولة هذه في رحلة عبر بعض من أجمل ال<br style=\"text-align:right;\" />تضاريس وأكثرها تحديًا في جبال الألب ، بما في ذلك جبال ماترهورن وإيجر ويونغفراو. ستستكشف أيضًا القرى الساحرة ، وتتذوق ال<br style=\"text-align:right;\" />طعام السويسري اللذيذ ، وتتعرف على الثقافة المحلية.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">.مدة: 7 أيام / 6 ليالي يسلط الضوء: تنزه إلى قمة ماترهورن استكشف Eiger North Face قم بزيارة Jungfraujoch ، أعلى محطة سكة حديد في أوروبا تجول في قرية زيرمات الساحرة تذوق الطعام والنبيذ السويسري اللذيذ تعرف على الثقافة المحلية يشمل:</span></li>\r\n</ul>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإفطار والغداء والعشاء\r\nمواصلات\r\nأدلة التنزه\r\nأنشطة</span></pre>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(78, 138, 86, 45, 'Climb Mount Everest: The Ultimate Bucket List Adventure', 'climb-mount-everest-the-ultimate-bucket-list-adventure', '<p>Climb Mount Everest and experience the ultimate bucket list adventure. This tour package includes everything you need to successfully summit the world\'s highest mountain, from flights and permits to guides and equipment. You\'ll trek through the stunning Himalayas, acclimatize to the altitude, and learn from experienced mountaineers. With this tour, you\'ll have the chance to achieve your dream of climbing Mount Everest and reach the top of the world.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>Trek to Everest Base Camp, acclimatize to the altitude, summit Mount Everest, experience the unique Sherpa culture</li>\r\n<li><strong>Duration:</strong>20 days</li>\r\n<li><strong>Price:</strong>Starting at $45,000</li>\r\n<li><strong>Logistics:</strong>Flights, permits, guides, equipment, accommodation</li>\r\n<li><strong>Physical difficulty:</strong>Strenuous</li>\r\n<li><strong>Skill level:</strong>Experienced mountaineer</li>\r\n</ul>\r\n<p>This tour is for those who are looking for the ultimate challenge and want to experience the thrill of climbing Mount Everest. It is a physically demanding and expensive trip, but it is also an incredibly rewarding one. If you are ready to take on the challenge of a lifetime, then this tour is for you.</p>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(79, 139, 86, 45, 'تسلق جبل إيفرست: مغامرة قائمة الجرافات المطلقة', 'tslk-gbl-ayfrst-mghamr-kaym-algrafat-almtlk', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تسلق جبل إيفرست واختبر مغامرة قائمة الجرافات المطلقة. تتضمن حزمة الجولة هذه كل ما تحتاجه لتتسلق بنجاح أعلى جبل في العال<br style=\"text-align:right;\" />الرحلات الجوية والتصاريح إلى المرشدين والمعدات. سوف تتجول في جبال الهيمالايا المذهلة ، وتتأقلم مع الارتفاع ، وتتعلم من متس<br style=\"text-align:right;\" />ي الجبال ذوي الخبرة.<br style=\"text-align:right;\" /> من خلال هذه الجولة ، ستتاح لك الفرصة لتحقيق حلمك في تسلق جبل إيفرست والوصول إلى قمة العالم.\r\n\r\nأبرز الملامح: رحلة إلى معسكر قاعدة إيفرست ، والتأقلم مع الارتفاع ، وقمة جبل إيفرست ، وتجربة ثقافة شيربا الفريدة.\r\nالمدة: 20 يومًا\r\nالسعر: يبدأ من 45000 دولار\r\nالخدمات اللوجستية: الرحلات الجوية ، التصاريح ، الأدلة ، المعدات ، الإقامة\r\nالصعوبة الجسدية: شاقة\r\nمستوى المهارة: متسلق الجبال من ذوي الخبرة\r\n\r\nهذه الجولة مخصصة لأولئك الذين يبحثون عن التحدي النهائي ويريدون تجربة إثارة تسلق جبل إيفرست. إنها رحلة متطلبة<br style=\"text-align:right;\" /> جسديًا ومكلفة ، ولكنها أيضًا رحلة مجزية بشكل لا يصدق. <br style=\"text-align:right;\" />إذا كنت مستعدًا لمواجهة تحدي العمر ، فهذه الجولة تناسبك.</span></pre>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(80, 138, 86, 46, 'Beach Bum\'s Paradise in Bali', 'beach-bums-paradise-in-bali', '<p>Bali is a tropical paradise with some of the most beautiful beaches in the world. This tour package is perfect for beach bums who want to relax and soak up the sun. You\'ll visit some of the island\'s most popular beaches, including Seminyak, Canggu, and Uluwatu. You\'ll also have the opportunity to go surfing, snorkeling, and diving. And of course, you\'ll indulge in plenty of delicious Balinese food and drinks.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>7 nights accommodation in a beachfront hotel</li>\r\n<li>Daily breakfast</li>\r\n<li>3 guided tours of the island\'s most popular beaches</li>\r\n<li>Surfing lessons</li>\r\n<li>Snorkeling and diving excursions</li>\r\n<li>A variety of Balinese food and drinks</li>\r\n</ul>\r\n<p><strong>Why you should choose this tour:</strong></p>\r\n<ul>\r\n<li>Bali is a beautiful island with stunning beaches, lush green forests, and ancient temples.</li>\r\n<li>This tour package includes all the activities you need to relax and have fun in the sun.</li>\r\n<li>The price of this tour package is very reasonable.</li>\r\n<li>Our team of experienced tour guides will ensure that you have a memorable vacation.</li>\r\n</ul>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(81, 139, 86, 46, 'شاطئ باوز بارادايس في بالي', 'shaty-baoz-baradays-fy-baly', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالي جنة استوائية بها بعض من أجمل الشواطئ في العالم. حزمة الجولة هذه مثالية لمحبي الشاطئ الذين يرغبون في الاسترخاء والاستمتاع بأشعة الشمس. ستزور بعضًا من أشهر شواطئ الجزيرة ، بما في ذلك سيمينياك وكانغو وأولوواتو. ستتاح لك أيضًا فرصة الذهاب لركوب الأمواج والغطس والغوص. وبالطبع ، سوف تنغمس في الكثير من الأطعمة والمشروبات البالية اللذيذة.\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\n- إقامة لمدة 7 ليالي في فندق على شاطئ البحر\r\nإفطار يومي\r\n3 جولات إرشادية في أشهر شواطئ الجزيرة\r\nدروس ركوب الأمواج\r\nرحلات الغطس والغوص\r\nمجموعة متنوعة من الأطعمة والمشروبات البالية\r\n\r\nلماذا يجب عليك اختيار هذه الجولة:\r\n\r\nبالي جزيرة جميلة بها شواطئ خلابة وغابات خضراء مورقة ومعابد قديمة.\r\nتتضمن حزمة الجولة هذه جميع الأنشطة التي تحتاجها للاسترخاء والاستمتاع بأشعة الشمس.\r\nسعر هذه الحزمة السياحية معقول للغاية.\r\nسيضمن لك فريقنا من المرشدين السياحيين ذوي الخبرة قضاء إجازة لا تُنسى</span></pre>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00');
INSERT INTO `user_package_contents` (`id`, `language_id`, `user_id`, `package_id`, `title`, `slug`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(82, 138, 86, 47, '7-Day Caribbean Beach Vacation', '7-day-caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(83, 139, 86, 47, 'إجازة على الشاطئ الكاريبي لمدة 7 أيام', 'agaz-aal-alshaty-alkaryby-lmd-7-ayam', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(84, 140, 87, 49, 'Hiking and Camping: 5-Day Rocky Mountain Trek', 'hiking-and-camping-5-day-rocky-mountain-trek', '<p>Immerse yourself in the beauty of Rocky Mountain National Park on this 5-day hiking and camping tour. Hike through alpine meadows, past towering waterfalls, and along crystal-clear lakes. Camp under the stars and enjoy the peace and quiet of the wilderness.</p>\r\n<p>This 5-day hiking and camping tour is the perfect way to experience the best of Rocky Mountain National Park. You\'ll hike some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak. You\'ll also camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</p>\r\n<p>Along the way, you\'ll be accompanied by experienced guides who will help you stay safe and on track. You\'ll also learn about the park\'s history, geology, and wildlife.</p>\r\n<p>This tour is perfect for hikers of all levels. No prior hiking experience is necessary, but you should be in good physical condition.</p>\r\n<p><strong>Highlights</strong></p>\r\n<ul>\r\n<li>Hike to some of the park\'s most popular trails, including Bear Lake Trail, Emerald Lake Trail, and Longs Peak.</li>\r\n<li>Camp in some of the park\'s most scenic spots, including Moraine Park Campground and Glacier Gorge Campground.</li>\r\n<li>Learn about the park\'s history, geology, and wildlife from experienced guides.</li>\r\n<li>Enjoy the peace and quiet of the wilderness.</li>\r\n</ul>\r\n<p><strong>What\'s Included</strong></p>\r\n<ul>\r\n<li>All meals</li>\r\n<li>Camping gear</li>\r\n<li>Transportation to and from the park</li>\r\n<li>Guided hikes</li>\r\n<li>Park entrance fees</li>\r\n</ul>\r\n<p><strong>What\'s Not Included</strong></p>\r\n<ul>\r\n<li>Personal gear</li>\r\n<li>Tips for guides</li>\r\n<li>Alcoholic beverages</li>\r\n</ul>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(85, 141, 87, 49, 'المشي لمسافات طويلة والتخييم: رحلة روكي ماونتن تريك لمدة 5 أيام', 'almshy-lmsafat-toyl-oaltkhyym-rhl-roky-maontn-tryk-lmd-5-ayam', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">انغمس في جمال حديقة روكي ماونتن الوطنية في جولة التنزه والتخييم لمدة 5 أ<br style=\"text-align:right;\" />يام. تنزه عبر المروج الألبية ، والشلالات الشاهقة ، وعلى طول البحيرات الصافية. قم بالتخييم تحت النجوم واس<br style=\"text-align:right;\" />تمتع بهدوء وهدوء البرية.\r\n\r\nتعد جولة التنزه والتخييم لمدة 5 أيام الطريقة المثالية لتجربة أفضل ما في متنزه روكي ماونتن الوطني.<br style=\"text-align:right;\" /> سترتفع في بعض المسارات الأكثر شهرة في المنتزه ، بما في ذلك <br style=\"text-align:right;\" />. ستخيم أيضًا في بعض أكثر المواقع الخلابة في المنتزه ، بما في ذلك\r\n\r\nعلى طول الطريق ، سيرافقك مرشدون متمرسون سيساعدونك على البقاء آمنًا وعلى المسار الصحيح. ستتعرف أيضًا على تاريخ المتنز<br style=\"text-align:right;\" />ه والجيولوجيا والحياة البرية.\r\n\r\nهذه الجولة مثالية للمتنزهين من جميع المستويات. لا يلزم وجود خبرة سابقة في التنزه ، ولكن يجب أن تكون في حالة بدنية جيدة.\r\n\r\nيسلط الضوء</span></pre>', NULL, NULL, '2025-04-30 00:50:19', '2025-04-30 00:50:19'),
(86, 140, 87, 50, 'History Buffs: 1-Day Greek Island Hopping Tour', 'history-buffs-1-day-greek-island-hopping-tour', '<p>This 1-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p>Sure, here is the tour package post thumbnail image, summary, and description for the post title \"History Buffs: 7-Day Greek Island Hopping Tour\"</p>\r\n<p><strong>Summary:</strong></p>\r\n<p>Immerse yourself in the rich history of Greece on this 7-day island hopping tour. Visit some of the most iconic archaeological sites in the world, including the Acropolis, Knossos, and Delphi. Explore the beautiful islands of Mykonos, Santorini, Milos, and Crete, and learn about the ancient civilizations that once thrived here. This tour is perfect for history buffs who want to experience the best of what Greece has to offer.</p>\r\n<p><strong>Description:</strong></p>\r\n<p>This 7-day tour takes you to some of the most historically significant islands in Greece. Start your journey in Athens, where you\'ll visit the Acropolis, the Parthenon, and other ancient ruins. Then, hop on a ferry to Mykonos, a vibrant island known for its beaches, nightlife, and windmills. Next, visit Milos, an island with stunning volcanic landscapes and ancient ruins. From Milos, take a ferry to Santorini, a romantic island with cliffside villages and caldera views. Finally, end your tour in Crete, the largest island in Greece, where you\'ll explore the ruins of Knossos, a Minoan palace complex.</p>\r\n<p><strong>Highlights:</strong></p>\r\n<ul>\r\n<li>Visit the Acropolis in Athens</li>\r\n<li>Explore the ancient ruins of Knossos</li>\r\n<li>Hike to the top of Mount Profitis Ilias on Crete</li>\r\n<li>Swim in the crystal-clear waters of the Aegean Sea</li>\r\n<li>Sample traditional Greek cuisine</li>\r\n<li>Experience the vibrant nightlife of Mykonos</li>\r\n</ul>\r\n<p><strong>Included:</strong></p>\r\n<ul>\r\n<li>Round-trip flights from your home city to Athens</li>\r\n<li>Accommodation in 4-star hotels</li>\r\n<li>All meals</li>\r\n<li>Guided tours of all archaeological sites</li>\r\n<li>Ferry transfers between islands</li>\r\n<li>Travel insurance</li>\r\n</ul>\r\n<p><strong>Not Included:</strong></p>\r\n<ul>\r\n<li>Personal expenses</li>\r\n<li>Tips for guides and drivers</li>\r\n<li>Visas and entry fees</li>\r\n</ul>\r\n<p><strong>Book your tour today and experience the history of Greece for yourself!</strong></p>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(87, 141, 87, 50, 'هواة التاريخ: جولة قفز في الجزيرة اليونانية ليوم واحد', 'hoa-altarykh-gol-kfz-fy-algzyr-alyonany-lyom-oahd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق يومًا واحدًا إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا <br style=\"text-align:right;\" />، حيث ستزور الأكروبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز على متن عبارة إلى جزيرة ميكونوس النا<br style=\"text-align:right;\" />بضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة ميلوس ، وهي جزيرة ذات<br style=\"text-align:right;\" /> مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، وهي جزيرة رومانسية ت<br style=\"text-align:right;\" />تمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة في الي<br style=\"text-align:right;\" />ونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالتأكيد ، إليك صورة مصغرة بعد نشر حزمة الجولة ، وملخصًا ، ووصفًا لعنوان المنشور \"هواة التاريخ: جولة قفز في الجزي<br style=\"text-align:right;\" />رة اليونانية لمدة 7 أيام\":</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\"><strong style=\"text-align:right;\">ملخص:</strong>\r\n\r\nانغمس في تاريخ اليونان الغني في جولة التنقل بين الجزر التي تستغرق 7 أيام. قم بزيارة بعض المواقع الأثرية الأكثر شهرة في الع<br style=\"text-align:right;\" />الم ، بما في ذلك الأكروبوليس وكنوسوس ودلفي. استكشف جزر ميكونوس وسانتوريني وميلوس وكريت الجميلة ، وتعرف عل<br style=\"text-align:right;\" />ى الحضارات القديمة التي ازدهرت هنا في يوم من الأيام. هذه الجولة مثالية لهواة التاريخ الذين يرغبون في تجرب<br style=\"text-align:right;\" />ة أفضل ما تقدمه اليونان.</span><strong style=\"text-align:right;\">:</strong></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تأخذك هذه الجولة التي تستغرق 7 أيام إلى بعض الجزر الأكثر أهمية تاريخيًا في اليونان. ابدأ رحلتك في أثينا ، حيث ستزور الأكر<br style=\"text-align:right;\" />وبوليس والبارثينون والآثار القديمة الأخرى. بعد ذلك ، قفز <br style=\"text-align:right;\" />على متن عبارة إلى جزيرة ميكونوس النابضة بالحياة والمعروفة بشواطئها وحياتها الليلية وطواحين الهواء. بعد ذلك ، قم بزيارة <br style=\"text-align:right;\" />ميلوس ، وهي جزيرة ذات مناظر طبيعية بركانية مذهلة وآثار قديمة. من ميلوس ، استقل العبارة إلى سانتوريني ، و<br style=\"text-align:right;\" />هي جزيرة رومانسية تتمتع بإطلالات على الجرف ومناظر كالديرا. أخيرًا ، أنهِ جولتك في جزيرة كريت ، أكبر جزيرة <br style=\"text-align:right;\" />في اليونان ، حيث ستستكشف أطلال كنوسوس ، وهو مجمع قصر مينوان</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:12:21', '2025-04-30 01:12:21'),
(88, 140, 87, 51, 'Go Skiing in the Rockies: A Winter Wonderland', 'go-skiing-in-the-rockies-a-winter-wonderland', '<p>The Rocky Mountains are a winter wonderland, and there\'s no better way to experience them than by skiing. With their endless slopes, stunning scenery, and cozy lodges, the Rockies offer the perfect winter getaway for skiers of all levels.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>5 nights\' accommodation in a luxurious ski resort</li>\r\n<li>5 days of lift tickets</li>\r\n<li>Daily breakfast</li>\r\n<li>Optional guided skiing or snowboarding lessons</li>\r\n<li>Transfers to and from the airport</li>\r\n</ul>\r\n<p>In addition to skiing, there are also plenty of other winter activities to enjoy in the Rockies, such as snowshoeing, ice skating, and sleigh rides. So whether you\'re a seasoned skier or just starting out, this tour is the perfect way to experience the magic of winter in the Rockies.</p>\r\n<p><strong>Here are some additional details that you can include in the tour package description:</strong></p>\r\n<ul>\r\n<li>The best time to go skiing in the Rockies is from December to March, when the snow is at its best.</li>\r\n<li>There are several different ski resorts to choose from in the Rockies, each with its own unique personality. Some of the most popular resorts include Aspen, Vail, and Banff.</li>\r\n<li>There are also a number of cross-country skiing and snowshoeing trails in the Rockies, perfect for those who prefer a more leisurely pace.</li>\r\n<li>In addition to skiing and snowboarding, there are also a number of other winter activities to enjoy in the Rockies, such as ice skating, sleigh rides, and snowmobiling.</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(89, 141, 87, 51, 'الذهاب للتزلج في جبال روكي: أرض العجائب الشتوية', 'althhab-lltzlg-fy-gbal-roky-ard-alaagayb-alshtoy', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال روكي هي أرض العجائب الشتوية ، وليس هناك طريقة أفضل لتجربتها من التزلج. بفضل منحدراتها التي لا نهاية لها<br style=\"text-align:right;\" /> ومناظرها الخلابة ونزلها المريحة ، توفر جبال روكي ملاذًا شتويًا مثاليًا للمتزلجين من جميع المستويات.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تتضمن هذه الرحلة السياحية ما يلي:</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul style=\"text-align:right;\">\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإقامة لمدة 5 ليالٍ في منتجع تزلج فاخر\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">إفطار يومي\r\n</span></pre>\r\n</li>\r\n<li style=\"text-align:right;\">\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">دروس اختيارية في التزلج أو التزلج على الجليد</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n</li>\r\n</ul>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالإضافة إلى التزلج ، هناك أيضًا الكثير من الأنشطة الشتوية الأخرى للاستمتاع بها في جبال روكي ، مثل المشي بالأحذية <br style=\"text-align:right;\" />الثلجية والتزلج على الجليد وركوب الزلاجات. لذا ، سواء كنت متزلجًا متمرسًا أو بدأت للتو ، فهذه الجولة هي ا<br style=\"text-align:right;\" />لطريقة المثلى لتجربة سحر الشتاء في جبال روكي.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 01:24:15', '2025-04-30 01:24:15'),
(90, 140, 87, 52, 'Explore the Swiss Alps: A Hiker\'s Paradise', 'explore-the-swiss-alps-a-hikers-paradise', '<p>The Swiss Alps are a hiker\'s paradise, with stunning mountain scenery, well-maintained trails, and a variety of hiking difficulty levels to choose from. This tour package takes you on a journey through some of the most beautiful and challenging terrain in the Alps, including the Matterhorn, Eiger, and Jungfrau mountains. You\'ll also explore charming villages, sample delicious Swiss food, and learn about the local culture.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>\r\n<ul>\r\n<li>Hike to the top of the Matterhorn</li>\r\n<li>Explore the Eiger North Face</li>\r\n<li>Visit the Jungfraujoch, the highest railway station in Europe</li>\r\n<li>Stroll through the charming village of Zermatt</li>\r\n<li>Sample delicious Swiss food and wine</li>\r\n<li>Learn about the local culture</li>\r\n</ul>\r\n</li>\r\n<li><strong>Included:</strong>\r\n<ul>\r\n<li>Accommodation</li>\r\n<li>Breakfast, lunch, and dinner</li>\r\n<li>Transportation</li>\r\n<li>Hiking guides</li>\r\n<li>Activities</li>\r\n</ul>\r\n</li>\r\n<li><strong>Not Included:</strong>\r\n<ul>\r\n<li>Travel Insurance</li>\r\n<li>Personal expenses</li>\r\n</ul>\r\n</li>\r\n</ul>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(91, 141, 87, 52, 'استكشف جبال الألب السويسرية: جنة المسافر', 'astkshf-gbal-alalb-alsoysry-gn-almsafr', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">جبال الألب السويسرية هي جنة لممارسي رياضة المشي لمسافات طويلة ، مع مناظر جبلية خلابة ومسارات جيدة <br style=\"text-align:right;\" />الصيانة ومجموعة متنوعة من مستويات صعوبة التنزه للاختيار من بينها. تأخذك حزمة الجولة هذه في رحلة عبر بعض من أجمل ال<br style=\"text-align:right;\" />تضاريس وأكثرها تحديًا في جبال الألب ، بما في ذلك جبال ماترهورن وإيجر ويونغفراو. ستستكشف أيضًا القرى الساحرة ، وتتذوق ال<br style=\"text-align:right;\" />طعام السويسري اللذيذ ، وتتعرف على الثقافة المحلية.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>\r\n<ul>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">.مدة: 7 أيام / 6 ليالي يسلط الضوء: تنزه إلى قمة ماترهورن استكشف Eiger North Face قم بزيارة Jungfraujoch ، أعلى محطة سكة حديد في أوروبا تجول في قرية زيرمات الساحرة تذوق الطعام والنبيذ السويسري اللذيذ تعرف على الثقافة المحلية يشمل:</span></li>\r\n</ul>\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الإفطار والغداء والعشاء\r\nمواصلات\r\nأدلة التنزه\r\nأنشطة</span></pre>', NULL, NULL, '2025-04-30 01:32:34', '2025-04-30 01:32:34'),
(92, 140, 87, 53, 'Climb Mount Everest: The Ultimate Bucket List Adventure', 'climb-mount-everest-the-ultimate-bucket-list-adventure', '<p>Climb Mount Everest and experience the ultimate bucket list adventure. This tour package includes everything you need to successfully summit the world\'s highest mountain, from flights and permits to guides and equipment. You\'ll trek through the stunning Himalayas, acclimatize to the altitude, and learn from experienced mountaineers. With this tour, you\'ll have the chance to achieve your dream of climbing Mount Everest and reach the top of the world.</p>\r\n<ul>\r\n<li><strong>Highlights:</strong>Trek to Everest Base Camp, acclimatize to the altitude, summit Mount Everest, experience the unique Sherpa culture</li>\r\n<li><strong>Duration:</strong>20 days</li>\r\n<li><strong>Price:</strong>Starting at $45,000</li>\r\n<li><strong>Logistics:</strong>Flights, permits, guides, equipment, accommodation</li>\r\n<li><strong>Physical difficulty:</strong>Strenuous</li>\r\n<li><strong>Skill level:</strong>Experienced mountaineer</li>\r\n</ul>\r\n<p>This tour is for those who are looking for the ultimate challenge and want to experience the thrill of climbing Mount Everest. It is a physically demanding and expensive trip, but it is also an incredibly rewarding one. If you are ready to take on the challenge of a lifetime, then this tour is for you.</p>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(93, 141, 87, 53, 'تسلق جبل إيفرست: مغامرة قائمة الجرافات المطلقة', 'tslk-gbl-ayfrst-mghamr-kaym-algrafat-almtlk', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تسلق جبل إيفرست واختبر مغامرة قائمة الجرافات المطلقة. تتضمن حزمة الجولة هذه كل ما تحتاجه لتتسلق بنجاح أعلى جبل في العال<br style=\"text-align:right;\" />الرحلات الجوية والتصاريح إلى المرشدين والمعدات. سوف تتجول في جبال الهيمالايا المذهلة ، وتتأقلم مع الارتفاع ، وتتعلم من متس<br style=\"text-align:right;\" />ي الجبال ذوي الخبرة.<br style=\"text-align:right;\" /> من خلال هذه الجولة ، ستتاح لك الفرصة لتحقيق حلمك في تسلق جبل إيفرست والوصول إلى قمة العالم.\r\n\r\nأبرز الملامح: رحلة إلى معسكر قاعدة إيفرست ، والتأقلم مع الارتفاع ، وقمة جبل إيفرست ، وتجربة ثقافة شيربا الفريدة.\r\nالمدة: 20 يومًا\r\nالسعر: يبدأ من 45000 دولار\r\nالخدمات اللوجستية: الرحلات الجوية ، التصاريح ، الأدلة ، المعدات ، الإقامة\r\nالصعوبة الجسدية: شاقة\r\nمستوى المهارة: متسلق الجبال من ذوي الخبرة\r\n\r\nهذه الجولة مخصصة لأولئك الذين يبحثون عن التحدي النهائي ويريدون تجربة إثارة تسلق جبل إيفرست. إنها رحلة متطلبة<br style=\"text-align:right;\" /> جسديًا ومكلفة ، ولكنها أيضًا رحلة مجزية بشكل لا يصدق. <br style=\"text-align:right;\" />إذا كنت مستعدًا لمواجهة تحدي العمر ، فهذه الجولة تناسبك.</span></pre>', NULL, NULL, '2025-04-30 01:40:50', '2025-04-30 01:40:50'),
(94, 140, 87, 54, 'Beach Bum\'s Paradise in Bali', 'beach-bums-paradise-in-bali', '<p>Bali is a tropical paradise with some of the most beautiful beaches in the world. This tour package is perfect for beach bums who want to relax and soak up the sun. You\'ll visit some of the island\'s most popular beaches, including Seminyak, Canggu, and Uluwatu. You\'ll also have the opportunity to go surfing, snorkeling, and diving. And of course, you\'ll indulge in plenty of delicious Balinese food and drinks.</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>7 nights accommodation in a beachfront hotel</li>\r\n<li>Daily breakfast</li>\r\n<li>3 guided tours of the island\'s most popular beaches</li>\r\n<li>Surfing lessons</li>\r\n<li>Snorkeling and diving excursions</li>\r\n<li>A variety of Balinese food and drinks</li>\r\n</ul>\r\n<p><strong>Why you should choose this tour:</strong></p>\r\n<ul>\r\n<li>Bali is a beautiful island with stunning beaches, lush green forests, and ancient temples.</li>\r\n<li>This tour package includes all the activities you need to relax and have fun in the sun.</li>\r\n<li>The price of this tour package is very reasonable.</li>\r\n<li>Our team of experienced tour guides will ensure that you have a memorable vacation.</li>\r\n</ul>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(95, 141, 87, 54, 'شاطئ باوز بارادايس في بالي', 'shaty-baoz-baradays-fy-baly', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">بالي جنة استوائية بها بعض من أجمل الشواطئ في العالم. حزمة الجولة هذه مثالية لمحبي الشاطئ الذين يرغبون في الاسترخاء والاستمتاع بأشعة الشمس. ستزور بعضًا من أشهر شواطئ الجزيرة ، بما في ذلك سيمينياك وكانغو وأولوواتو. ستتاح لك أيضًا فرصة الذهاب لركوب الأمواج والغطس والغوص. وبالطبع ، سوف تنغمس في الكثير من الأطعمة والمشروبات البالية اللذيذة.\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\n- إقامة لمدة 7 ليالي في فندق على شاطئ البحر\r\nإفطار يومي\r\n3 جولات إرشادية في أشهر شواطئ الجزيرة\r\nدروس ركوب الأمواج\r\nرحلات الغطس والغوص\r\nمجموعة متنوعة من الأطعمة والمشروبات البالية\r\n\r\nلماذا يجب عليك اختيار هذه الجولة:\r\n\r\nبالي جزيرة جميلة بها شواطئ خلابة وغابات خضراء مورقة ومعابد قديمة.\r\nتتضمن حزمة الجولة هذه جميع الأنشطة التي تحتاجها للاسترخاء والاستمتاع بأشعة الشمس.\r\nسعر هذه الحزمة السياحية معقول للغاية.\r\nسيضمن لك فريقنا من المرشدين السياحيين ذوي الخبرة قضاء إجازة لا تُنسى</span></pre>', NULL, NULL, '2025-04-30 02:48:00', '2025-04-30 02:48:00'),
(96, 140, 87, 55, '7-Day Caribbean Beach Vacation', '7-day-caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(97, 141, 87, 55, 'إجازة على الشاطئ الكاريبي لمدة 7 أيام', 'agaz-aal-alshaty-alkaryby-lmd-7-ayam', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 02:52:59', '2025-04-30 02:52:59'),
(98, 140, 87, 59, 'Caribbean Beach Vacation', 'caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-05-19 07:42:58', '2025-05-19 07:42:58'),
(99, 141, 87, 59, 'إجازة على الشاطئ الكاريبي لمدة', 'agaz-aal-alshaty-alkaryby-lmd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-05-19 07:42:58', '2025-05-19 07:42:58'),
(100, 136, 85, 60, 'Caribbean Beach Vacation', 'caribbean-beach-vacation', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-05-19 10:37:28', '2025-05-19 10:37:28'),
(101, 137, 85, 60, 'إجازة على الشاطئ الكاريبي لمدة', 'agaz-aal-alshaty-alkaryby-lmd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-05-19 10:37:28', '2025-05-19 10:37:28'),
(102, 138, 86, 61, 'demo@gmail.com', 'demo-at-gmailcom', '<p>This 7-day Caribbean beach vacation is the perfect way to relax and soak up the sun. Visit some of the most beautiful islands in the Caribbean, including St. Thomas, St. Maarten, and the Bahamas. Spend your days swimming, sunbathing, and exploring the local culture. And in the evenings, enjoy delicious food and drinks at some of the best restaurants in the Caribbean</p>\r\n<p>This tour package includes:</p>\r\n<ul>\r\n<li>Round-trip airfare from your home city to the Caribbean</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>All meals (breakfast, lunch, and dinner)</li>\r\n<li>All taxes and fees</li>\r\n</ul>\r\n<p>No matter what you choose to do, you\'re sure to have an unforgettable vacation on this 7-Day Caribbean Beach Vacation.</p>', NULL, NULL, '2025-05-19 11:16:28', '2025-05-19 11:16:28'),
(103, 139, 86, 61, 'إجازة على الشاطئ الكاريبي لمدة', 'agaz-aal-alshaty-alkaryby-lmd', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">هذه العطلة على الشاطئ الكاريبي لمدة 7 أيام هي الطريقة المثالية للاسترخاء والاستمتاع بأشعة الشمس. قم بزيارة بعض من أجمل الجزر في منطقة البحر الكاريبي ، بما في ذلك سانت توماس وسانت مارتن وجزر الباهاما. اقضِ أيامك في السباحة والحمامات الشمسية واستكشاف الثقافة المحلية. وفي المساء ، استمتع بالمأكولات والمشروبات اللذيذة في بعض أفضل المطاعم في منطقة البحر الكاريبي\r\n\r\nتتضمن هذه الرحلة السياحية ما يلي:\r\n\r\nتذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nجميع الوجبات (الإفطار والغداء والعشاء)\r\nجميع الضرائب والرسوم\r\n\r\nبغض النظر عما تختار القيام به ، فمن المؤكد أنك ستحصل على إجازة لا تُنسى في إجازة الشاطئ الكاريبي التي تستغرق 7 أيام.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-05-19 11:16:28', '2025-05-19 11:16:28');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_coupons`
--

CREATE TABLE `user_package_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `value` decimal(8,2) UNSIGNED NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `packages` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_package_coupons`
--

INSERT INTO `user_package_coupons` (`id`, `user_id`, `name`, `code`, `type`, `value`, `start_date`, `end_date`, `serial_number`, `packages`, `created_at`, `updated_at`) VALUES
(16, 83, 'Summer Deal', 'summer08', 'percentage', '10.00', '2025-04-30', '2034-06-02', 1, NULL, '2025-04-30 06:46:11', '2025-04-30 06:46:11'),
(17, 84, 'Summer Deal', 'summer08', 'percentage', '10.00', '2025-04-30', '2034-06-02', 1, NULL, '2025-04-30 06:46:11', '2025-04-30 06:46:11'),
(18, 85, 'Summer Deal', 'summer08', 'percentage', '10.00', '2025-04-30', '2034-06-02', 1, NULL, '2025-04-30 00:46:11', '2025-04-30 00:46:11'),
(19, 86, 'Summer Deal', 'summer08', 'percentage', '10.00', '2025-04-30', '2034-06-02', 1, NULL, '2025-04-30 00:46:11', '2025-04-30 00:46:11'),
(20, 87, 'Summer Deal', 'summer08', 'percentage', '10.00', '2025-04-30', '2034-06-02', 1, NULL, '2025-04-30 00:46:11', '2025-04-30 00:46:11');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_locations`
--

CREATE TABLE `user_package_locations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `latitude` decimal(8,5) DEFAULT NULL,
  `longitude` decimal(8,5) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_package_locations`
--

INSERT INTO `user_package_locations` (`id`, `language_id`, `package_id`, `user_id`, `name`, `latitude`, `longitude`, `created_at`, `updated_at`) VALUES
(21, 132, 19, 83, 'Rocky Mountains', '40.33889', '-105.22855', '2025-04-30 07:09:02', '2025-04-30 07:09:08'),
(22, 133, 19, 83, 'جبال صخرية', '40.33889', '-105.22855', '2025-04-30 07:09:32', '2025-04-30 07:09:32'),
(23, 132, 20, 83, 'Aegean Sea', '37.22494', '23.74874', '2025-04-30 07:19:51', '2025-04-30 07:19:51'),
(24, 133, 20, 83, 'بحر ايجه', '37.22494', '23.74874', '2025-04-30 07:20:07', '2025-04-30 07:20:07'),
(25, 132, 21, 83, 'Banff National Park, Canada', '49.27330', '-110.02050', '2025-04-30 07:28:15', '2025-04-30 07:28:15'),
(26, 133, 21, 83, 'حديقة بانف الوطنية ، كند', '49.27330', '-110.02050', '2025-04-30 07:28:33', '2025-04-30 07:28:33'),
(27, 132, 22, 83, 'Zermatt, Switzerland', '46.07533', '7.64139', '2025-04-30 07:34:20', '2025-04-30 07:34:20'),
(28, 133, 22, 83, 'زيرمات ، سويسرا', '46.07533', '7.64139', '2025-04-30 07:34:39', '2025-04-30 07:34:39'),
(29, 132, 23, 83, 'Mount Everest', '27.98607', '86.92262', '2025-04-30 08:42:48', '2025-04-30 08:42:48'),
(30, 133, 23, 83, 'جبل إيفرست', '27.98607', '86.92262', '2025-04-30 08:43:38', '2025-04-30 08:43:38'),
(31, 134, 26, 84, 'Rocky Mountains', '40.33889', '-105.22855', '2025-04-30 01:09:02', '2025-04-30 01:09:08'),
(32, 135, 26, 84, 'جبال صخرية', '40.33889', '-105.22855', '2025-04-30 01:09:32', '2025-04-30 01:09:32'),
(33, 134, 27, 84, 'Aegean Sea', '37.22494', '23.74874', '2025-04-30 01:19:51', '2025-04-30 01:19:51'),
(34, 135, 27, 84, 'بحر ايجه', '37.22494', '23.74874', '2025-04-30 01:20:07', '2025-04-30 01:20:07'),
(35, 134, 28, 84, 'Banff National Park, Canada', '49.27330', '-110.02050', '2025-04-30 01:28:15', '2025-04-30 01:28:15'),
(36, 135, 28, 84, 'حديقة بانف الوطنية ، كند', '49.27330', '-110.02050', '2025-04-30 01:28:33', '2025-04-30 01:28:33'),
(37, 134, 29, 84, 'Zermatt, Switzerland', '46.07533', '7.64139', '2025-04-30 01:34:20', '2025-04-30 01:34:20'),
(38, 135, 29, 84, 'زيرمات ، سويسرا', '46.07533', '7.64139', '2025-04-30 01:34:39', '2025-04-30 01:34:39'),
(39, 134, 30, 84, 'Mount Everest', '27.98607', '86.92262', '2025-04-30 02:42:48', '2025-04-30 02:42:48'),
(40, 135, 30, 84, 'جبل إيفرست', '27.98607', '86.92262', '2025-04-30 02:43:38', '2025-04-30 02:43:38');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_plans`
--

CREATE TABLE `user_package_plans` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `day_number` mediumint(8) UNSIGNED DEFAULT NULL,
  `start_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `end_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `plan` longtext COLLATE utf8_unicode_ci NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_package_plans`
--

INSERT INTO `user_package_plans` (`id`, `language_id`, `package_id`, `user_id`, `day_number`, `start_time`, `end_time`, `title`, `plan`, `created_at`, `updated_at`) VALUES
(14, 132, 19, 83, 1, NULL, NULL, 'Bear Lake Trailhead to Haynach Lakes Camp', '<ul>\r\n<li>Hike 10.2 miles (16.4 km) with an elevation gain of 3,700 feet (1,130 m) to Haynach Lakes Camp.</li>\r\n<li>Enjoy stunning views of Bear Lake, Flattop Mountain, and the surrounding peaks.</li>\r\n<li>Camp at Haynach Lakes Camp, which is located in a beautiful alpine meadow.</li>\r\n</ul>', '2025-04-30 07:07:03', '2025-04-30 07:07:03'),
(15, 132, 19, 83, 2, NULL, NULL, 'Haynach Lakes Camp to Emerald Lake', '<ul>\r\n<li>Hike 6.2 miles (10 km) with an elevation gain of 1,800 feet (550 m) to Emerald Lake.</li>\r\n<li>Take a swim in the crystal-clear waters of Emerald Lake.</li>\r\n<li>Hike to the Emerald Lake overlook for panoramic views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Emerald Lake Campground.</li>\r\n</ul>', '2025-04-30 07:07:19', '2025-04-30 07:07:19'),
(16, 132, 19, 83, 3, NULL, NULL, 'Emerald Lake to Lake of Glass', '<ul>\r\n<li>Hike 7.8 miles (12.6 km) with an elevation gain of 2,500 feet (760 m) to Lake of Glass.</li>\r\n<li>Enjoy the solitude of Lake of Glass, which is a less-visited lake in the park.</li>\r\n<li>Hike to the Lake of Glass overlook for stunning views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Lake of Glass Campground.</li>\r\n</ul>', '2025-04-30 07:07:32', '2025-04-30 07:07:32'),
(17, 133, 19, 83, 1, NULL, NULL, 'بير ليك تريل هيد إلى معسكر بحيرات هايناش', '<p>تنزه لمسافة 10.2 ميل (16.4 كم) مع زيادة ارتفاع 3,700 قدم</p>\r\n<p>(1,130 م) إلى . استمتع بإطلالات خلابة على بحيرة بير وجبل</p>\r\n<p>&nbsp;فلاتوب والقمم المحيطة. كامب آت ها</p>', '2025-04-30 07:08:29', '2025-04-30 07:08:29'),
(18, 132, 20, 83, NULL, '1:30 PM', '4:00 PM', 'Visit Delos', '<ul>\r\n<li>Take a ferry to Delos, an ancient island that was once the center of the Cycladic civilization.</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">\r\n<ul>\r\n<li>See the ruins of the Temple of Apollo, the House of Dionysus, and the Theater of Dionysus.</li>\r\n<li>Learn about the history of Delos from your guide.</li>\r\n<li>Visit the Archaeological Museum of Delos to see more artifacts from the island.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>', '2025-04-30 07:13:17', '2025-04-30 07:13:17'),
(19, 132, 20, 83, NULL, '10:00 AM', '12:00 PM', 'Explore Mykonos Town', '<ul>\r\n<li>Visit the whitewashed houses, narrow streets, and windmills of Mykonos Town, a UNESCO World Heritage Site.\r\n<div>&nbsp;</div>\r\n</li>\r\n<li>Learn about the island\'s history and culture from your guide.</li>\r\n<li>Visit the Panagia Paraportiani church, one of the most iconic landmarks in Mykonos.</li>\r\n<li>Take a stroll along the waterfront and enjoy the views of the Aegean Sea.</li>\r\n</ul>', '2025-04-30 07:13:58', '2025-04-30 07:13:58'),
(20, 133, 20, 83, NULL, '10:00 AM', '12:00 PM', 'قم بزيارة', '<p dir=\"rtl\">&nbsp;</p>\r\n<ul dir=\"rtl\">\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">استقل العبارة إلى Delos ، وهي جزيرة قديمة كانت ذات يوم مركز&nbsp;</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">الحضارة السيكلاد</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">يكية. شاهد أنقاض معبد أبولو ومنزل ديونيسوس</span></li>\r\n<li>ومسرح ديونيسوس. تعرف على تاريخ Delos من دليلك. قم بزيارة</li>\r\n<li>متحف ديلوس الأثري لمشاهدة ال</li>\r\n<li>مزيد من القطع الأثرية من الجزيرة.</li>\r\n</ul>\r\n<p>&nbsp;</p>', '2025-04-30 07:17:14', '2025-04-30 07:17:14'),
(21, 133, 20, 83, NULL, '1:00 AM', '3:00 PM', 'استكشف مدينة ميكونوس', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<ul dir=\"rtl\">\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة المنازل المطلية باللون الأبيض</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">&nbsp;والشوارع الضيقة وطواحين الهواء في مدينة ميكونوس ، وهي أحد مواقع التراث العالمي لليونسكو.</span></li>\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تعرف على تاريخ الجزيرة وثقافتها من دليلك.</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة كنيسة باناجيا بارابورتياني ، أحد أكثر المعالم شهرة في ميكونوس</span>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n</li>\r\n</ul>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 07:19:13', '2025-04-30 07:19:13'),
(22, 132, 21, 83, 1, NULL, NULL, 'Ski or snowboard all day long!', '<p>This is just a sample itinerary, of course. You can customize it to fit your own interests and preferences. And don\'t forget to leave some time for unplanned activities, like exploring the local area or meeting new people. After all, part of the fun of a ski trip is the unexpected!</p>\r\n<ul>\r\n<li>Hit the slopes early in the morning to beat the crowds.</li>\r\n<li>Try out some new trails or challenge yourself on a black diamond.</li>\r\n<li>Take a break for lunch at a mountaintop restaurant.</li>\r\n<li>Go ice skating or snowshoeing in the afternoon.</li>\r\n</ul>', '2025-04-30 07:26:24', '2025-04-30 07:26:24'),
(23, 133, 21, 83, 1, NULL, NULL, 'تزلج أو على الجليد طوال اليوم!', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">هذا مجرد نموذج لخط سير الرحلة بالطبع. يمكنك تخصيصه<br> ليناسب اهتماماتك وتفضيلاتك. ولا تنسَ تخصيص بعض الوقت<br> للأنشطة غير المخطط لها ، مثل استكشاف المنطقة المحلية<br> أو مقابلة أشخاص جدد. بعد كل شيء ، جزء من متعة رحلة ا<br>لتزلج هو غير متوقع!<br><br>ضرب المنحدرات في الصباح الباكر للتغلب على الحشود.\r\nجرب بعض المسارات الجديدة أو تحدى نفسك على ألماسة سوداء.\r\n<br>خذ استراحة لتناول طعام الغداء في مطعم على قمة الجبل.\r\n</span></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">اذهب للتزلج على الجليد أو المشي بالأحذية الثلجية في فترة ما بعد الظهر.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\">&nbsp;</div>', '2025-04-30 07:27:10', '2025-04-30 07:27:10'),
(24, 132, 22, 83, 1, NULL, NULL, 'Arrive in Zurich, Switzerland', '<ul>\r\n<li>Hike to the Sunnegga</li>\r\n<li>Enjoy the views of the Matterhorn and the valley below</li>\r\n<li>Take a cable car back to Zermatt</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">This is just a sample itinerary, and the specific activities and destinations can be customized to your interests and preferences. Please contact us for more information.</div>\r\n</div>\r\n</div>', '2025-04-30 07:33:27', '2025-04-30 07:33:27'),
(25, 133, 22, 83, 1, NULL, NULL, 'زيرمات ، سويسرا', '<ul>\r\n<li>تنزه سيرًا على الأقدام إلى سونيغا</li>\r\n<li>استمتع بمناظر جبل</li>\r\n<li>&nbsp;ماترهورن والوادي أسفله</li>\r\n<li>استقل التلفريك للعودة إلى زيرمات</li>\r\n<li>هذا مجرد برنامج رحلة نموذجي،</li>\r\n<li>&nbsp;ويمكن تخصيص الأنشطة</li>\r\n<li>&nbsp;والوجهات المحددة لتناسب</li>\r\n<li>&nbsp;اهتماماتك وتفضيلاتك.</li>\r\n<li>لمزيد من</li>\r\n<li>&nbsp;المعلومات، يُرجى التواصل معنا.</li>\r\n</ul>', '2025-04-30 07:37:17', '2025-04-30 07:37:17'),
(26, 132, 23, 83, NULL, '1:30 PM', '5:00 PM', 'Sherpa Culture Talk', '<p>This talk will give you a deeper understanding of the Sherpa people, who are the indigenous people of the Everest region. We will learn about their history, culture, and way of life.</p>\r\n<ul>\r\n<li><strong>Logistics:</strong>&nbsp;The talk will be held in the hotel lobby at 1:30pm. It will last for approximately 1 hour.</li>\r\n</ul>', '2025-04-30 07:41:29', '2025-04-30 07:41:29'),
(27, 132, 24, 83, NULL, '1:00 PM', '3:30 PM', 'Spend days lounging on the beach, swimming in the ocean, and sunbathing', '<ul>\r\n<li>Go surfing or stand-up paddleboarding in Canggu</li>\r\n<li>Visit the Tanah Lot Temple</li>\r\n<li>Have lunch at a local restaurant</li>\r\n</ul>', '2025-04-30 08:49:17', '2025-04-30 08:49:17'),
(28, 132, 24, 83, NULL, '10:30 AM', '12:30 PM', 'Stay at a luxurious beachfront resort in Seminyak', '<ul>\r\n<li>Arrive in Bali and transfer to your resort in Seminyak</li>\r\n<li>Check in and relax at the pool or beach</li>\r\n<li>Enjoy a welcome dinner at the resort</li>\r\n</ul>', '2025-04-30 08:49:42', '2025-04-30 08:49:42'),
(29, 133, 24, 83, NULL, '12:30 PM', '3:00 PM', 'اقضِ أيامًا في الاسترخاء على الشاطئ والسباحة في المحيط...', '<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">اذهب لركوب الأمواج أو التجديف بالوقوف في كانجو\r\nقم بزيارة معبد تاناه لوت\r\nتناول الغداء في مطعم محلي</span></pre>', '2025-04-30 08:50:23', '2025-04-30 08:50:23'),
(30, 133, 24, 83, NULL, '10:00 AM', '12:00 PM', 'تمتع بالإقامة في منتجع فاخر على شاطئ البحر في سيمينياك', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">الوصول إلى بالي والانتقال إلى المنتجع الخاص بك في سيمينياك\r\nتسجيل الدخول والاسترخاء في المسبح أو الشاطئ\r\nاستمتع بعشاء ترحيبي في المنتجع</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 08:51:12', '2025-04-30 08:51:12'),
(31, 132, 25, 83, 2, NULL, NULL, 'Nights\' Accommodations in a Beachfront Hotel', '<p>This tour package includes 7 nights\' accommodations in a beachfront hotel, as well as round-trip flights from your home city. The hotel will be located in a popular beach destination, and will offer a variety of amenities, including a pool, fitness center, and on-site restaurant.</p>\r\n<ul>\r\n<li>Round-trip flights from your home city</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>Breakfast daily</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 08:53:26', '2025-04-30 08:53:26'),
(32, 132, 25, 83, 1, NULL, NULL, 'Round-trip airfare from your home city to the Caribbean', '<p>This tour package includes a round-trip airfare from your home city to any destination in the Caribbean. You can choose from a variety of airlines and departure airports, so you can find the perfect flight for your needs.</p>\r\n<ul>\r\n<li>Round-trip airfare</li>\r\n<li>2 checked bags</li>\r\n<li>1 carry-on bag</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 08:53:50', '2025-04-30 08:53:50'),
(33, 133, 25, 83, 2, NULL, NULL, 'إقامة 7 ليالٍ في فندق على شاطئ البحر', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه إقامة لمدة 7 ليالٍ في فندق على شاطئ البحر ، بالإضافة إلى رحلات طيران ذهابًا وإيابًا من مدينتك. يقع الفندق في وجهة شاطئية شهيرة ، وسيقدم مجموعة متنوعة من وسائل الراحة ، بما في ذلك مسبح ومركز للياقة البدنية ومطعم في الموقع.<br><br>رحلات ذهابًا وإيابًا من مدينتك\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nالإفطار يوميا\r\nالضرائب والرسوم<br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 08:54:10', '2025-04-30 08:54:10'),
(34, 133, 25, 83, 1, NULL, NULL, 'تذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه تذكرة طيران ذهابًا وإيابًا من مدينتك إلى أي وجهة في منطقة البحر الكاريبي. يمكنك الاختيار من بين مجموعة متنوعة من شركات الطيران ومطارات المغادرة ، حتى تتمكن من العثور على الرحلة المثالية لاحتياجاتك.<br><br></span></pre>\r\n<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">جولة للسفر جوا رحلة\r\nحقيبتان مسجَّلتان\r\n1 حقيبة يد\r\nالضرائب والرسوم</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\"><br><br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 08:54:25', '2025-04-30 08:54:25'),
(35, 134, 26, 84, 1, NULL, NULL, 'Bear Lake Trailhead to Haynach Lakes Camp', '<ul>\r\n<li>Hike 10.2 miles (16.4 km) with an elevation gain of 3,700 feet (1,130 m) to Haynach Lakes Camp.</li>\r\n<li>Enjoy stunning views of Bear Lake, Flattop Mountain, and the surrounding peaks.</li>\r\n<li>Camp at Haynach Lakes Camp, which is located in a beautiful alpine meadow.</li>\r\n</ul>', '2025-04-30 01:07:03', '2025-04-30 01:07:03'),
(36, 134, 26, 84, 2, NULL, NULL, 'Haynach Lakes Camp to Emerald Lake', '<ul>\r\n<li>Hike 6.2 miles (10 km) with an elevation gain of 1,800 feet (550 m) to Emerald Lake.</li>\r\n<li>Take a swim in the crystal-clear waters of Emerald Lake.</li>\r\n<li>Hike to the Emerald Lake overlook for panoramic views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Emerald Lake Campground.</li>\r\n</ul>', '2025-04-30 01:07:19', '2025-04-30 01:07:19'),
(37, 134, 26, 84, 3, NULL, NULL, 'Emerald Lake to Lake of Glass', '<ul>\r\n<li>Hike 7.8 miles (12.6 km) with an elevation gain of 2,500 feet (760 m) to Lake of Glass.</li>\r\n<li>Enjoy the solitude of Lake of Glass, which is a less-visited lake in the park.</li>\r\n<li>Hike to the Lake of Glass overlook for stunning views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Lake of Glass Campground.</li>\r\n</ul>', '2025-04-30 01:07:32', '2025-04-30 01:07:32'),
(38, 135, 26, 84, 1, NULL, NULL, 'بير ليك تريل هيد إلى معسكر بحيرات هايناش', '<p>تنزه لمسافة 10.2 ميل (16.4 كم) مع زيادة ارتفاع 3,700 قدم</p>\r\n<p>(1,130 م) إلى . استمتع بإطلالات خلابة على بحيرة بير وجبل</p>\r\n<p>&nbsp;فلاتوب والقمم المحيطة. كامب آت ها</p>', '2025-04-30 01:08:29', '2025-04-30 01:08:29'),
(39, 134, 27, 84, NULL, '1:30 PM', '4:00 PM', 'Visit Delos', '<ul>\r\n<li>Take a ferry to Delos, an ancient island that was once the center of the Cycladic civilization.</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">\r\n<ul>\r\n<li>See the ruins of the Temple of Apollo, the House of Dionysus, and the Theater of Dionysus.</li>\r\n<li>Learn about the history of Delos from your guide.</li>\r\n<li>Visit the Archaeological Museum of Delos to see more artifacts from the island.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>', '2025-04-30 01:13:17', '2025-04-30 01:13:17'),
(40, 134, 27, 84, NULL, '10:00 AM', '12:00 PM', 'Explore Mykonos Town', '<ul>\r\n<li>Visit the whitewashed houses, narrow streets, and windmills of Mykonos Town, a UNESCO World Heritage Site.\r\n<div>&nbsp;</div>\r\n</li>\r\n<li>Learn about the island\'s history and culture from your guide.</li>\r\n<li>Visit the Panagia Paraportiani church, one of the most iconic landmarks in Mykonos.</li>\r\n<li>Take a stroll along the waterfront and enjoy the views of the Aegean Sea.</li>\r\n</ul>', '2025-04-30 01:13:58', '2025-04-30 01:13:58'),
(41, 135, 27, 84, NULL, '10:00 AM', '12:00 PM', 'قم بزيارة', '<p dir=\"rtl\">&nbsp;</p>\r\n<ul dir=\"rtl\">\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">استقل العبارة إلى Delos ، وهي جزيرة قديمة كانت ذات يوم مركز&nbsp;</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">الحضارة السيكلاد</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">يكية. شاهد أنقاض معبد أبولو ومنزل ديونيسوس</span></li>\r\n<li>ومسرح ديونيسوس. تعرف على تاريخ Delos من دليلك. قم بزيارة</li>\r\n<li>متحف ديلوس الأثري لمشاهدة ال</li>\r\n<li>مزيد من القطع الأثرية من الجزيرة.</li>\r\n</ul>\r\n<p>&nbsp;</p>', '2025-04-30 01:17:14', '2025-04-30 01:17:14'),
(42, 135, 27, 84, NULL, '1:00 AM', '3:00 PM', 'استكشف مدينة ميكونوس', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<ul dir=\"rtl\">\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة المنازل المطلية باللون الأبيض</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">&nbsp;والشوارع الضيقة وطواحين الهواء في مدينة ميكونوس ، وهي أحد مواقع التراث العالمي لليونسكو.</span></li>\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تعرف على تاريخ الجزيرة وثقافتها من دليلك.</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة كنيسة باناجيا بارابورتياني ، أحد أكثر المعالم شهرة في ميكونوس</span>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n</li>\r\n</ul>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 01:19:13', '2025-04-30 01:19:13'),
(43, 134, 28, 84, 1, NULL, NULL, 'Ski or snowboard all day long!', '<p>This is just a sample itinerary, of course. You can customize it to fit your own interests and preferences. And don\'t forget to leave some time for unplanned activities, like exploring the local area or meeting new people. After all, part of the fun of a ski trip is the unexpected!</p>\r\n<ul>\r\n<li>Hit the slopes early in the morning to beat the crowds.</li>\r\n<li>Try out some new trails or challenge yourself on a black diamond.</li>\r\n<li>Take a break for lunch at a mountaintop restaurant.</li>\r\n<li>Go ice skating or snowshoeing in the afternoon.</li>\r\n</ul>', '2025-04-30 01:26:24', '2025-04-30 01:26:24'),
(44, 135, 28, 84, 1, NULL, NULL, 'تزلج أو على الجليد طوال اليوم!', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">هذا مجرد نموذج لخط سير الرحلة بالطبع. يمكنك تخصيصه<br> ليناسب اهتماماتك وتفضيلاتك. ولا تنسَ تخصيص بعض الوقت<br> للأنشطة غير المخطط لها ، مثل استكشاف المنطقة المحلية<br> أو مقابلة أشخاص جدد. بعد كل شيء ، جزء من متعة رحلة ا<br>لتزلج هو غير متوقع!<br><br>ضرب المنحدرات في الصباح الباكر للتغلب على الحشود.\r\nجرب بعض المسارات الجديدة أو تحدى نفسك على ألماسة سوداء.\r\n<br>خذ استراحة لتناول طعام الغداء في مطعم على قمة الجبل.\r\n</span></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">اذهب للتزلج على الجليد أو المشي بالأحذية الثلجية في فترة ما بعد الظهر.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\">&nbsp;</div>', '2025-04-30 01:27:10', '2025-04-30 01:27:10'),
(45, 134, 29, 84, 1, NULL, NULL, 'Arrive in Zurich, Switzerland', '<ul>\r\n<li>Hike to the Sunnegga</li>\r\n<li>Enjoy the views of the Matterhorn and the valley below</li>\r\n<li>Take a cable car back to Zermatt</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">This is just a sample itinerary, and the specific activities and destinations can be customized to your interests and preferences. Please contact us for more information.</div>\r\n</div>\r\n</div>', '2025-04-30 01:33:27', '2025-04-30 01:33:27'),
(46, 135, 29, 84, 1, NULL, NULL, 'زيرمات ، سويسرا', '<ul>\r\n<li>تنزه سيرًا على الأقدام إلى سونيغا</li>\r\n<li>استمتع بمناظر جبل</li>\r\n<li>&nbsp;ماترهورن والوادي أسفله</li>\r\n<li>استقل التلفريك للعودة إلى زيرمات</li>\r\n<li>هذا مجرد برنامج رحلة نموذجي،</li>\r\n<li>&nbsp;ويمكن تخصيص الأنشطة</li>\r\n<li>&nbsp;والوجهات المحددة لتناسب</li>\r\n<li>&nbsp;اهتماماتك وتفضيلاتك.</li>\r\n<li>لمزيد من</li>\r\n<li>&nbsp;المعلومات، يُرجى التواصل معنا.</li>\r\n</ul>', '2025-04-30 01:37:17', '2025-04-30 01:37:17'),
(47, 134, 30, 84, NULL, '1:30 PM', '5:00 PM', 'Sherpa Culture Talk', '<p>This talk will give you a deeper understanding of the Sherpa people, who are the indigenous people of the Everest region. We will learn about their history, culture, and way of life.</p>\r\n<ul>\r\n<li><strong>Logistics:</strong>&nbsp;The talk will be held in the hotel lobby at 1:30pm. It will last for approximately 1 hour.</li>\r\n</ul>', '2025-04-30 01:41:29', '2025-04-30 01:41:29'),
(48, 134, 31, 84, NULL, '1:00 PM', '3:30 PM', 'Spend days lounging on the beach, swimming in the ocean, and sunbathing', '<ul>\r\n<li>Go surfing or stand-up paddleboarding in Canggu</li>\r\n<li>Visit the Tanah Lot Temple</li>\r\n<li>Have lunch at a local restaurant</li>\r\n</ul>', '2025-04-30 02:49:17', '2025-04-30 02:49:17'),
(49, 134, 31, 84, NULL, '10:30 AM', '12:30 PM', 'Stay at a luxurious beachfront resort in Seminyak', '<ul>\r\n<li>Arrive in Bali and transfer to your resort in Seminyak</li>\r\n<li>Check in and relax at the pool or beach</li>\r\n<li>Enjoy a welcome dinner at the resort</li>\r\n</ul>', '2025-04-30 02:49:42', '2025-04-30 02:49:42'),
(50, 135, 31, 84, NULL, '12:30 PM', '3:00 PM', 'اقضِ أيامًا في الاسترخاء على الشاطئ والسباحة في المحيط...', '<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">اذهب لركوب الأمواج أو التجديف بالوقوف في كانجو\r\nقم بزيارة معبد تاناه لوت\r\nتناول الغداء في مطعم محلي</span></pre>', '2025-04-30 02:50:23', '2025-04-30 02:50:23'),
(51, 135, 31, 84, NULL, '10:00 AM', '12:00 PM', 'تمتع بالإقامة في منتجع فاخر على شاطئ البحر في سيمينياك', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">الوصول إلى بالي والانتقال إلى المنتجع الخاص بك في سيمينياك\r\nتسجيل الدخول والاسترخاء في المسبح أو الشاطئ\r\nاستمتع بعشاء ترحيبي في المنتجع</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:51:12', '2025-04-30 02:51:12'),
(52, 134, 32, 84, 2, NULL, NULL, 'Nights\' Accommodations in a Beachfront Hotel', '<p>This tour package includes 7 nights\' accommodations in a beachfront hotel, as well as round-trip flights from your home city. The hotel will be located in a popular beach destination, and will offer a variety of amenities, including a pool, fitness center, and on-site restaurant.</p>\r\n<ul>\r\n<li>Round-trip flights from your home city</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>Breakfast daily</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:26', '2025-04-30 02:53:26'),
(53, 134, 32, 84, 1, NULL, NULL, 'Round-trip airfare from your home city to the Caribbean', '<p>This tour package includes a round-trip airfare from your home city to any destination in the Caribbean. You can choose from a variety of airlines and departure airports, so you can find the perfect flight for your needs.</p>\r\n<ul>\r\n<li>Round-trip airfare</li>\r\n<li>2 checked bags</li>\r\n<li>1 carry-on bag</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:50', '2025-04-30 02:53:50'),
(54, 135, 32, 84, 2, NULL, NULL, 'إقامة 7 ليالٍ في فندق على شاطئ البحر', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه إقامة لمدة 7 ليالٍ في فندق على شاطئ البحر ، بالإضافة إلى رحلات طيران ذهابًا وإيابًا من مدينتك. يقع الفندق في وجهة شاطئية شهيرة ، وسيقدم مجموعة متنوعة من وسائل الراحة ، بما في ذلك مسبح ومركز للياقة البدنية ومطعم في الموقع.<br><br>رحلات ذهابًا وإيابًا من مدينتك\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nالإفطار يوميا\r\nالضرائب والرسوم<br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:10', '2025-04-30 02:54:10'),
(55, 135, 32, 84, 1, NULL, NULL, 'تذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه تذكرة طيران ذهابًا وإيابًا من مدينتك إلى أي وجهة في منطقة البحر الكاريبي. يمكنك الاختيار من بين مجموعة متنوعة من شركات الطيران ومطارات المغادرة ، حتى تتمكن من العثور على الرحلة المثالية لاحتياجاتك.<br><br></span></pre>\r\n<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">جولة للسفر جوا رحلة\r\nحقيبتان مسجَّلتان\r\n1 حقيبة يد\r\nالضرائب والرسوم</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\"><br><br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:25', '2025-04-30 02:54:25'),
(56, 136, 33, 85, 1, NULL, NULL, 'Bear Lake Trailhead to Haynach Lakes Camp', '<ul>\r\n<li>Hike 10.2 miles (16.4 km) with an elevation gain of 3,700 feet (1,130 m) to Haynach Lakes Camp.</li>\r\n<li>Enjoy stunning views of Bear Lake, Flattop Mountain, and the surrounding peaks.</li>\r\n<li>Camp at Haynach Lakes Camp, which is located in a beautiful alpine meadow.</li>\r\n</ul>', '2025-04-30 01:07:03', '2025-04-30 01:07:03'),
(57, 136, 33, 85, 2, NULL, NULL, 'Haynach Lakes Camp to Emerald Lake', '<ul>\r\n<li>Hike 6.2 miles (10 km) with an elevation gain of 1,800 feet (550 m) to Emerald Lake.</li>\r\n<li>Take a swim in the crystal-clear waters of Emerald Lake.</li>\r\n<li>Hike to the Emerald Lake overlook for panoramic views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Emerald Lake Campground.</li>\r\n</ul>', '2025-04-30 01:07:19', '2025-04-30 01:07:19'),
(58, 136, 33, 85, 3, NULL, NULL, 'Emerald Lake to Lake of Glass', '<ul>\r\n<li>Hike 7.8 miles (12.6 km) with an elevation gain of 2,500 feet (760 m) to Lake of Glass.</li>\r\n<li>Enjoy the solitude of Lake of Glass, which is a less-visited lake in the park.</li>\r\n<li>Hike to the Lake of Glass overlook for stunning views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Lake of Glass Campground.</li>\r\n</ul>', '2025-04-30 01:07:32', '2025-04-30 01:07:32'),
(59, 137, 33, 85, 1, NULL, NULL, 'بير ليك تريل هيد إلى معسكر بحيرات هايناش', '<p>تنزه لمسافة 10.2 ميل (16.4 كم) مع زيادة ارتفاع 3,700 قدم</p>\r\n<p>(1,130 م) إلى . استمتع بإطلالات خلابة على بحيرة بير وجبل</p>\r\n<p>&nbsp;فلاتوب والقمم المحيطة. كامب آت ها</p>', '2025-04-30 01:08:29', '2025-04-30 01:08:29'),
(60, 136, 34, 85, NULL, '1:30 PM', '4:00 PM', 'Visit Delos', '<ul>\r\n<li>Take a ferry to Delos, an ancient island that was once the center of the Cycladic civilization.</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">\r\n<ul>\r\n<li>See the ruins of the Temple of Apollo, the House of Dionysus, and the Theater of Dionysus.</li>\r\n<li>Learn about the history of Delos from your guide.</li>\r\n<li>Visit the Archaeological Museum of Delos to see more artifacts from the island.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>', '2025-04-30 01:13:17', '2025-04-30 01:13:17'),
(61, 136, 34, 85, NULL, '10:00 AM', '12:00 PM', 'Explore Mykonos Town', '<ul>\r\n<li>Visit the whitewashed houses, narrow streets, and windmills of Mykonos Town, a UNESCO World Heritage Site.\r\n<div>&nbsp;</div>\r\n</li>\r\n<li>Learn about the island\'s history and culture from your guide.</li>\r\n<li>Visit the Panagia Paraportiani church, one of the most iconic landmarks in Mykonos.</li>\r\n<li>Take a stroll along the waterfront and enjoy the views of the Aegean Sea.</li>\r\n</ul>', '2025-04-30 01:13:58', '2025-04-30 01:13:58'),
(62, 137, 34, 85, NULL, '10:00 AM', '12:00 PM', 'قم بزيارة', '<p dir=\"rtl\">&nbsp;</p>\r\n<ul dir=\"rtl\">\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">استقل العبارة إلى Delos ، وهي جزيرة قديمة كانت ذات يوم مركز&nbsp;</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">الحضارة السيكلاد</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">يكية. شاهد أنقاض معبد أبولو ومنزل ديونيسوس</span></li>\r\n<li>ومسرح ديونيسوس. تعرف على تاريخ Delos من دليلك. قم بزيارة</li>\r\n<li>متحف ديلوس الأثري لمشاهدة ال</li>\r\n<li>مزيد من القطع الأثرية من الجزيرة.</li>\r\n</ul>\r\n<p>&nbsp;</p>', '2025-04-30 01:17:14', '2025-04-30 01:17:14'),
(63, 137, 34, 85, NULL, '1:00 AM', '3:00 PM', 'استكشف مدينة ميكونوس', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<ul dir=\"rtl\">\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة المنازل المطلية باللون الأبيض</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">&nbsp;والشوارع الضيقة وطواحين الهواء في مدينة ميكونوس ، وهي أحد مواقع التراث العالمي لليونسكو.</span></li>\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تعرف على تاريخ الجزيرة وثقافتها من دليلك.</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة كنيسة باناجيا بارابورتياني ، أحد أكثر المعالم شهرة في ميكونوس</span>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n</li>\r\n</ul>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 01:19:13', '2025-04-30 01:19:13'),
(64, 136, 35, 85, 1, NULL, NULL, 'Ski or snowboard all day long!', '<p>This is just a sample itinerary, of course. You can customize it to fit your own interests and preferences. And don\'t forget to leave some time for unplanned activities, like exploring the local area or meeting new people. After all, part of the fun of a ski trip is the unexpected!</p>\r\n<ul>\r\n<li>Hit the slopes early in the morning to beat the crowds.</li>\r\n<li>Try out some new trails or challenge yourself on a black diamond.</li>\r\n<li>Take a break for lunch at a mountaintop restaurant.</li>\r\n<li>Go ice skating or snowshoeing in the afternoon.</li>\r\n</ul>', '2025-04-30 01:26:24', '2025-04-30 01:26:24'),
(65, 137, 35, 85, 1, NULL, NULL, 'تزلج أو على الجليد طوال اليوم!', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">هذا مجرد نموذج لخط سير الرحلة بالطبع. يمكنك تخصيصه<br> ليناسب اهتماماتك وتفضيلاتك. ولا تنسَ تخصيص بعض الوقت<br> للأنشطة غير المخطط لها ، مثل استكشاف المنطقة المحلية<br> أو مقابلة أشخاص جدد. بعد كل شيء ، جزء من متعة رحلة ا<br>لتزلج هو غير متوقع!<br><br>ضرب المنحدرات في الصباح الباكر للتغلب على الحشود.\r\nجرب بعض المسارات الجديدة أو تحدى نفسك على ألماسة سوداء.\r\n<br>خذ استراحة لتناول طعام الغداء في مطعم على قمة الجبل.\r\n</span></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">اذهب للتزلج على الجليد أو المشي بالأحذية الثلجية في فترة ما بعد الظهر.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\">&nbsp;</div>', '2025-04-30 01:27:10', '2025-04-30 01:27:10'),
(66, 136, 36, 85, 1, NULL, NULL, 'Arrive in Zurich, Switzerland', '<ul>\r\n<li>Hike to the Sunnegga</li>\r\n<li>Enjoy the views of the Matterhorn and the valley below</li>\r\n<li>Take a cable car back to Zermatt</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">This is just a sample itinerary, and the specific activities and destinations can be customized to your interests and preferences. Please contact us for more information.</div>\r\n</div>\r\n</div>', '2025-04-30 01:33:27', '2025-04-30 01:33:27'),
(67, 137, 36, 85, 1, NULL, NULL, 'زيرمات ، سويسرا', '<ul>\r\n<li>تنزه سيرًا على الأقدام إلى سونيغا</li>\r\n<li>استمتع بمناظر جبل</li>\r\n<li>&nbsp;ماترهورن والوادي أسفله</li>\r\n<li>استقل التلفريك للعودة إلى زيرمات</li>\r\n<li>هذا مجرد برنامج رحلة نموذجي،</li>\r\n<li>&nbsp;ويمكن تخصيص الأنشطة</li>\r\n<li>&nbsp;والوجهات المحددة لتناسب</li>\r\n<li>&nbsp;اهتماماتك وتفضيلاتك.</li>\r\n<li>لمزيد من</li>\r\n<li>&nbsp;المعلومات، يُرجى التواصل معنا.</li>\r\n</ul>', '2025-04-30 01:37:17', '2025-04-30 01:37:17'),
(68, 136, 37, 85, NULL, '1:30 PM', '5:00 PM', 'Sherpa Culture Talk', '<p>This talk will give you a deeper understanding of the Sherpa people, who are the indigenous people of the Everest region. We will learn about their history, culture, and way of life.</p>\r\n<ul>\r\n<li><strong>Logistics:</strong>&nbsp;The talk will be held in the hotel lobby at 1:30pm. It will last for approximately 1 hour.</li>\r\n</ul>', '2025-04-30 01:41:29', '2025-04-30 01:41:29'),
(69, 136, 38, 85, NULL, '1:00 PM', '3:30 PM', 'Spend days lounging on the beach, swimming in the ocean, and sunbathing', '<ul>\r\n<li>Go surfing or stand-up paddleboarding in Canggu</li>\r\n<li>Visit the Tanah Lot Temple</li>\r\n<li>Have lunch at a local restaurant</li>\r\n</ul>', '2025-04-30 02:49:17', '2025-04-30 02:49:17'),
(70, 136, 38, 85, NULL, '10:30 AM', '12:30 PM', 'Stay at a luxurious beachfront resort in Seminyak', '<ul>\r\n<li>Arrive in Bali and transfer to your resort in Seminyak</li>\r\n<li>Check in and relax at the pool or beach</li>\r\n<li>Enjoy a welcome dinner at the resort</li>\r\n</ul>', '2025-04-30 02:49:42', '2025-04-30 02:49:42'),
(71, 137, 38, 85, NULL, '12:30 PM', '3:00 PM', 'اقضِ أيامًا في الاسترخاء على الشاطئ والسباحة في المحيط...', '<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">اذهب لركوب الأمواج أو التجديف بالوقوف في كانجو\r\nقم بزيارة معبد تاناه لوت\r\nتناول الغداء في مطعم محلي</span></pre>', '2025-04-30 02:50:23', '2025-04-30 02:50:23'),
(72, 137, 38, 85, NULL, '10:00 AM', '12:00 PM', 'تمتع بالإقامة في منتجع فاخر على شاطئ البحر في سيمينياك', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">الوصول إلى بالي والانتقال إلى المنتجع الخاص بك في سيمينياك\r\nتسجيل الدخول والاسترخاء في المسبح أو الشاطئ\r\nاستمتع بعشاء ترحيبي في المنتجع</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:51:12', '2025-04-30 02:51:12'),
(73, 136, 39, 85, 2, NULL, NULL, 'Nights\' Accommodations in a Beachfront Hotel', '<p>This tour package includes 7 nights\' accommodations in a beachfront hotel, as well as round-trip flights from your home city. The hotel will be located in a popular beach destination, and will offer a variety of amenities, including a pool, fitness center, and on-site restaurant.</p>\r\n<ul>\r\n<li>Round-trip flights from your home city</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>Breakfast daily</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:26', '2025-04-30 02:53:26'),
(74, 136, 39, 85, 1, NULL, NULL, 'Round-trip airfare from your home city to the Caribbean', '<p>This tour package includes a round-trip airfare from your home city to any destination in the Caribbean. You can choose from a variety of airlines and departure airports, so you can find the perfect flight for your needs.</p>\r\n<ul>\r\n<li>Round-trip airfare</li>\r\n<li>2 checked bags</li>\r\n<li>1 carry-on bag</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:50', '2025-04-30 02:53:50'),
(75, 137, 39, 85, 2, NULL, NULL, 'إقامة 7 ليالٍ في فندق على شاطئ البحر', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه إقامة لمدة 7 ليالٍ في فندق على شاطئ البحر ، بالإضافة إلى رحلات طيران ذهابًا وإيابًا من مدينتك. يقع الفندق في وجهة شاطئية شهيرة ، وسيقدم مجموعة متنوعة من وسائل الراحة ، بما في ذلك مسبح ومركز للياقة البدنية ومطعم في الموقع.<br><br>رحلات ذهابًا وإيابًا من مدينتك\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nالإفطار يوميا\r\nالضرائب والرسوم<br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:10', '2025-04-30 02:54:10'),
(76, 137, 39, 85, 1, NULL, NULL, 'تذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه تذكرة طيران ذهابًا وإيابًا من مدينتك إلى أي وجهة في منطقة البحر الكاريبي. يمكنك الاختيار من بين مجموعة متنوعة من شركات الطيران ومطارات المغادرة ، حتى تتمكن من العثور على الرحلة المثالية لاحتياجاتك.<br><br></span></pre>\r\n<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">جولة للسفر جوا رحلة\r\nحقيبتان مسجَّلتان\r\n1 حقيبة يد\r\nالضرائب والرسوم</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\"><br><br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:25', '2025-04-30 02:54:25'),
(77, 138, 41, 86, 1, NULL, NULL, 'Bear Lake Trailhead to Haynach Lakes Camp', '<ul>\r\n<li>Hike 10.2 miles (16.4 km) with an elevation gain of 3,700 feet (1,130 m) to Haynach Lakes Camp.</li>\r\n<li>Enjoy stunning views of Bear Lake, Flattop Mountain, and the surrounding peaks.</li>\r\n<li>Camp at Haynach Lakes Camp, which is located in a beautiful alpine meadow.</li>\r\n</ul>', '2025-04-30 01:07:03', '2025-04-30 01:07:03'),
(78, 138, 41, 86, 2, NULL, NULL, 'Haynach Lakes Camp to Emerald Lake', '<ul>\r\n<li>Hike 6.2 miles (10 km) with an elevation gain of 1,800 feet (550 m) to Emerald Lake.</li>\r\n<li>Take a swim in the crystal-clear waters of Emerald Lake.</li>\r\n<li>Hike to the Emerald Lake overlook for panoramic views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Emerald Lake Campground.</li>\r\n</ul>', '2025-04-30 01:07:19', '2025-04-30 01:07:19'),
(79, 138, 41, 86, 3, NULL, NULL, 'Emerald Lake to Lake of Glass', '<ul>\r\n<li>Hike 7.8 miles (12.6 km) with an elevation gain of 2,500 feet (760 m) to Lake of Glass.</li>\r\n<li>Enjoy the solitude of Lake of Glass, which is a less-visited lake in the park.</li>\r\n<li>Hike to the Lake of Glass overlook for stunning views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Lake of Glass Campground.</li>\r\n</ul>', '2025-04-30 01:07:32', '2025-04-30 01:07:32'),
(80, 139, 41, 86, 1, NULL, NULL, 'بير ليك تريل هيد إلى معسكر بحيرات هايناش', '<p>تنزه لمسافة 10.2 ميل (16.4 كم) مع زيادة ارتفاع 3,700 قدم</p>\r\n<p>(1,130 م) إلى . استمتع بإطلالات خلابة على بحيرة بير وجبل</p>\r\n<p>&nbsp;فلاتوب والقمم المحيطة. كامب آت ها</p>', '2025-04-30 01:08:29', '2025-04-30 01:08:29'),
(81, 138, 42, 86, NULL, '1:30 PM', '4:00 PM', 'Visit Delos', '<ul>\r\n<li>Take a ferry to Delos, an ancient island that was once the center of the Cycladic civilization.</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">\r\n<ul>\r\n<li>See the ruins of the Temple of Apollo, the House of Dionysus, and the Theater of Dionysus.</li>\r\n<li>Learn about the history of Delos from your guide.</li>\r\n<li>Visit the Archaeological Museum of Delos to see more artifacts from the island.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>', '2025-04-30 01:13:17', '2025-04-30 01:13:17'),
(82, 138, 42, 86, NULL, '10:00 AM', '12:00 PM', 'Explore Mykonos Town', '<ul>\r\n<li>Visit the whitewashed houses, narrow streets, and windmills of Mykonos Town, a UNESCO World Heritage Site.\r\n<div>&nbsp;</div>\r\n</li>\r\n<li>Learn about the island\'s history and culture from your guide.</li>\r\n<li>Visit the Panagia Paraportiani church, one of the most iconic landmarks in Mykonos.</li>\r\n<li>Take a stroll along the waterfront and enjoy the views of the Aegean Sea.</li>\r\n</ul>', '2025-04-30 01:13:58', '2025-04-30 01:13:58'),
(83, 139, 42, 86, NULL, '10:00 AM', '12:00 PM', 'قم بزيارة', '<p dir=\"rtl\">&nbsp;</p>\r\n<ul dir=\"rtl\">\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">استقل العبارة إلى Delos ، وهي جزيرة قديمة كانت ذات يوم مركز&nbsp;</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">الحضارة السيكلاد</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">يكية. شاهد أنقاض معبد أبولو ومنزل ديونيسوس</span></li>\r\n<li>ومسرح ديونيسوس. تعرف على تاريخ Delos من دليلك. قم بزيارة</li>\r\n<li>متحف ديلوس الأثري لمشاهدة ال</li>\r\n<li>مزيد من القطع الأثرية من الجزيرة.</li>\r\n</ul>\r\n<p>&nbsp;</p>', '2025-04-30 01:17:14', '2025-04-30 01:17:14'),
(84, 139, 42, 86, NULL, '1:00 AM', '3:00 PM', 'استكشف مدينة ميكونوس', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<ul dir=\"rtl\">\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة المنازل المطلية باللون الأبيض</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">&nbsp;والشوارع الضيقة وطواحين الهواء في مدينة ميكونوس ، وهي أحد مواقع التراث العالمي لليونسكو.</span></li>\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تعرف على تاريخ الجزيرة وثقافتها من دليلك.</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة كنيسة باناجيا بارابورتياني ، أحد أكثر المعالم شهرة في ميكونوس</span>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n</li>\r\n</ul>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 01:19:13', '2025-04-30 01:19:13'),
(85, 138, 43, 86, 1, NULL, NULL, 'Ski or snowboard all day long!', '<p>This is just a sample itinerary, of course. You can customize it to fit your own interests and preferences. And don\'t forget to leave some time for unplanned activities, like exploring the local area or meeting new people. After all, part of the fun of a ski trip is the unexpected!</p>\r\n<ul>\r\n<li>Hit the slopes early in the morning to beat the crowds.</li>\r\n<li>Try out some new trails or challenge yourself on a black diamond.</li>\r\n<li>Take a break for lunch at a mountaintop restaurant.</li>\r\n<li>Go ice skating or snowshoeing in the afternoon.</li>\r\n</ul>', '2025-04-30 01:26:24', '2025-04-30 01:26:24'),
(86, 139, 43, 86, 1, NULL, NULL, 'تزلج أو على الجليد طوال اليوم!', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">هذا مجرد نموذج لخط سير الرحلة بالطبع. يمكنك تخصيصه<br> ليناسب اهتماماتك وتفضيلاتك. ولا تنسَ تخصيص بعض الوقت<br> للأنشطة غير المخطط لها ، مثل استكشاف المنطقة المحلية<br> أو مقابلة أشخاص جدد. بعد كل شيء ، جزء من متعة رحلة ا<br>لتزلج هو غير متوقع!<br><br>ضرب المنحدرات في الصباح الباكر للتغلب على الحشود.\r\nجرب بعض المسارات الجديدة أو تحدى نفسك على ألماسة سوداء.\r\n<br>خذ استراحة لتناول طعام الغداء في مطعم على قمة الجبل.\r\n</span></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">اذهب للتزلج على الجليد أو المشي بالأحذية الثلجية في فترة ما بعد الظهر.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\">&nbsp;</div>', '2025-04-30 01:27:10', '2025-04-30 01:27:10'),
(87, 138, 44, 86, 1, NULL, NULL, 'Arrive in Zurich, Switzerland', '<ul>\r\n<li>Hike to the Sunnegga</li>\r\n<li>Enjoy the views of the Matterhorn and the valley below</li>\r\n<li>Take a cable car back to Zermatt</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">This is just a sample itinerary, and the specific activities and destinations can be customized to your interests and preferences. Please contact us for more information.</div>\r\n</div>\r\n</div>', '2025-04-30 01:33:27', '2025-04-30 01:33:27'),
(88, 139, 44, 86, 1, NULL, NULL, 'زيرمات ، سويسرا', '<ul>\r\n<li>تنزه سيرًا على الأقدام إلى سونيغا</li>\r\n<li>استمتع بمناظر جبل</li>\r\n<li>&nbsp;ماترهورن والوادي أسفله</li>\r\n<li>استقل التلفريك للعودة إلى زيرمات</li>\r\n<li>هذا مجرد برنامج رحلة نموذجي،</li>\r\n<li>&nbsp;ويمكن تخصيص الأنشطة</li>\r\n<li>&nbsp;والوجهات المحددة لتناسب</li>\r\n<li>&nbsp;اهتماماتك وتفضيلاتك.</li>\r\n<li>لمزيد من</li>\r\n<li>&nbsp;المعلومات، يُرجى التواصل معنا.</li>\r\n</ul>', '2025-04-30 01:37:17', '2025-04-30 01:37:17'),
(89, 138, 45, 86, NULL, '1:30 PM', '5:00 PM', 'Sherpa Culture Talk', '<p>This talk will give you a deeper understanding of the Sherpa people, who are the indigenous people of the Everest region. We will learn about their history, culture, and way of life.</p>\r\n<ul>\r\n<li><strong>Logistics:</strong>&nbsp;The talk will be held in the hotel lobby at 1:30pm. It will last for approximately 1 hour.</li>\r\n</ul>', '2025-04-30 01:41:29', '2025-04-30 01:41:29'),
(90, 138, 46, 86, NULL, '1:00 PM', '3:30 PM', 'Spend days lounging on the beach, swimming in the ocean, and sunbathing', '<ul>\r\n<li>Go surfing or stand-up paddleboarding in Canggu</li>\r\n<li>Visit the Tanah Lot Temple</li>\r\n<li>Have lunch at a local restaurant</li>\r\n</ul>', '2025-04-30 02:49:17', '2025-04-30 02:49:17'),
(91, 138, 46, 86, NULL, '10:30 AM', '12:30 PM', 'Stay at a luxurious beachfront resort in Seminyak', '<ul>\r\n<li>Arrive in Bali and transfer to your resort in Seminyak</li>\r\n<li>Check in and relax at the pool or beach</li>\r\n<li>Enjoy a welcome dinner at the resort</li>\r\n</ul>', '2025-04-30 02:49:42', '2025-04-30 02:49:42'),
(92, 139, 46, 86, NULL, '12:30 PM', '3:00 PM', 'اقضِ أيامًا في الاسترخاء على الشاطئ والسباحة في المحيط...', '<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">اذهب لركوب الأمواج أو التجديف بالوقوف في كانجو\r\nقم بزيارة معبد تاناه لوت\r\nتناول الغداء في مطعم محلي</span></pre>', '2025-04-30 02:50:23', '2025-04-30 02:50:23'),
(93, 139, 46, 86, NULL, '10:00 AM', '12:00 PM', 'تمتع بالإقامة في منتجع فاخر على شاطئ البحر في سيمينياك', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">الوصول إلى بالي والانتقال إلى المنتجع الخاص بك في سيمينياك\r\nتسجيل الدخول والاسترخاء في المسبح أو الشاطئ\r\nاستمتع بعشاء ترحيبي في المنتجع</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:51:12', '2025-04-30 02:51:12'),
(94, 138, 47, 86, 2, NULL, NULL, 'Nights\' Accommodations in a Beachfront Hotel', '<p>This tour package includes 7 nights\' accommodations in a beachfront hotel, as well as round-trip flights from your home city. The hotel will be located in a popular beach destination, and will offer a variety of amenities, including a pool, fitness center, and on-site restaurant.</p>\r\n<ul>\r\n<li>Round-trip flights from your home city</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>Breakfast daily</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:26', '2025-04-30 02:53:26'),
(95, 138, 47, 86, 1, NULL, NULL, 'Round-trip airfare from your home city to the Caribbean', '<p>This tour package includes a round-trip airfare from your home city to any destination in the Caribbean. You can choose from a variety of airlines and departure airports, so you can find the perfect flight for your needs.</p>\r\n<ul>\r\n<li>Round-trip airfare</li>\r\n<li>2 checked bags</li>\r\n<li>1 carry-on bag</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:50', '2025-04-30 02:53:50');
INSERT INTO `user_package_plans` (`id`, `language_id`, `package_id`, `user_id`, `day_number`, `start_time`, `end_time`, `title`, `plan`, `created_at`, `updated_at`) VALUES
(96, 139, 47, 86, 2, NULL, NULL, 'إقامة 7 ليالٍ في فندق على شاطئ البحر', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه إقامة لمدة 7 ليالٍ في فندق على شاطئ البحر ، بالإضافة إلى رحلات طيران ذهابًا وإيابًا من مدينتك. يقع الفندق في وجهة شاطئية شهيرة ، وسيقدم مجموعة متنوعة من وسائل الراحة ، بما في ذلك مسبح ومركز للياقة البدنية ومطعم في الموقع.<br><br>رحلات ذهابًا وإيابًا من مدينتك\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nالإفطار يوميا\r\nالضرائب والرسوم<br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:10', '2025-04-30 02:54:10'),
(97, 139, 47, 86, 1, NULL, NULL, 'تذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه تذكرة طيران ذهابًا وإيابًا من مدينتك إلى أي وجهة في منطقة البحر الكاريبي. يمكنك الاختيار من بين مجموعة متنوعة من شركات الطيران ومطارات المغادرة ، حتى تتمكن من العثور على الرحلة المثالية لاحتياجاتك.<br><br></span></pre>\r\n<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">جولة للسفر جوا رحلة\r\nحقيبتان مسجَّلتان\r\n1 حقيبة يد\r\nالضرائب والرسوم</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\"><br><br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:25', '2025-04-30 02:54:25'),
(98, 140, 49, 87, 1, NULL, NULL, 'Bear Lake Trailhead to Haynach Lakes Camp', '<ul>\r\n<li>Hike 10.2 miles (16.4 km) with an elevation gain of 3,700 feet (1,130 m) to Haynach Lakes Camp.</li>\r\n<li>Enjoy stunning views of Bear Lake, Flattop Mountain, and the surrounding peaks.</li>\r\n<li>Camp at Haynach Lakes Camp, which is located in a beautiful alpine meadow.</li>\r\n</ul>', '2025-04-30 01:07:03', '2025-04-30 01:07:03'),
(99, 140, 49, 87, 2, NULL, NULL, 'Haynach Lakes Camp to Emerald Lake', '<ul>\r\n<li>Hike 6.2 miles (10 km) with an elevation gain of 1,800 feet (550 m) to Emerald Lake.</li>\r\n<li>Take a swim in the crystal-clear waters of Emerald Lake.</li>\r\n<li>Hike to the Emerald Lake overlook for panoramic views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Emerald Lake Campground.</li>\r\n</ul>', '2025-04-30 01:07:19', '2025-04-30 01:07:19'),
(100, 140, 49, 87, 3, NULL, NULL, 'Emerald Lake to Lake of Glass', '<ul>\r\n<li>Hike 7.8 miles (12.6 km) with an elevation gain of 2,500 feet (760 m) to Lake of Glass.</li>\r\n<li>Enjoy the solitude of Lake of Glass, which is a less-visited lake in the park.</li>\r\n<li>Hike to the Lake of Glass overlook for stunning views of the lake and the surrounding peaks.</li>\r\n<li>Camp at Lake of Glass Campground.</li>\r\n</ul>', '2025-04-30 01:07:32', '2025-04-30 01:07:32'),
(101, 141, 49, 87, 1, NULL, NULL, 'بير ليك تريل هيد إلى معسكر بحيرات هايناش', '<p>تنزه لمسافة 10.2 ميل (16.4 كم) مع زيادة ارتفاع 3,700 قدم</p>\r\n<p>(1,130 م) إلى . استمتع بإطلالات خلابة على بحيرة بير وجبل</p>\r\n<p>&nbsp;فلاتوب والقمم المحيطة. كامب آت ها</p>', '2025-04-30 01:08:29', '2025-04-30 01:08:29'),
(102, 140, 50, 87, NULL, '1:30 PM', '4:00 PM', 'Visit Delos', '<ul>\r\n<li>Take a ferry to Delos, an ancient island that was once the center of the Cycladic civilization.</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">\r\n<ul>\r\n<li>See the ruins of the Temple of Apollo, the House of Dionysus, and the Theater of Dionysus.</li>\r\n<li>Learn about the history of Delos from your guide.</li>\r\n<li>Visit the Archaeological Museum of Delos to see more artifacts from the island.</li>\r\n</ul>\r\n</div>\r\n</div>\r\n</div>', '2025-04-30 01:13:17', '2025-04-30 01:13:17'),
(103, 140, 50, 87, NULL, '10:00 AM', '12:00 PM', 'Explore Mykonos Town', '<ul>\r\n<li>Visit the whitewashed houses, narrow streets, and windmills of Mykonos Town, a UNESCO World Heritage Site.\r\n<div>&nbsp;</div>\r\n</li>\r\n<li>Learn about the island\'s history and culture from your guide.</li>\r\n<li>Visit the Panagia Paraportiani church, one of the most iconic landmarks in Mykonos.</li>\r\n<li>Take a stroll along the waterfront and enjoy the views of the Aegean Sea.</li>\r\n</ul>', '2025-04-30 01:13:58', '2025-04-30 01:13:58'),
(104, 141, 50, 87, NULL, '10:00 AM', '12:00 PM', 'قم بزيارة', '<p dir=\"rtl\">&nbsp;</p>\r\n<ul dir=\"rtl\">\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">استقل العبارة إلى Delos ، وهي جزيرة قديمة كانت ذات يوم مركز&nbsp;</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">الحضارة السيكلاد</span></li>\r\n<li><span class=\"Y2IQFc\" lang=\"ar\">يكية. شاهد أنقاض معبد أبولو ومنزل ديونيسوس</span></li>\r\n<li>ومسرح ديونيسوس. تعرف على تاريخ Delos من دليلك. قم بزيارة</li>\r\n<li>متحف ديلوس الأثري لمشاهدة ال</li>\r\n<li>مزيد من القطع الأثرية من الجزيرة.</li>\r\n</ul>\r\n<p>&nbsp;</p>', '2025-04-30 01:17:14', '2025-04-30 01:17:14'),
(105, 141, 50, 87, NULL, '1:00 AM', '3:00 PM', 'استكشف مدينة ميكونوس', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<ul dir=\"rtl\">\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة المنازل المطلية باللون الأبيض</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">&nbsp;والشوارع الضيقة وطواحين الهواء في مدينة ميكونوس ، وهي أحد مواقع التراث العالمي لليونسكو.</span></li>\r\n<li id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تعرف على تاريخ الجزيرة وثقافتها من دليلك.</span></li>\r\n<li class=\"tw-data-text tw-text-large tw-ta\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">قم بزيارة كنيسة باناجيا بارابورتياني ، أحد أكثر المعالم شهرة في ميكونوس</span>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n</li>\r\n</ul>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 01:19:13', '2025-04-30 01:19:13'),
(106, 140, 51, 87, 1, NULL, NULL, 'Ski or snowboard all day long!', '<p>This is just a sample itinerary, of course. You can customize it to fit your own interests and preferences. And don\'t forget to leave some time for unplanned activities, like exploring the local area or meeting new people. After all, part of the fun of a ski trip is the unexpected!</p>\r\n<ul>\r\n<li>Hit the slopes early in the morning to beat the crowds.</li>\r\n<li>Try out some new trails or challenge yourself on a black diamond.</li>\r\n<li>Take a break for lunch at a mountaintop restaurant.</li>\r\n<li>Go ice skating or snowshoeing in the afternoon.</li>\r\n</ul>', '2025-04-30 01:26:24', '2025-04-30 01:26:24'),
(107, 141, 51, 87, 1, NULL, NULL, 'تزلج أو على الجليد طوال اليوم!', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">هذا مجرد نموذج لخط سير الرحلة بالطبع. يمكنك تخصيصه<br> ليناسب اهتماماتك وتفضيلاتك. ولا تنسَ تخصيص بعض الوقت<br> للأنشطة غير المخطط لها ، مثل استكشاف المنطقة المحلية<br> أو مقابلة أشخاص جدد. بعد كل شيء ، جزء من متعة رحلة ا<br>لتزلج هو غير متوقع!<br><br>ضرب المنحدرات في الصباح الباكر للتغلب على الحشود.\r\nجرب بعض المسارات الجديدة أو تحدى نفسك على ألماسة سوداء.\r\n<br>خذ استراحة لتناول طعام الغداء في مطعم على قمة الجبل.\r\n</span></pre>\r\n<div class=\"tw-ta-container F0azHf tw-lfl\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\"><span class=\"Y2IQFc\" lang=\"ar\" xml:lang=\"ar\">اذهب للتزلج على الجليد أو المشي بالأحذية الثلجية في فترة ما بعد الظهر.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\">&nbsp;</div>', '2025-04-30 01:27:10', '2025-04-30 01:27:10'),
(108, 140, 52, 87, 1, NULL, NULL, 'Arrive in Zurich, Switzerland', '<ul>\r\n<li>Hike to the Sunnegga</li>\r\n<li>Enjoy the views of the Matterhorn and the valley below</li>\r\n<li>Take a cable car back to Zermatt</li>\r\n</ul>\r\n<div>\r\n<div class=\"image-container hide-from-message-actions\">\r\n<div class=\"overlay-container\">This is just a sample itinerary, and the specific activities and destinations can be customized to your interests and preferences. Please contact us for more information.</div>\r\n</div>\r\n</div>', '2025-04-30 01:33:27', '2025-04-30 01:33:27'),
(109, 141, 52, 87, 1, NULL, NULL, 'زيرمات ، سويسرا', '<ul>\r\n<li>تنزه سيرًا على الأقدام إلى سونيغا</li>\r\n<li>استمتع بمناظر جبل</li>\r\n<li>&nbsp;ماترهورن والوادي أسفله</li>\r\n<li>استقل التلفريك للعودة إلى زيرمات</li>\r\n<li>هذا مجرد برنامج رحلة نموذجي،</li>\r\n<li>&nbsp;ويمكن تخصيص الأنشطة</li>\r\n<li>&nbsp;والوجهات المحددة لتناسب</li>\r\n<li>&nbsp;اهتماماتك وتفضيلاتك.</li>\r\n<li>لمزيد من</li>\r\n<li>&nbsp;المعلومات، يُرجى التواصل معنا.</li>\r\n</ul>', '2025-04-30 01:37:17', '2025-04-30 01:37:17'),
(110, 140, 53, 87, NULL, '1:30 PM', '5:00 PM', 'Sherpa Culture Talk', '<p>This talk will give you a deeper understanding of the Sherpa people, who are the indigenous people of the Everest region. We will learn about their history, culture, and way of life.</p>\r\n<ul>\r\n<li><strong>Logistics:</strong>&nbsp;The talk will be held in the hotel lobby at 1:30pm. It will last for approximately 1 hour.</li>\r\n</ul>', '2025-04-30 01:41:29', '2025-04-30 01:41:29'),
(111, 140, 53, 87, NULL, '1:00 PM', '3:30 PM', 'Spend days lounging on the beach, swimming in the ocean, and sunbathing', '<ul>\r\n<li>Go surfing or stand-up paddleboarding in Canggu</li>\r\n<li>Visit the Tanah Lot Temple</li>\r\n<li>Have lunch at a local restaurant</li>\r\n</ul>', '2025-04-30 02:49:17', '2025-04-30 02:49:17'),
(112, 140, 54, 87, NULL, '10:30 AM', '12:30 PM', 'Stay at a luxurious beachfront resort in Seminyak', '<ul>\r\n<li>Arrive in Bali and transfer to your resort in Seminyak</li>\r\n<li>Check in and relax at the pool or beach</li>\r\n<li>Enjoy a welcome dinner at the resort</li>\r\n</ul>', '2025-04-30 02:49:42', '2025-04-30 02:49:42'),
(113, 141, 54, 87, NULL, '12:30 PM', '3:00 PM', 'اقضِ أيامًا في الاسترخاء على الشاطئ والسباحة في المحيط...', '<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">اذهب لركوب الأمواج أو التجديف بالوقوف في كانجو\r\nقم بزيارة معبد تاناه لوت\r\nتناول الغداء في مطعم محلي</span></pre>', '2025-04-30 02:50:23', '2025-04-30 02:50:23'),
(114, 141, 54, 87, NULL, '10:00 AM', '12:00 PM', 'تمتع بالإقامة في منتجع فاخر على شاطئ البحر في سيمينياك', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">الوصول إلى بالي والانتقال إلى المنتجع الخاص بك في سيمينياك\r\nتسجيل الدخول والاسترخاء في المسبح أو الشاطئ\r\nاستمتع بعشاء ترحيبي في المنتجع</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:51:12', '2025-04-30 02:51:12'),
(115, 140, 55, 87, 2, NULL, NULL, 'Nights\' Accommodations in a Beachfront Hotel', '<p>This tour package includes 7 nights\' accommodations in a beachfront hotel, as well as round-trip flights from your home city. The hotel will be located in a popular beach destination, and will offer a variety of amenities, including a pool, fitness center, and on-site restaurant.</p>\r\n<ul>\r\n<li>Round-trip flights from your home city</li>\r\n<li>7 nights\' accommodations in a beachfront hotel</li>\r\n<li>Breakfast daily</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:26', '2025-04-30 02:53:26'),
(116, 140, 55, 87, 1, NULL, NULL, 'Round-trip airfare from your home city to the Caribbean', '<p>This tour package includes a round-trip airfare from your home city to any destination in the Caribbean. You can choose from a variety of airlines and departure airports, so you can find the perfect flight for your needs.</p>\r\n<ul>\r\n<li>Round-trip airfare</li>\r\n<li>2 checked bags</li>\r\n<li>1 carry-on bag</li>\r\n<li>Taxes and fees</li>\r\n</ul>', '2025-04-30 02:53:50', '2025-04-30 02:53:50'),
(117, 141, 55, 87, 2, NULL, NULL, 'إقامة 7 ليالٍ في فندق على شاطئ البحر', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه إقامة لمدة 7 ليالٍ في فندق على شاطئ البحر ، بالإضافة إلى رحلات طيران ذهابًا وإيابًا من مدينتك. يقع الفندق في وجهة شاطئية شهيرة ، وسيقدم مجموعة متنوعة من وسائل الراحة ، بما في ذلك مسبح ومركز للياقة البدنية ومطعم في الموقع.<br><br>رحلات ذهابًا وإيابًا من مدينتك\r\nإقامة لمدة 7 ليالٍ في فندق على شاطئ البحر\r\nالإفطار يوميا\r\nالضرائب والرسوم<br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:10', '2025-04-30 02:54:10'),
(118, 141, 55, 87, 1, NULL, NULL, 'تذكرة طيران ذهابًا وإيابًا من مدينتك إلى منطقة البحر الكاريبي', '<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">تتضمن حزمة الجولة هذه تذكرة طيران ذهابًا وإيابًا من مدينتك إلى أي وجهة في منطقة البحر الكاريبي. يمكنك الاختيار من بين مجموعة متنوعة من شركات الطيران ومطارات المغادرة ، حتى تتمكن من العثور على الرحلة المثالية لاحتياجاتك.<br><br></span></pre>\r\n<div id=\"tw-target-text-container\" class=\"tw-ta-container F0azHf tw-lfl\" tabindex=\"0\">\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\">جولة للسفر جوا رحلة\r\nحقيبتان مسجَّلتان\r\n1 حقيبة يد\r\nالضرائب والرسوم</span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>\r\n<pre id=\"tw-target-text\" class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" data-placeholder=\"Translation\"><span class=\"Y2IQFc\" lang=\"ar\"><br><br></span></pre>\r\n</div>\r\n<div id=\"tw-target-rmn-container\" class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\"></div>', '2025-04-30 02:54:25', '2025-04-30 02:54:25');

-- --------------------------------------------------------

--
-- Table structure for table `user_package_reviews`
--

CREATE TABLE `user_package_reviews` (
  `id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `package_id` int(11) NOT NULL,
  `customer_id` bigint(20) NOT NULL,
  `rating` smallint(6) NOT NULL,
  `comment` text,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_pages`
--

CREATE TABLE `user_pages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_pages`
--

INSERT INTO `user_pages` (`id`, `user_id`, `status`, `created_at`, `updated_at`) VALUES
(16, 83, 1, '2025-05-12 12:35:00', '2025-05-12 12:35:00');

-- --------------------------------------------------------

--
-- Table structure for table `user_page_contents`
--

CREATE TABLE `user_page_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `page_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `content` longtext,
  `meta_keywords` varchar(255) DEFAULT NULL,
  `meta_description` text,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_page_contents`
--

INSERT INTO `user_page_contents` (`id`, `language_id`, `user_id`, `page_id`, `title`, `slug`, `content`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(27, 132, 83, 16, 'I will create any kind of graphic design with idea', 'i-will-create-any-kind-of-graphic-design-with-idea', '<p>111111111111111111111111111111111111111111111111111111</p>', '11', '11', '2025-05-12 12:35:00', '2025-05-12 12:35:00'),
(28, 133, 83, 16, '11', '11', '<p>1111111111111111111111111111111111111111111111111111111</p>', NULL, NULL, '2025-05-12 12:35:00', '2025-05-12 12:35:00');

-- --------------------------------------------------------

--
-- Table structure for table `user_page_headings`
--

CREATE TABLE `user_page_headings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `gallery_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `rooms_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  ` reset_password_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `error_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `packages_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `dashboard_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `services_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `room_bookings_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `blog_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `package_bookings_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `contact_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `faq_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `forget_password_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `login_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `signup_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `edit_profile_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `change_password_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `reset_password_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_page_headings`
--

INSERT INTO `user_page_headings` (`id`, `language_id`, `user_id`, `gallery_page_title`, `rooms_page_title`, ` reset_password_page_title`, `error_page_title`, `packages_page_title`, `dashboard_page_title`, `services_page_title`, `room_bookings_page_title`, `blog_page_title`, `package_bookings_page_title`, `contact_page_title`, `faq_page_title`, `forget_password_page_title`, `login_page_title`, `signup_page_title`, `edit_profile_page_title`, `change_password_page_title`, `reset_password_page_title`, `about_page_title`, `created_at`, `updated_at`) VALUES
(122, 132, 83, 'Gallery', 'Rooms', NULL, '404', 'Packages', 'Dashboard', 'Services', 'Room  Bookings', 'Blog', 'Package Bookings', 'Contact', 'FAQ', 'Forget Password', 'Login', 'Sign Up', 'Edit Profile', 'Change Password', 'Reset Password', NULL, NULL, NULL),
(123, 133, 83, 'معرض الصور', 'الغرف', NULL, '404', 'الحزم', 'لوحة القيادة', 'خدمات', 'حجز الغرف', 'مدونة', 'حجوزات الباقات', 'اتصال', 'التعليمات', 'نسيت كلمة المرور', 'تسجيل الدخول', 'اشراك', 'تعديل الملف الشخصي', 'تغيير كلمة المرور', 'إعادة تعيين كلمة المرور', 'معلومات عنا', NULL, NULL),
(124, 134, 84, 'Gallery', 'Rooms', NULL, '404', 'Packages', 'Dashboard', 'Services', 'Room  Bookings', 'Blog', 'Package Bookings', 'Contact', 'FAQ', 'Forget Password', 'Login', 'Sign Up', 'Edit Profile', 'Change Password', 'Reset Password', NULL, NULL, NULL),
(125, 135, 84, 'معرض الصور', 'الغرف', NULL, '404', 'الحزم', 'لوحة القيادة', 'خدمات', 'حجز الغرف', 'مدونة', 'حجوزات الباقات', 'اتصال', 'التعليمات', 'نسيت كلمة المرور', 'تسجيل الدخول', 'اشراك', 'تعديل الملف الشخصي', 'تغيير كلمة المرور', 'إعادة تعيين كلمة المرور', 'معلومات عنا', NULL, NULL),
(126, 136, 85, 'Gallery', 'Rooms', NULL, '404', 'Packages', 'Dashboard', 'Services', 'Room  Bookings', 'Blog', 'Package Bookings', 'Contact', 'FAQ', 'Forget Password', 'Login', 'Sign Up', 'Edit Profile', 'Change Password', 'Reset Password', NULL, NULL, NULL),
(127, 137, 85, 'معرض الصور', 'الغرف', NULL, '404', 'الحزم', 'لوحة القيادة', 'خدمات', 'حجز الغرف', 'مدونة', 'حجوزات الباقات', 'اتصال', 'التعليمات', 'نسيت كلمة المرور', 'تسجيل الدخول', 'اشتراك', 'تعديل الملف الشخصي', 'تغيير كلمة المرور', 'إعادة تعيين كلمة المرور', 'معلومات عنا', NULL, NULL),
(128, 138, 86, 'Gallery', 'Rooms', NULL, '404', 'Packages', 'Dashboard', 'Services', 'Room  Bookings', 'Blog', 'Package Bookings', 'Contact', 'FAQ', 'Forget Password', 'Login', 'Sign Up', 'Edit Profile', 'Change Password', 'Reset Password', NULL, NULL, NULL),
(129, 139, 86, 'معرض الصور', 'الغرف', NULL, '404', 'الحزم', 'لوحة القيادة', 'خدمات', 'حجز الغرف', 'مدونة', 'حجوزات الباقات', 'اتصال', 'التعليمات', 'نسيت كلمة المرور', 'تسجيل الدخول', 'اشتراك', 'تعديل الملف الشخصي', 'تغيير كلمة المرور', 'إعادة تعيين كلمة المرور', 'معلومات عنا', NULL, NULL),
(130, 140, 87, 'Gallery', 'Rooms', NULL, '404', 'Packages', 'Dashboard', 'Services', 'Room  Bookings', 'Blog', 'Package Bookings', 'Contact', 'FAQ', 'Forget Password', 'Login', 'Sign Up', 'Edit Profile', 'Change Password', 'Reset Password', NULL, NULL, NULL),
(131, 141, 87, 'معرض الصور', 'الغرف', NULL, '404', 'الحزم', 'لوحة القيادة', 'خدمات', 'حجز الغرف', 'مدونة', 'حجوزات الباقات', 'اتصال', 'التعليمات', 'نسيت كلمة المرور', 'تسجيل الدخول', 'اشتراك', 'تعديل الملف الشخصي', 'تغيير كلمة المرور', 'إعادة تعيين كلمة المرور', 'تسجيل الدخول', NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `user_payment_gateways`
--

CREATE TABLE `user_payment_gateways` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `subtitle` varchar(255) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `details` text,
  `name` varchar(100) DEFAULT NULL,
  `type` varchar(20) NOT NULL DEFAULT 'manual',
  `information` mediumtext,
  `keyword` varchar(255) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_payment_gateways`
--

INSERT INTO `user_payment_gateways` (`id`, `user_id`, `subtitle`, `title`, `details`, `name`, `type`, `information`, `keyword`, `status`) VALUES
(642, 83, NULL, NULL, NULL, 'Flutterwave', 'automatic', '{\"public_key\":null,\"secret_key\":null,\"text\":\"Pay via your Flutterwave account.\"}', 'flutterwave', 0),
(643, 83, NULL, NULL, NULL, 'Razorpay', 'automatic', '{\"key\":null,\"secret\":null,\"text\":\"Pay via your Razorpay account.\"}', 'razorpay', 0),
(644, 83, NULL, NULL, NULL, 'Paytm', 'automatic', '{\"environment\":\"production\",\"merchant\":null,\"secret\":null,\"website\":null,\"industry\":null,\"text\":\"Pay via your Paytm account.\"}', 'paytm', 0),
(645, 83, NULL, NULL, NULL, 'Paystack', 'automatic', '{\"key\":null,\"email\":null,\"text\":\"Pay via your Paystack account.\"}', 'paystack', 0),
(646, 83, NULL, NULL, NULL, 'Instamojo', 'automatic', '{\"key\":null,\"token\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your Instamojo account.\"}', 'instamojo', 0),
(647, 83, NULL, NULL, NULL, 'Stripe', 'automatic', '{\"key\":null,\"secret\":null,\"text\":\"Pay via your Credit account.\"}', 'stripe', 0),
(648, 83, NULL, NULL, NULL, 'PayPal', 'automatic', '{\"client_id\":null,\"sandbox_check\":\"0\",\"client_secret\":null,\"text\":\"Pay via your PayPal account.\"}', 'paypal', 0),
(649, 83, NULL, NULL, NULL, 'Mollie', 'automatic', '{\"key\":null,\"text\":\"Pay via your Mollie Payment account.\"}', 'mollie', 0),
(650, 83, NULL, NULL, NULL, 'Mercado Pago', 'automatic', '{\"token\":null,\"sandbox_check\":\"0\",\"text\":\"Pay via your Mercado Pago account.\"}', 'mercadopago', 0),
(651, 83, NULL, NULL, NULL, 'Authorize.net', 'automatic', NULL, 'authorize.net', 1),
(652, 84, NULL, NULL, NULL, 'Flutterwave', 'automatic', NULL, 'flutterwave', 0),
(653, 84, NULL, NULL, NULL, 'Razorpay', 'automatic', NULL, 'razorpay', 0),
(654, 84, NULL, NULL, NULL, 'Paytm', 'automatic', NULL, 'paytm', 0),
(655, 84, NULL, NULL, NULL, 'Paystack', 'automatic', NULL, 'paystack', 0),
(656, 84, NULL, NULL, NULL, 'Instamojo', 'automatic', NULL, 'instamojo', 0),
(657, 84, NULL, NULL, NULL, 'Stripe', 'automatic', NULL, 'stripe', 0),
(658, 84, NULL, NULL, NULL, 'PayPal', 'automatic', '{\"client_id\":null,\"sandbox_check\":\"0\",\"client_secret\":null,\"text\":\"Pay via your PayPal account.\"}', 'paypal', 0),
(659, 84, NULL, NULL, NULL, 'Mollie', 'automatic', NULL, 'mollie', 0),
(660, 84, NULL, NULL, NULL, 'Mercadopago', 'automatic', NULL, 'mercadopago', 0),
(661, 84, NULL, NULL, NULL, 'Authorize.net', 'automatic', NULL, 'authorize.net', 0),
(662, 85, NULL, NULL, NULL, 'Flutterwave', 'automatic', NULL, 'flutterwave', 0),
(663, 85, NULL, NULL, NULL, 'Razorpay', 'automatic', NULL, 'razorpay', 0),
(664, 85, NULL, NULL, NULL, 'Paytm', 'automatic', NULL, 'paytm', 0),
(665, 85, NULL, NULL, NULL, 'Paystack', 'automatic', NULL, 'paystack', 0),
(666, 85, NULL, NULL, NULL, 'Instamojo', 'automatic', NULL, 'instamojo', 0),
(667, 85, NULL, NULL, NULL, 'Stripe', 'automatic', NULL, 'stripe', 0),
(668, 85, NULL, NULL, NULL, 'Paypal', 'automatic', NULL, 'paypal', 0),
(669, 85, NULL, NULL, NULL, 'Mollie', 'automatic', NULL, 'mollie', 0),
(670, 85, NULL, NULL, NULL, 'Mercadopago', 'automatic', NULL, 'mercadopago', 0),
(671, 85, NULL, NULL, NULL, 'Authorize.net', 'automatic', NULL, 'authorize.net', 0),
(672, 86, NULL, NULL, NULL, 'Flutterwave', 'automatic', NULL, 'flutterwave', 0),
(673, 86, NULL, NULL, NULL, 'Razorpay', 'automatic', NULL, 'razorpay', 0),
(674, 86, NULL, NULL, NULL, 'Paytm', 'automatic', NULL, 'paytm', 0),
(675, 86, NULL, NULL, NULL, 'Paystack', 'automatic', NULL, 'paystack', 0),
(676, 86, NULL, NULL, NULL, 'Instamojo', 'automatic', NULL, 'instamojo', 0),
(677, 86, NULL, NULL, NULL, 'Stripe', 'automatic', NULL, 'stripe', 0),
(678, 86, NULL, NULL, NULL, 'Paypal', 'automatic', NULL, 'paypal', 0),
(679, 86, NULL, NULL, NULL, 'Mollie', 'automatic', NULL, 'mollie', 0),
(680, 86, NULL, NULL, NULL, 'Mercadopago', 'automatic', NULL, 'mercadopago', 0),
(681, 86, NULL, NULL, NULL, 'Authorize.net', 'automatic', NULL, 'authorize.net', 0),
(682, 87, NULL, NULL, NULL, 'Flutterwave', 'automatic', NULL, 'flutterwave', 0),
(683, 87, NULL, NULL, NULL, 'Razorpay', 'automatic', NULL, 'razorpay', 0),
(684, 87, NULL, NULL, NULL, 'Paytm', 'automatic', NULL, 'paytm', 0),
(685, 87, NULL, NULL, NULL, 'Paystack', 'automatic', NULL, 'paystack', 0),
(686, 87, NULL, NULL, NULL, 'Instamojo', 'automatic', NULL, 'instamojo', 0),
(687, 87, NULL, NULL, NULL, 'Stripe', 'automatic', NULL, 'stripe', 0),
(688, 87, NULL, NULL, NULL, 'Paypal', 'automatic', NULL, 'paypal', 0),
(689, 87, NULL, NULL, NULL, 'Mollie', 'automatic', NULL, 'mollie', 0),
(690, 87, NULL, NULL, NULL, 'Mercadopago', 'automatic', NULL, 'mercadopago', 0),
(691, 87, NULL, NULL, NULL, 'Authorize.net', 'automatic', NULL, 'authorize.net', 0);

-- --------------------------------------------------------

--
-- Table structure for table `user_permissions`
--

CREATE TABLE `user_permissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `package_id` int(11) NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `permissions` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_permissions`
--

INSERT INTO `user_permissions` (`id`, `package_id`, `user_id`, `permissions`, `created_at`, `updated_at`) VALUES
(72, 1000025, 83, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\",\"Contact\"]', '2025-04-27 12:53:59', '2025-04-27 12:53:59'),
(73, 1000024, 84, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\",\"Contact\"]', '2025-04-27 12:55:29', '2025-04-27 12:55:29'),
(74, 1000025, 85, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\",\"Contact\"]', '2025-04-27 12:56:32', '2025-04-27 12:56:32'),
(75, 1000025, 86, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\",\"Contact\"]', '2025-04-27 12:59:02', '2025-04-27 12:59:02'),
(76, 1000025, 87, '[\"Custom Domain\",\"Subdomain\",\"QR Builder\",\"Blog\",\"Custom Page\",\"Tour Package\",\"Support Ticket\",\"Advertisement\",\"Contact\"]', '2025-04-27 13:00:56', '2025-04-27 13:00:56');

-- --------------------------------------------------------

--
-- Table structure for table `user_popups`
--

CREATE TABLE `user_popups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `type` smallint(5) UNSIGNED NOT NULL,
  `image` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `background_color` varchar(255) DEFAULT NULL,
  `background_color_opacity` decimal(3,2) UNSIGNED DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `text` text,
  `button_text` varchar(255) DEFAULT NULL,
  `button_color` varchar(255) DEFAULT NULL,
  `button_url` varchar(255) DEFAULT NULL,
  `end_date` varchar(100) DEFAULT NULL,
  `end_time` varchar(100) DEFAULT NULL,
  `delay` int(10) UNSIGNED NOT NULL COMMENT 'value will be in milliseconds',
  `serial_number` mediumint(8) UNSIGNED NOT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL DEFAULT '1' COMMENT '0 => deactive, 1 => active',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_popups`
--

INSERT INTO `user_popups` (`id`, `language_id`, `user_id`, `type`, `image`, `name`, `background_color`, `background_color_opacity`, `title`, `text`, `button_text`, `button_color`, `button_url`, `end_date`, `end_time`, `delay`, `serial_number`, `status`, `created_at`, `updated_at`) VALUES
(16, 132, 83, 2, 'c601917cfeca38512808db47bc6933c8ee4837a1.png', 'Book Your Hotel Room Today', 'FEA116', '0.79', 'Book Your Hotel Room Today!', 'Looking for a hotel room to book? We have a wide selection of rooms to choose from, all at affordable prices. Whether you\'re looking for a luxurious stay or a more budget-friendly option, we have the perfect room for you. Book your stay today and start your vacation off right!', 'Book Now', '1F3A52', 'example.com', NULL, NULL, 1000, 1, 0, '2025-05-10 05:34:27', '2025-05-10 12:05:38'),
(17, 132, 83, 7, '0dcec975802710d9049930e1123ec2333a0b1845.png', 'Exclusive VIP Access', 'FEA116', NULL, 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '1F3A52', 'example.com', '2032-05-05', '12:00 AM', 100, 2, 1, '2025-05-10 11:58:25', '2025-05-10 12:05:26'),
(18, 133, 83, 7, 'f33517d28a982fae531aee959a6a250d29a7019b.png', 'وصول', 'FEA116', NULL, 'وصول حصري لنائب الرئيس', 'احصل على إمكانية الوصول المبكر إلى أحدث منتجاتنا والخصومات الحصرية. اخبز نائب الرئيس اليوم!', 'انضم الآن', '1F3A52', 'https://example.com', '2034-05-10', '12:00 AM', 100, 1, 1, '2025-05-10 12:00:30', '2025-05-10 12:02:38'),
(19, 134, 84, 7, 'e5a85c22e12cf2af2a0833821649b68f5bb2bbd0.png', 'Exclusive VIP Access', 'FEA116', NULL, 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '1F3A52', 'example.com', '2033-09-30', '12:00 AM', 100, 1, 1, '2025-05-10 13:05:26', '2025-05-10 13:05:26'),
(20, 135, 84, 7, '486da458e164125524526a04c149d11a02288b3b.png', 'وصول', 'FEA116', NULL, 'وصول حصري لنائب الرئيس', 'احصل على إمكانية الوصول المبكر إلى أحدث منتجاتنا والخصومات الحصرية. اخبز نائب الرئيس اليوم!', 'وصول حصري لنائب الرئيس', 'FFFFFF', 'example.com', '2033-05-13', '12:00 AM', 100, 1, 1, '2025-05-10 13:06:33', '2025-05-10 13:06:33'),
(21, 136, 85, 2, '0b2896b989f34888cda106cd50b59c54680845b5.png', 'Book Your Hotel Room Today', 'FEA116', '0.79', 'Book Your Hotel Room Today!', 'Looking for a hotel room to book? We have a wide selection of rooms to choose from, all at affordable prices. Whether you\'re looking for a luxurious stay or a more budget-friendly option, we have the perfect room for you. Book your stay today and start your vacation off right!', 'Book Now', '1F3A52', 'example.com', NULL, NULL, 1000, 1, 1, '2025-05-11 06:19:30', '2025-05-11 06:19:30'),
(22, 137, 85, 2, '90950fc01ff8d1fb9a65e56753604b5fc007c54d.png', 'وصول', 'FEA116', '0.80', 'وصول حصري لنائب الرئيس', 'نستخدم ملفات تعريف الارتباط لنمنحك أفضل تجربة على الإنترنت. بمواصلة تصفح الموقع، فإنك توافق على استخدامنا لملفات تعريف الارتباط.', 'انضم الآن', '1F3A52', 'example.com', NULL, NULL, 1000, 1, 1, '2025-05-11 06:22:13', '2025-05-11 06:22:40'),
(23, 138, 86, 6, 'a7ba4b5b5924d4fadb5d7ca9d7f1a89a03a35377.png', 'Exclusive VIP Access', NULL, NULL, 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '0D97E6', 'example.com', '2033-05-13', '12:00 AM', 100, 14, 0, '2025-05-11 06:35:51', '2025-05-11 06:41:18'),
(25, 139, 86, 6, '04bdeb989eca47ac5013a2a5edd92c22d139a5da.png', 'وصول', NULL, NULL, 'وصول حصري لنائب الرئيس', 'احصل على إمكانية الوصول المبكر إلى أحدث منتجاتنا والخصومات الحصرية. اخبز نائب الرئيس اليوم!', 'انضم الآن', '1F3A52', 'https://example.com', '2025-05-12', '12:00 AM', 100, 100, 0, '2025-05-11 06:39:44', '2025-05-11 06:42:55'),
(26, 139, 86, 7, '07943066ba1e38c64002b2d0cfb15b916a9e1bcd.png', 'وصول', 'FEA116', NULL, 'وصول حصري لنائب الرئيس', 'احصل على إمكانية الوصول المبكر إلى أحدث منتجاتنا والخصومات الحصرية. اخبز نائب الرئيس اليوم!', 'انضم الآن', '1F3A52', 'example.com', '2034-05-05', '12:00 AM', 1000, 1, 1, '2025-05-11 06:42:40', '2025-05-11 06:45:02'),
(27, 138, 86, 7, 'a82539463fb2a6acadbbf80c10c47e60b7819b41.png', 'Exclusive VIP Access', 'FEA116', NULL, 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '1F3A52', 'example.com', '2033-05-05', '12:00 AM', 100, 1, 1, '2025-05-11 06:46:26', '2025-05-11 06:46:26'),
(28, 140, 87, 7, '72bdd11053f59dcb0190f2f68f589100529188bc.png', 'Exclusive VIP Access', '4C64A4', NULL, 'Exclusive VIP Access', 'Unlock early access to our latest products and exclusive discounts. Become a VIP today!', 'Join Now', '1F3A52', 'https://www.example.com/', '2032-05-06', '12:00 PM', 100, 2, 1, '2025-05-11 07:05:57', '2025-05-19 09:07:05'),
(29, 141, 87, 7, '8caa6c5e2a2716d9ee7c8e1ca39cf6d50dfa6afa.png', 'وصول', 'FEA116', NULL, 'وصول حصري لنائب الرئيس', 'احصل على إمكانية الوصول المبكر إلى أحدث منتجاتنا والخصومات الحصرية. اخبز نائب الرئيس اليوم!', 'انضم الآن', '4C64A4', 'example.com', '2033-05-06', '12:00 AM', 100, 1, 1, '2025-05-11 07:08:59', '2025-05-11 07:09:52');

-- --------------------------------------------------------

--
-- Table structure for table `user_qr_codes`
--

CREATE TABLE `user_qr_codes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `url` text COLLATE utf8_unicode_ci,
  `image` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_qr_codes`
--

INSERT INTO `user_qr_codes` (`id`, `user_id`, `name`, `url`, `image`, `created_at`, `updated_at`) VALUES
(1, NULL, 'test', 'https://imran.kreativdev.com', '6558899a99e0d.png', '2023-11-18 14:54:11', '2023-11-18 14:54:11');

-- --------------------------------------------------------

--
-- Table structure for table `user_rooms`
--

CREATE TABLE `user_rooms` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `slider_imgs` text COLLATE utf8_unicode_ci NOT NULL,
  `category_index` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `amenities_index` text COLLATE utf8_unicode_ci,
  `featured_img` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL,
  `bed` smallint(5) UNSIGNED NOT NULL,
  `bath` smallint(5) UNSIGNED NOT NULL,
  `max_guests` int(11) DEFAULT NULL,
  `rent` decimal(8,2) UNSIGNED NOT NULL,
  `latitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `longitude` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `phone` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL,
  `email` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL,
  `is_featured` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 means will not show in home page, 1 means will show in home page',
  `avg_rating` decimal(8,2) UNSIGNED DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `quantity` int(10) UNSIGNED NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_rooms`
--

INSERT INTO `user_rooms` (`id`, `user_id`, `slider_imgs`, `category_index`, `amenities_index`, `featured_img`, `status`, `bed`, `bath`, `max_guests`, `rent`, `latitude`, `longitude`, `address`, `phone`, `email`, `is_featured`, `avg_rating`, `created_at`, `updated_at`, `quantity`) VALUES
(29, 83, '[\"48b9e606ae73e354b28f3189851d5d16c5a978d2.jpg\",\"76820cc036b0ea8019953c8e58a741b44a8902e1.jpg\",\"c7a1101c67a48f23f198f1854fd4eef787ac9f0a.jpg\",\"b2c8333bd300562273ba8f52fcb89b4ad4fbbff4.jpg\",\"de69c7a3c979a99b2e71f76bde6e80d8598e0feb.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bd57a3c7\"]', '68106591dda03.png', 1, 2, 3, 6, '20.00', '6.058621676557348', '80.22813253136285', '109 Mount Faber, Singapore', '6377 9619', 'example@example.com', 1, NULL, '2025-04-29 05:37:23', '2025-05-07 07:08:14', 1),
(30, 83, '[\"dfcbe5f2345829f055b7d0d28d42c9b4a2cf8456.jpg\",\"93549c9728d8af5556f06bb60ea641a77e0eff30.jpg\",\"93d1e2e5f32a25b972ea5d6b69f75ebab1706fa9.jpg\",\"1c260dcf233cc416582e7d4d5f09a12f9372cff4.jpg\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f8927f76f.png', 1, 2, 3, 6, '40.00', '6.058621676557348', '80.22813253136285', 'Jalan Sudirman, Manado, Indonesia', '(0431) 8888989', 'example@demo.com', 0, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50', 1),
(31, 83, '[\"4c3ffabe2d093098ca9ff22ae674b0133d8a972d.jpg\",\"4c6f17dba088486fab75a52a87045303138fbfee.jpg\",\"32be1491459c292c3f778ff8ef62c456aa4f32c0.jpg\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f9c5159cd.png', 1, 2, 3, 4, '40.00', '6.058621676557348', '80.22813253136285', 'Pathum Wan, Thailand', '02 309 5200', 'demo@demo.com', 1, NULL, '2025-04-30 10:21:57', '2025-05-03 06:23:59', 1),
(32, 83, '[\"994d2bf46d610742b2b1bea75faeae95d54eb1e9.png\",\"55f1854c16be8d2b821dc4709a3f1b8aed576006.jpg\",\"80e4be351551537715222191eeaa956f4fa66c8a.jpg\",\"a3e0cdb13b3625823ffeb6e35768ead4ffb8ff05.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6811fd02265bc.png', 1, 1, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', 'Beştepeler Mh, Yenimahalle, Ankara, Turkey', '(0312) 203 5555', 'example@demo.com', 0, NULL, '2025-04-30 10:35:46', '2025-04-30 10:35:46', 2),
(33, 83, '[\"f45a0cca7edd72d0108ca2de759ca41d02018484.png\",\"692c1a3db0c94bf76e8635ee8fa10de35bcf7aeb.png\",\"4d61caee08520656666e54c888fdd8476cef7be4.png\",\"c2ec15d1afc3a6a32e7517f6d212c1984295ffcb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fda77bd82.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', 'Derry Hill, Calne, Wiltshire, United Kingdom', '01249 812102', 'example@example.com', 1, NULL, '2025-04-30 10:38:31', '2025-05-03 06:24:14', 1),
(34, 83, '[\"00e1569f1f13f67b7a3fae3c0735d5ee14c00382.png\",\"2d18a857529cd2a4c3e7ef28177e8289839945c5.png\",\"e39817519b381c89e3a62ed5bafff42df9903f43.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fe658f4d5.png', 1, 2, 1, 2, '25.00', '6.058621676557348', '80.22813253136285', 'Beim Strohhause 30, Hamburg, Germany', '040 245267', 'demo@demo.com', 0, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41', 1),
(35, 83, '[\"a5f1cc92cb8b3943979b75e1b85ad06e90c49ef6.png\",\"05863db9319ae9cff51c065cf2787e421b756055.png\",\"2d6fb1783391d8410e9882c7836e48bd3e6f070f.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fee80986b.png', 1, 1, 2, 2, '20.00', '6.058621676557348', '80.22813253136285', '1169 Bank St, Ottawa,Ontario, Canada', '(613) 730-9829', 'demo@demo.com', 1, NULL, '2025-04-30 10:43:52', '2025-05-03 06:24:23', 2),
(36, 83, '[\"1047e0c47c41334d536a7465fa28bd0e202f16b1.png\",\"402ebfde5663e106c1988cb5fb0328f1f30d91e0.png\",\"d7346644569438da6041d1a71d306bf25fa6a77f.png\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811ff879e4fb.png', 1, 2, 2, 2, '15.00', '6.058621676557348', '80.22813253136285', '2600 S Harper Rd, Corinth, Missouri, United States', NULL, 'demo@example.com', 0, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31', 1),
(37, 83, '[\"f1e91dbd7528af3d4e424b67398b6c2cd84875df.png\",\"e2947859b6b70a9ba372a81b4d75dd2bdea9d253.png\",\"1a46496fe57bd395126e9f631ed0a031e83a9a9e.png\"]', '680f6d150ac94', '[\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6812045d4f4b0.png', 1, 2, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', '10843 Philips Hwy, Jacksonville, Florida', '(904) 262-1986', 'example@example.com', 0, NULL, '2025-04-30 11:07:09', '2025-04-30 11:07:09', 1),
(38, 83, '[\"08701680ba0ab40b96fe39cb6fbb91bcce1f8945.png\",\"a5374e0582bcf74e7c7d2432effa51dcea20e7a9.png\",\"189b1c3781cb2d7a745694f6950f1ca3d8922aa1.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '681207d125735.png', 1, 2, 2, 4, '20.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 11:21:53', '2025-05-03 06:24:33', 1),
(39, 83, '[\"5b843f51628f502f0b467380f1b0fa7b38498d1b.png\",\"0ed18bd06359974aaed969269c8792b574c25534.png\",\"75e1f826b480d2c26010ecdd7e716bad882858bb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6812085804de0.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 11:24:08', '2025-05-07 07:02:04', 1),
(40, 84, '[\"48b9e606ae73e354b28f3189851d5d16c5a978d2.jpg\",\"76820cc036b0ea8019953c8e58a741b44a8902e1.jpg\",\"c7a1101c67a48f23f198f1854fd4eef787ac9f0a.jpg\",\"b2c8333bd300562273ba8f52fcb89b4ad4fbbff4.jpg\",\"de69c7a3c979a99b2e71f76bde6e80d8598e0feb.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bd57a3c7\"]', '68106591dda03.png', 1, 2, 3, 6, '20.00', '6.058621676557348', '80.22813253136285', '109 Mount Faber, Singapore', '6377 9619', 'example@example.com', 1, NULL, '2025-04-29 05:37:23', '2025-04-29 05:37:33', 1),
(41, 84, '[\"dfcbe5f2345829f055b7d0d28d42c9b4a2cf8456.jpg\",\"93549c9728d8af5556f06bb60ea641a77e0eff30.jpg\",\"93d1e2e5f32a25b972ea5d6b69f75ebab1706fa9.jpg\",\"1c260dcf233cc416582e7d4d5f09a12f9372cff4.jpg\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f8927f76f.png', 1, 2, 3, 6, '40.00', '6.058621676557348', '80.22813253136285', 'Jalan Sudirman, Manado, Indonesia', '(0431) 8888989', 'example@demo.com', 0, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50', 1),
(42, 84, '[\"4c3ffabe2d093098ca9ff22ae674b0133d8a972d.jpg\",\"4c6f17dba088486fab75a52a87045303138fbfee.jpg\",\"32be1491459c292c3f778ff8ef62c456aa4f32c0.jpg\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f9c5159cd.png', 1, 2, 3, 4, '40.00', '6.058621676557348', '80.22813253136285', 'Pathum Wan, Thailand', '02 309 5200', 'demo@demo.com', 1, NULL, '2025-04-30 10:21:57', '2025-05-07 11:57:19', 1),
(43, 84, '[\"994d2bf46d610742b2b1bea75faeae95d54eb1e9.png\",\"55f1854c16be8d2b821dc4709a3f1b8aed576006.jpg\",\"80e4be351551537715222191eeaa956f4fa66c8a.jpg\",\"a3e0cdb13b3625823ffeb6e35768ead4ffb8ff05.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6811fd02265bc.png', 1, 1, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', 'Beştepeler Mh, Yenimahalle, Ankara, Turkey', '(0312) 203 5555', 'example@demo.com', 1, NULL, '2025-04-30 10:35:46', '2025-05-07 11:57:17', 2),
(44, 84, '[\"f45a0cca7edd72d0108ca2de759ca41d02018484.png\",\"692c1a3db0c94bf76e8635ee8fa10de35bcf7aeb.png\",\"4d61caee08520656666e54c888fdd8476cef7be4.png\",\"c2ec15d1afc3a6a32e7517f6d212c1984295ffcb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fda77bd82.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', 'Derry Hill, Calne, Wiltshire, United Kingdom', '01249 812102', 'example@example.com', 0, NULL, '2025-04-30 10:38:31', '2025-04-30 10:38:31', 1),
(45, 84, '[\"00e1569f1f13f67b7a3fae3c0735d5ee14c00382.png\",\"2d18a857529cd2a4c3e7ef28177e8289839945c5.png\",\"e39817519b381c89e3a62ed5bafff42df9903f43.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fe658f4d5.png', 1, 2, 1, 2, '25.00', '6.058621676557348', '80.22813253136285', 'Beim Strohhause 30, Hamburg, Germany', '040 245267', 'demo@demo.com', 0, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41', 1),
(46, 84, '[\"a5f1cc92cb8b3943979b75e1b85ad06e90c49ef6.png\",\"05863db9319ae9cff51c065cf2787e421b756055.png\",\"2d6fb1783391d8410e9882c7836e48bd3e6f070f.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fee80986b.png', 1, 1, 2, 2, '20.00', '6.058621676557348', '80.22813253136285', '1169 Bank St, Ottawa,Ontario, Canada', '(613) 730-9829', 'demo@demo.com', 1, NULL, '2025-04-30 10:43:52', '2025-05-07 11:57:14', 2),
(47, 84, '[\"1047e0c47c41334d536a7465fa28bd0e202f16b1.png\",\"402ebfde5663e106c1988cb5fb0328f1f30d91e0.png\",\"d7346644569438da6041d1a71d306bf25fa6a77f.png\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811ff879e4fb.png', 1, 2, 2, 2, '15.00', '6.058621676557348', '80.22813253136285', '2600 S Harper Rd, Corinth, Missouri, United States', NULL, 'demo@example.com', 0, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31', 1),
(48, 84, '[\"f1e91dbd7528af3d4e424b67398b6c2cd84875df.png\",\"e2947859b6b70a9ba372a81b4d75dd2bdea9d253.png\",\"1a46496fe57bd395126e9f631ed0a031e83a9a9e.png\"]', '680f6d150ac94', '[\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6812045d4f4b0.png', 1, 2, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', '10843 Philips Hwy, Jacksonville, Florida', '(904) 262-1986', 'example@example.com', 1, NULL, '2025-04-30 11:07:09', '2025-05-07 11:57:11', 1),
(49, 84, '[\"08701680ba0ab40b96fe39cb6fbb91bcce1f8945.png\",\"a5374e0582bcf74e7c7d2432effa51dcea20e7a9.png\",\"189b1c3781cb2d7a745694f6950f1ca3d8922aa1.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '681207d125735.png', 1, 2, 2, 4, '20.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 0, NULL, '2025-04-30 11:21:53', '2025-04-30 11:21:53', 1),
(50, 84, '[\"5b843f51628f502f0b467380f1b0fa7b38498d1b.png\",\"0ed18bd06359974aaed969269c8792b574c25534.png\",\"75e1f826b480d2c26010ecdd7e716bad882858bb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6812085804de0.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 11:24:08', '2025-05-07 11:57:09', 1),
(51, 85, '[\"48b9e606ae73e354b28f3189851d5d16c5a978d2.jpg\",\"76820cc036b0ea8019953c8e58a741b44a8902e1.jpg\",\"c7a1101c67a48f23f198f1854fd4eef787ac9f0a.jpg\",\"b2c8333bd300562273ba8f52fcb89b4ad4fbbff4.jpg\",\"de69c7a3c979a99b2e71f76bde6e80d8598e0feb.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bd57a3c7\"]', '68106591dda03.png', 1, 2, 3, 6, '20.00', '6.058621676557348', '80.22813253136285', '109 Mount Faber, Singapore', '6377 9619', 'example@example.com', 1, NULL, '2025-04-28 23:37:23', '2025-04-28 23:37:33', 1),
(52, 85, '[\"dfcbe5f2345829f055b7d0d28d42c9b4a2cf8456.jpg\",\"93549c9728d8af5556f06bb60ea641a77e0eff30.jpg\",\"93d1e2e5f32a25b972ea5d6b69f75ebab1706fa9.jpg\",\"1c260dcf233cc416582e7d4d5f09a12f9372cff4.jpg\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f8927f76f.png', 1, 2, 3, 6, '40.00', '6.058621676557348', '80.22813253136285', 'Jalan Sudirman, Manado, Indonesia', '(0431) 8888989', 'example@demo.com', 0, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50', 1),
(53, 85, '[\"4c3ffabe2d093098ca9ff22ae674b0133d8a972d.jpg\",\"4c6f17dba088486fab75a52a87045303138fbfee.jpg\",\"32be1491459c292c3f778ff8ef62c456aa4f32c0.jpg\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f9c5159cd.png', 1, 2, 3, 4, '40.00', '6.058621676557348', '80.22813253136285', 'Pathum Wan, Thailand', '02 309 5200', 'demo@demo.com', 1, NULL, '2025-04-30 04:21:57', '2025-05-03 00:23:59', 1),
(54, 85, '[\"994d2bf46d610742b2b1bea75faeae95d54eb1e9.png\",\"55f1854c16be8d2b821dc4709a3f1b8aed576006.jpg\",\"80e4be351551537715222191eeaa956f4fa66c8a.jpg\",\"a3e0cdb13b3625823ffeb6e35768ead4ffb8ff05.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6811fd02265bc.png', 1, 1, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', 'Beştepeler Mh, Yenimahalle, Ankara, Turkey', '(0312) 203 5555', 'example@demo.com', 0, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46', 2),
(55, 85, '[\"f45a0cca7edd72d0108ca2de759ca41d02018484.png\",\"692c1a3db0c94bf76e8635ee8fa10de35bcf7aeb.png\",\"4d61caee08520656666e54c888fdd8476cef7be4.png\",\"c2ec15d1afc3a6a32e7517f6d212c1984295ffcb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fda77bd82.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', 'Derry Hill, Calne, Wiltshire, United Kingdom', '01249 812102', 'example@example.com', 1, NULL, '2025-04-30 04:38:31', '2025-05-03 00:24:14', 1),
(56, 85, '[\"00e1569f1f13f67b7a3fae3c0735d5ee14c00382.png\",\"2d18a857529cd2a4c3e7ef28177e8289839945c5.png\",\"e39817519b381c89e3a62ed5bafff42df9903f43.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fe658f4d5.png', 1, 2, 1, 2, '25.00', '6.058621676557348', '80.22813253136285', 'Beim Strohhause 30, Hamburg, Germany', '040 245267', 'demo@demo.com', 0, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41', 1),
(57, 85, '[\"a5f1cc92cb8b3943979b75e1b85ad06e90c49ef6.png\",\"05863db9319ae9cff51c065cf2787e421b756055.png\",\"2d6fb1783391d8410e9882c7836e48bd3e6f070f.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fee80986b.png', 1, 1, 2, 2, '20.00', '6.058621676557348', '80.22813253136285', '1169 Bank St, Ottawa,Ontario, Canada', '(613) 730-9829', 'demo@demo.com', 1, NULL, '2025-04-30 04:43:52', '2025-05-03 00:24:23', 2),
(58, 85, '[\"1047e0c47c41334d536a7465fa28bd0e202f16b1.png\",\"402ebfde5663e106c1988cb5fb0328f1f30d91e0.png\",\"d7346644569438da6041d1a71d306bf25fa6a77f.png\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811ff879e4fb.png', 1, 2, 2, 2, '15.00', '6.058621676557348', '80.22813253136285', '2600 S Harper Rd, Corinth, Missouri, United States', NULL, 'demo@example.com', 0, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31', 1),
(59, 85, '[\"f1e91dbd7528af3d4e424b67398b6c2cd84875df.png\",\"e2947859b6b70a9ba372a81b4d75dd2bdea9d253.png\",\"1a46496fe57bd395126e9f631ed0a031e83a9a9e.png\"]', '680f6d150ac94', '[\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6812045d4f4b0.png', 1, 2, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', '10843 Philips Hwy, Jacksonville, Florida', '(904) 262-1986', 'example@example.com', 0, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09', 1),
(60, 85, '[\"08701680ba0ab40b96fe39cb6fbb91bcce1f8945.png\",\"a5374e0582bcf74e7c7d2432effa51dcea20e7a9.png\",\"189b1c3781cb2d7a745694f6950f1ca3d8922aa1.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '681207d125735.png', 1, 2, 2, 4, '20.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:21:53', '2025-05-03 00:24:33', 1),
(61, 85, '[\"5b843f51628f502f0b467380f1b0fa7b38498d1b.png\",\"0ed18bd06359974aaed969269c8792b574c25534.png\",\"75e1f826b480d2c26010ecdd7e716bad882858bb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6812085804de0.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:24:08', '2025-05-03 00:25:37', 1),
(62, 86, '[\"48b9e606ae73e354b28f3189851d5d16c5a978d2.jpg\",\"76820cc036b0ea8019953c8e58a741b44a8902e1.jpg\",\"c7a1101c67a48f23f198f1854fd4eef787ac9f0a.jpg\",\"b2c8333bd300562273ba8f52fcb89b4ad4fbbff4.jpg\",\"de69c7a3c979a99b2e71f76bde6e80d8598e0feb.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bd57a3c7\"]', '68106591dda03.png', 1, 2, 3, 6, '20.00', '6.058621676557348', '80.22813253136285', '109 Mount Faber, Singapore', '6377 9619', 'example@example.com', 1, NULL, '2025-04-28 23:37:23', '2025-04-28 23:37:33', 1),
(63, 86, '[\"dfcbe5f2345829f055b7d0d28d42c9b4a2cf8456.jpg\",\"93549c9728d8af5556f06bb60ea641a77e0eff30.jpg\",\"93d1e2e5f32a25b972ea5d6b69f75ebab1706fa9.jpg\",\"1c260dcf233cc416582e7d4d5f09a12f9372cff4.jpg\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f8927f76f.png', 1, 2, 3, 6, '40.00', '6.058621676557348', '80.22813253136285', 'Jalan Sudirman, Manado, Indonesia', '(0431) 8888989', 'example@demo.com', 0, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50', 1),
(64, 86, '[\"4c3ffabe2d093098ca9ff22ae674b0133d8a972d.jpg\",\"4c6f17dba088486fab75a52a87045303138fbfee.jpg\",\"32be1491459c292c3f778ff8ef62c456aa4f32c0.jpg\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f9c5159cd.png', 1, 2, 3, 4, '40.00', '6.058621676557348', '80.22813253136285', 'Pathum Wan, Thailand', '02 309 5200', 'demo@demo.com', 1, NULL, '2025-04-30 04:21:57', '2025-05-03 00:23:59', 1),
(65, 86, '[\"994d2bf46d610742b2b1bea75faeae95d54eb1e9.png\",\"55f1854c16be8d2b821dc4709a3f1b8aed576006.jpg\",\"80e4be351551537715222191eeaa956f4fa66c8a.jpg\",\"a3e0cdb13b3625823ffeb6e35768ead4ffb8ff05.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6811fd02265bc.png', 1, 1, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', 'Beştepeler Mh, Yenimahalle, Ankara, Turkey', '(0312) 203 5555', 'example@demo.com', 0, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46', 2),
(66, 86, '[\"f45a0cca7edd72d0108ca2de759ca41d02018484.png\",\"692c1a3db0c94bf76e8635ee8fa10de35bcf7aeb.png\",\"4d61caee08520656666e54c888fdd8476cef7be4.png\",\"c2ec15d1afc3a6a32e7517f6d212c1984295ffcb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fda77bd82.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', 'Derry Hill, Calne, Wiltshire, United Kingdom', '01249 812102', 'example@example.com', 1, NULL, '2025-04-30 04:38:31', '2025-05-03 00:24:14', 1),
(67, 86, '[\"00e1569f1f13f67b7a3fae3c0735d5ee14c00382.png\",\"2d18a857529cd2a4c3e7ef28177e8289839945c5.png\",\"e39817519b381c89e3a62ed5bafff42df9903f43.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fe658f4d5.png', 1, 2, 1, 2, '25.00', '6.058621676557348', '80.22813253136285', 'Beim Strohhause 30, Hamburg, Germany', '040 245267', 'demo@demo.com', 0, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41', 1),
(68, 86, '[\"a5f1cc92cb8b3943979b75e1b85ad06e90c49ef6.png\",\"05863db9319ae9cff51c065cf2787e421b756055.png\",\"2d6fb1783391d8410e9882c7836e48bd3e6f070f.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fee80986b.png', 1, 1, 2, 2, '20.00', '6.058621676557348', '80.22813253136285', '1169 Bank St, Ottawa,Ontario, Canada', '(613) 730-9829', 'demo@demo.com', 1, NULL, '2025-04-30 04:43:52', '2025-05-03 00:24:23', 2),
(69, 86, '[\"1047e0c47c41334d536a7465fa28bd0e202f16b1.png\",\"402ebfde5663e106c1988cb5fb0328f1f30d91e0.png\",\"d7346644569438da6041d1a71d306bf25fa6a77f.png\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811ff879e4fb.png', 1, 2, 2, 2, '15.00', '6.058621676557348', '80.22813253136285', '2600 S Harper Rd, Corinth, Missouri, United States', NULL, 'demo@example.com', 0, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31', 1),
(70, 86, '[\"f1e91dbd7528af3d4e424b67398b6c2cd84875df.png\",\"e2947859b6b70a9ba372a81b4d75dd2bdea9d253.png\",\"1a46496fe57bd395126e9f631ed0a031e83a9a9e.png\"]', '680f6d150ac94', '[\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6812045d4f4b0.png', 1, 2, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', '10843 Philips Hwy, Jacksonville, Florida', '(904) 262-1986', 'example@example.com', 0, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09', 1),
(71, 86, '[\"08701680ba0ab40b96fe39cb6fbb91bcce1f8945.png\",\"a5374e0582bcf74e7c7d2432effa51dcea20e7a9.png\",\"189b1c3781cb2d7a745694f6950f1ca3d8922aa1.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '681207d125735.png', 1, 2, 2, 4, '20.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:21:53', '2025-05-03 00:24:33', 1),
(72, 86, '[\"5b843f51628f502f0b467380f1b0fa7b38498d1b.png\",\"0ed18bd06359974aaed969269c8792b574c25534.png\",\"75e1f826b480d2c26010ecdd7e716bad882858bb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6812085804de0.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:24:08', '2025-05-03 00:25:37', 1),
(73, 87, '[\"48b9e606ae73e354b28f3189851d5d16c5a978d2.jpg\",\"76820cc036b0ea8019953c8e58a741b44a8902e1.jpg\",\"c7a1101c67a48f23f198f1854fd4eef787ac9f0a.jpg\",\"b2c8333bd300562273ba8f52fcb89b4ad4fbbff4.jpg\",\"de69c7a3c979a99b2e71f76bde6e80d8598e0feb.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bd57a3c7\"]', '68106591dda03.png', 1, 2, 3, 6, '20.00', '6.058621676557348', '80.22813253136285', '109 Mount Faber, Singapore', '6377 9619', 'example@example.com', 1, NULL, '2025-04-28 23:37:23', '2025-04-28 23:37:33', 1),
(74, 87, '[\"dfcbe5f2345829f055b7d0d28d42c9b4a2cf8456.jpg\",\"93549c9728d8af5556f06bb60ea641a77e0eff30.jpg\",\"93d1e2e5f32a25b972ea5d6b69f75ebab1706fa9.jpg\",\"1c260dcf233cc416582e7d4d5f09a12f9372cff4.jpg\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f8927f76f.png', 1, 2, 3, 6, '40.00', '6.058621676557348', '80.22813253136285', 'Jalan Sudirman, Manado, Indonesia', '(0431) 8888989', 'example@demo.com', 0, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50', 1),
(75, 87, '[\"4c3ffabe2d093098ca9ff22ae674b0133d8a972d.jpg\",\"4c6f17dba088486fab75a52a87045303138fbfee.jpg\",\"32be1491459c292c3f778ff8ef62c456aa4f32c0.jpg\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6811f9c5159cd.png', 1, 2, 3, 4, '40.00', '6.058621676557348', '80.22813253136285', 'Pathum Wan, Thailand', '02 309 5200', 'demo@demo.com', 1, NULL, '2025-04-30 04:21:57', '2025-05-03 00:23:59', 1),
(76, 87, '[\"994d2bf46d610742b2b1bea75faeae95d54eb1e9.png\",\"55f1854c16be8d2b821dc4709a3f1b8aed576006.jpg\",\"80e4be351551537715222191eeaa956f4fa66c8a.jpg\",\"a3e0cdb13b3625823ffeb6e35768ead4ffb8ff05.jpg\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6811fd02265bc.png', 1, 1, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', 'Beştepeler Mh, Yenimahalle, Ankara, Turkey', '(0312) 203 5555', 'example@demo.com', 0, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46', 2),
(77, 87, '[\"f45a0cca7edd72d0108ca2de759ca41d02018484.png\",\"692c1a3db0c94bf76e8635ee8fa10de35bcf7aeb.png\",\"4d61caee08520656666e54c888fdd8476cef7be4.png\",\"c2ec15d1afc3a6a32e7517f6d212c1984295ffcb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fda77bd82.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', 'Derry Hill, Calne, Wiltshire, United Kingdom', '01249 812102', 'example@example.com', 1, NULL, '2025-04-30 04:38:31', '2025-05-03 00:24:14', 1),
(78, 87, '[\"00e1569f1f13f67b7a3fae3c0735d5ee14c00382.png\",\"2d18a857529cd2a4c3e7ef28177e8289839945c5.png\",\"e39817519b381c89e3a62ed5bafff42df9903f43.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fe658f4d5.png', 1, 2, 1, 2, '25.00', '6.058621676557348', '80.22813253136285', 'Beim Strohhause 30, Hamburg, Germany', '040 245267', 'demo@demo.com', 0, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41', 1),
(79, 87, '[\"a5f1cc92cb8b3943979b75e1b85ad06e90c49ef6.png\",\"05863db9319ae9cff51c065cf2787e421b756055.png\",\"2d6fb1783391d8410e9882c7836e48bd3e6f070f.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811fee80986b.png', 1, 1, 2, 2, '20.00', '6.058621676557348', '80.22813253136285', '1169 Bank St, Ottawa,Ontario, Canada', '(613) 730-9829', 'demo@demo.com', 1, NULL, '2025-04-30 04:43:52', '2025-05-03 00:24:23', 2),
(80, 87, '[\"1047e0c47c41334d536a7465fa28bd0e202f16b1.png\",\"402ebfde5663e106c1988cb5fb0328f1f30d91e0.png\",\"d7346644569438da6041d1a71d306bf25fa6a77f.png\"]', '680f6d150ac94', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '6811ff879e4fb.png', 1, 2, 2, 2, '15.00', '6.058621676557348', '80.22813253136285', '2600 S Harper Rd, Corinth, Missouri, United States', NULL, 'demo@example.com', 0, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31', 1),
(81, 87, '[\"f1e91dbd7528af3d4e424b67398b6c2cd84875df.png\",\"e2947859b6b70a9ba372a81b4d75dd2bdea9d253.png\",\"1a46496fe57bd395126e9f631ed0a031e83a9a9e.png\"]', '680f6d150ac94', '[\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bbd45662\",\"680f6bc87379d\"]', '6812045d4f4b0.png', 1, 2, 2, 4, '35.00', '6.058621676557348', '80.22813253136285', '10843 Philips Hwy, Jacksonville, Florida', '(904) 262-1986', 'example@example.com', 0, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09', 1),
(82, 87, '[\"08701680ba0ab40b96fe39cb6fbb91bcce1f8945.png\",\"a5374e0582bcf74e7c7d2432effa51dcea20e7a9.png\",\"189b1c3781cb2d7a745694f6950f1ca3d8922aa1.png\"]', '680f6ced89500', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6ba534ac8\",\"680f6bb16beff\",\"680f6bbd45662\"]', '681207d125735.png', 1, 2, 2, 4, '20.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:21:53', '2025-05-03 00:24:33', 1),
(83, 87, '[\"5b843f51628f502f0b467380f1b0fa7b38498d1b.png\",\"0ed18bd06359974aaed969269c8792b574c25534.png\",\"75e1f826b480d2c26010ecdd7e716bad882858bb.png\"]', '680f6cccd3fde', '[\"680f6b848bef0\",\"680f6b8ff1b9b\",\"680f6bbd45662\",\"680f6bc87379d\",\"680f6bd57a3c7\"]', '6812085804de0.png', 1, 2, 2, 3, '30.00', '6.058621676557348', '80.22813253136285', '33 Robin Covington Road, Rockingham,nc, 28339  United States', '2025550152', 'example@example.com', 1, NULL, '2025-04-30 05:24:08', '2025-05-03 00:25:37', 1);

-- --------------------------------------------------------

--
-- Table structure for table `user_room_amenities`
--

CREATE TABLE `user_room_amenities` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `serial_number` bigint(20) UNSIGNED NOT NULL,
  `indx` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT '1',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_room_amenities`
--

INSERT INTO `user_room_amenities` (`id`, `user_id`, `language_id`, `name`, `serial_number`, `indx`, `status`, `created_at`, `updated_at`) VALUES
(56, 83, 132, 'Tea/Coffee Maker', 1, '680f6b848bef0', 1, '2025-04-28 11:50:28', '2025-04-28 11:50:28'),
(57, 83, 133, 'ماكينة صنع الشاي / القهوة في جميع الغرف', 1, '680f6b848bef0', 1, '2025-04-28 11:50:28', '2025-04-28 11:54:13'),
(58, 83, 132, 'Pets Allowed', 2, '680f6b8ff1b9b', 1, '2025-04-28 11:50:39', '2025-04-28 11:50:39'),
(59, 83, 133, 'موقف سيارات', 2, '680f6b8ff1b9b', 1, '2025-04-28 11:50:39', '2025-04-28 11:52:32'),
(60, 83, 132, 'Gym / Fitness Centre', 3, '680f6ba534ac8', 1, '2025-04-28 11:51:01', '2025-04-28 11:51:01'),
(61, 83, 133, 'غرف عائلية', 3, '680f6ba534ac8', 1, '2025-04-28 11:51:01', '2025-04-28 11:52:42'),
(62, 83, 132, 'Non Smoking Rooms', 4, '680f6bb16beff', 1, '2025-04-28 11:51:13', '2025-04-28 11:51:13'),
(63, 83, 133, 'غرف ممنوع فيها التدخين', 4, '680f6bb16beff', 1, '2025-04-28 11:51:13', '2025-04-28 11:52:57'),
(64, 83, 132, 'Family Rooms', 5, '680f6bbd45662', 1, '2025-04-28 11:51:25', '2025-04-28 11:51:25'),
(65, 83, 133, 'غرف عائلية', 5, '680f6bbd45662', 1, '2025-04-28 11:51:25', '2025-04-28 11:53:42'),
(66, 83, 132, 'Parking', 6, '680f6bc87379d', 1, '2025-04-28 11:51:36', '2025-04-28 11:51:36'),
(67, 83, 133, 'موقف سيارات', 6, '680f6bc87379d', 1, '2025-04-28 11:51:36', '2025-04-28 11:54:38'),
(68, 83, 132, 'Free Wifi', 7, '680f6bd57a3c7', 1, '2025-04-28 11:51:49', '2025-05-07 07:04:25'),
(69, 83, 133, 'واى فاى مجانى', 7, '680f6bd57a3c7', 1, '2025-04-28 11:51:49', '2025-05-07 07:04:25'),
(70, 84, 134, 'Tea/Coffee Maker', 1, '680f6b848bef0', 1, '2025-04-28 11:50:28', '2025-04-28 11:50:28'),
(71, 84, 135, 'ماكينة صنع الشاي / القهوة في جميع الغرف', 1, '680f6b848bef0', 1, '2025-04-28 11:50:28', '2025-04-28 11:54:13'),
(72, 84, 134, 'Pets Allowed', 2, '680f6b8ff1b9b', 1, '2025-04-28 11:50:39', '2025-04-28 11:50:39'),
(73, 84, 135, 'موقف سيارات', 2, '680f6b8ff1b9b', 1, '2025-04-28 11:50:39', '2025-04-28 11:52:32'),
(74, 84, 134, 'Gym / Fitness Centre', 3, '680f6ba534ac8', 1, '2025-04-28 11:51:01', '2025-04-28 11:51:01'),
(75, 84, 135, 'غرف عائلية', 3, '680f6ba534ac8', 1, '2025-04-28 11:51:01', '2025-04-28 11:52:42'),
(76, 84, 134, 'Non Smoking Rooms', 4, '680f6bb16beff', 1, '2025-04-28 11:51:13', '2025-04-28 11:51:13'),
(77, 84, 135, 'غرف ممنوع فيها التدخين', 4, '680f6bb16beff', 1, '2025-04-28 11:51:13', '2025-04-28 11:52:57'),
(78, 84, 134, 'Family Rooms', 5, '680f6bbd45662', 1, '2025-04-28 11:51:25', '2025-04-28 11:51:25'),
(79, 84, 135, 'غرف عائلية', 5, '680f6bbd45662', 1, '2025-04-28 11:51:25', '2025-04-28 11:53:42'),
(80, 84, 134, 'Parking', 6, '680f6bc87379d', 1, '2025-04-28 11:51:36', '2025-04-28 11:51:36'),
(81, 84, 135, 'موقف سيارات', 6, '680f6bc87379d', 1, '2025-04-28 11:51:36', '2025-04-28 11:54:38'),
(82, 84, 134, 'Free Wifi', 7, '680f6bd57a3c7', 1, '2025-04-28 11:51:49', '2025-04-28 11:51:49'),
(83, 84, 135, 'واى فاى مجانى', 7, '680f6bd57a3c7', 1, '2025-04-28 11:51:49', '2025-04-28 11:52:23'),
(86, 85, 136, 'Tea/Coffee Maker', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:50:28'),
(87, 85, 137, 'ماكينة صنع الشاي / القهوة في جميع الغرف', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:54:13'),
(88, 85, 136, 'Pets Allowed', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:50:39'),
(89, 85, 137, 'موقف سيارات', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:52:32'),
(90, 85, 136, 'Gym / Fitness Centre', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:51:01'),
(91, 85, 137, 'غرف عائلية', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:52:42'),
(92, 85, 136, 'Non Smoking Rooms', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:51:13'),
(93, 85, 137, 'غرف ممنوع فيها التدخين', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:52:57'),
(94, 85, 136, 'Family Rooms', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:51:25'),
(95, 85, 137, 'غرف عائلية', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:53:42'),
(96, 85, 136, 'Parking', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:51:36'),
(97, 85, 137, 'موقف سيارات', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:54:38'),
(98, 85, 136, 'Free Wifi', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:51:49'),
(99, 85, 137, 'واى فاى مجانى', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:52:23'),
(100, 86, 138, 'Tea/Coffee Maker', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:50:28'),
(101, 86, 139, 'ماكينة صنع الشاي / القهوة في جميع الغرف', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:54:13'),
(102, 86, 138, 'Pets Allowed', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:50:39'),
(103, 86, 139, 'موقف سيارات', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:52:32'),
(104, 86, 138, 'Gym / Fitness Centre', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:51:01'),
(105, 86, 139, 'غرف عائلية', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:52:42'),
(106, 86, 138, 'Non Smoking Rooms', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:51:13'),
(107, 86, 139, 'غرف ممنوع فيها التدخين', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:52:57'),
(108, 86, 138, 'Family Rooms', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:51:25'),
(109, 86, 139, 'غرف عائلية', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:53:42'),
(110, 86, 138, 'Parking', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:51:36'),
(111, 86, 139, 'موقف سيارات', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:54:38'),
(112, 86, 138, 'Free Wifi', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:51:49'),
(113, 86, 139, 'واى فاى مجانى', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:52:23'),
(114, 87, 140, 'Tea/Coffee Maker', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:50:28'),
(115, 87, 141, 'ماكينة صنع الشاي / القهوة في جميع الغرف', 1, '680f6b848bef0', 1, '2025-04-28 05:50:28', '2025-04-28 05:54:13'),
(116, 87, 140, 'Pets Allowed', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:50:39'),
(117, 87, 141, 'موقف سيارات', 2, '680f6b8ff1b9b', 1, '2025-04-28 05:50:39', '2025-04-28 05:52:32'),
(118, 87, 140, 'Gym / Fitness Centre', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:51:01'),
(119, 87, 141, 'غرف عائلية', 3, '680f6ba534ac8', 1, '2025-04-28 05:51:01', '2025-04-28 05:52:42'),
(120, 87, 140, 'Non Smoking Rooms', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:51:13'),
(121, 87, 141, 'غرف ممنوع فيها التدخين', 4, '680f6bb16beff', 1, '2025-04-28 05:51:13', '2025-04-28 05:52:57'),
(122, 87, 140, 'Family Rooms', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:51:25'),
(123, 87, 141, 'غرف عائلية', 5, '680f6bbd45662', 1, '2025-04-28 05:51:25', '2025-04-28 05:53:42'),
(124, 87, 140, 'Parking', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:51:36'),
(125, 87, 141, 'موقف سيارات', 6, '680f6bc87379d', 1, '2025-04-28 05:51:36', '2025-04-28 05:54:38'),
(126, 87, 140, 'Free Wifi', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:51:49'),
(127, 87, 141, 'واى فاى مجانى', 7, '680f6bd57a3c7', 1, '2025-04-28 05:51:49', '2025-04-28 05:52:23');

-- --------------------------------------------------------

--
-- Table structure for table `user_room_bookings`
--

CREATE TABLE `user_room_bookings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `booking_number` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED DEFAULT NULL,
  `user_membership_id` int(11) DEFAULT NULL,
  `customer_id` int(11) DEFAULT NULL,
  `customer_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `customer_email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `customer_phone` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `room_id` bigint(20) UNSIGNED NOT NULL,
  `arrival_date` date NOT NULL,
  `departure_date` date NOT NULL,
  `guests` int(10) UNSIGNED NOT NULL,
  `subtotal` decimal(8,2) UNSIGNED DEFAULT NULL,
  `discount` decimal(8,2) UNSIGNED NOT NULL DEFAULT '0.00',
  `grand_total` decimal(8,2) UNSIGNED NOT NULL,
  `tax` decimal(10,2) NOT NULL DEFAULT '0.00',
  `fee` decimal(10,2) NOT NULL DEFAULT '0.00',
  `currency_symbol` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `currency_symbol_position` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `currency_text` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `currency_text_position` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `payment_method` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `gateway_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `attachment` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `invoice` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `payment_status` tinyint(3) UNSIGNED NOT NULL DEFAULT '0' COMMENT '0 -> payment incomplete, 1 -> payment complete',
  `payment_offline_status` tinyint(1) DEFAULT NULL COMMENT '1- Paid,0-Unpaid',
  `actual_total` decimal(8,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_room_categories`
--

CREATE TABLE `user_room_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `indx` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `status` tinyint(3) UNSIGNED NOT NULL,
  `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_room_categories`
--

INSERT INTO `user_room_categories` (`id`, `user_id`, `language_id`, `indx`, `name`, `slug`, `status`, `image`, `serial_number`, `created_at`, `updated_at`) VALUES
(65, 83, 132, '680f6cccd3fde', 'Regular Room', 'regular-room', 1, NULL, 1, '2025-04-28 11:55:56', '2025-05-07 07:02:54'),
(66, 83, 133, '680f6cccd3fde', 'غرفة عادية', 'غرفة-عادية', 1, NULL, 1, '2025-04-28 11:55:56', '2025-05-07 07:02:54'),
(67, 83, 132, '680f6ced89500', 'Deluxe Room', 'deluxe-room', 1, NULL, 2, '2025-04-28 11:56:29', '2025-04-28 11:56:29'),
(68, 83, 133, '680f6ced89500', 'غرفة ديلوكس', 'غرفة-ديلوكس', 1, NULL, 2, '2025-04-28 11:56:29', '2025-04-28 11:56:29'),
(69, 83, 132, '680f6d150ac94', 'Suite', 'suite', 1, NULL, 3, '2025-04-28 11:57:09', '2025-04-28 11:57:09'),
(70, 83, 133, '680f6d150ac94', 'جناح', 'جناح', 1, NULL, 3, '2025-04-28 11:57:09', '2025-04-28 11:57:09'),
(71, 84, 134, '680f6cccd3fde', 'Regular Room', 'regular-room', 1, NULL, 1, '2025-04-28 11:55:56', '2025-04-28 11:55:56'),
(72, 84, 135, '680f6cccd3fde', 'غرفة عادية', 'غرفة-عادية', 1, NULL, 1, '2025-04-28 11:55:56', '2025-04-28 11:55:56'),
(73, 84, 134, '680f6ced89500', 'Deluxe Room', 'deluxe-room', 1, NULL, 2, '2025-04-28 11:56:29', '2025-04-28 11:56:29'),
(74, 84, 135, '680f6ced89500', 'غرفة ديلوكس', 'غرفة-ديلوكس', 1, NULL, 2, '2025-04-28 11:56:29', '2025-04-28 11:56:29'),
(75, 84, 134, '680f6d150ac94', 'Suite', 'suite', 1, NULL, 3, '2025-04-28 11:57:09', '2025-04-28 11:57:09'),
(76, 84, 135, '680f6d150ac94', 'جناح', 'جناح', 1, NULL, 3, '2025-04-28 11:57:09', '2025-04-28 11:57:09'),
(77, 85, 136, '680f6cccd3fde', 'Regular Room', 'regular-room', 1, '5b8dd75f15dd66b25c7ffa8ca7042654148c18be.jpg', 1, '2025-04-28 05:55:56', '2025-05-08 08:50:05'),
(78, 85, 137, '680f6cccd3fde', 'غرفة عادية', 'غرفة-عادية', 1, '5b8dd75f15dd66b25c7ffa8ca7042654148c18be.jpg', 1, '2025-04-28 05:55:56', '2025-05-08 08:50:05'),
(79, 85, 136, '680f6ced89500', 'Deluxe Room', 'deluxe-room', 1, '58c172bcc8ba566c2110419ed09a0c7dc2f78968.jpg', 2, '2025-04-28 05:56:29', '2025-05-08 08:49:57'),
(80, 85, 137, '680f6ced89500', 'غرفة ديلوكس', 'غرفة-ديلوكس', 1, '58c172bcc8ba566c2110419ed09a0c7dc2f78968.jpg', 2, '2025-04-28 05:56:29', '2025-05-08 08:49:57'),
(81, 85, 136, '680f6d150ac94', 'Suite', 'suite', 1, 'd11bde3f7397b37aaf40150608dbce205ee36007.jpg', 3, '2025-04-28 05:57:09', '2025-05-08 08:49:47'),
(82, 85, 137, '680f6d150ac94', 'جناح', 'جناح', 1, 'd11bde3f7397b37aaf40150608dbce205ee36007.jpg', 3, '2025-04-28 05:57:09', '2025-05-08 08:49:47'),
(83, 86, 138, '680f6cccd3fde', 'Regular Room', 'regular-room', 1, '68cf527b6694d111684de29c78536ef8a5bb863f.jpg', 1, '2025-04-28 05:55:56', '2025-05-08 11:11:25'),
(84, 86, 139, '680f6cccd3fde', 'غرفة عادية', 'غرفة-عادية', 1, '68cf527b6694d111684de29c78536ef8a5bb863f.jpg', 1, '2025-04-28 05:55:56', '2025-05-08 11:11:25'),
(85, 86, 138, '680f6ced89500', 'Deluxe Room', 'deluxe-room', 1, '6a3a6604e4f2a61a61ff00f5e83ccce563d0ae4f.jpg', 2, '2025-04-28 05:56:29', '2025-05-08 11:10:45'),
(86, 86, 139, '680f6ced89500', 'غرفة ديلوكس', 'غرفة-ديلوكس', 1, '6a3a6604e4f2a61a61ff00f5e83ccce563d0ae4f.jpg', 2, '2025-04-28 05:56:29', '2025-05-08 11:10:45'),
(87, 86, 138, '680f6d150ac94', 'Suite', 'suite', 1, '0180e33acb33568e8b88ab8095f90d361f984025.jpg', 3, '2025-04-28 05:57:09', '2025-05-08 11:10:35'),
(88, 86, 139, '680f6d150ac94', 'جناح', 'جناح', 1, '0180e33acb33568e8b88ab8095f90d361f984025.jpg', 3, '2025-04-28 05:57:09', '2025-05-08 11:10:35'),
(89, 87, 140, '680f6cccd3fde', 'Regular Room', 'regular-room', 1, NULL, 1, '2025-04-28 05:55:56', '2025-04-28 05:55:56'),
(90, 87, 141, '680f6cccd3fde', 'غرفة عادية', 'غرفة-عادية', 1, NULL, 1, '2025-04-28 05:55:56', '2025-04-28 05:55:56'),
(91, 87, 140, '680f6ced89500', 'Deluxe Room', 'deluxe-room', 1, NULL, 2, '2025-04-28 05:56:29', '2025-04-28 05:56:29'),
(92, 87, 141, '680f6ced89500', 'غرفة ديلوكس', 'غرفة-ديلوكس', 1, NULL, 2, '2025-04-28 05:56:29', '2025-04-28 05:56:29'),
(93, 87, 140, '680f6d150ac94', 'Suite', 'suite', 1, NULL, 3, '2025-04-28 05:57:09', '2025-04-28 05:57:09'),
(94, 87, 141, '680f6d150ac94', 'جناح', 'جناح', 1, NULL, 3, '2025-04-28 05:57:09', '2025-04-28 05:57:09'),
(95, 86, 138, '682b1440d6f46', 'Presidential Suite', 'presidential-suite', 1, '48378aa391ff962dcd62f27218a9190cfeb5b949.jpg', 1, '2025-05-19 11:21:36', '2025-05-19 11:21:36'),
(96, 86, 139, '682b1440d6f46', 'الجناح الرئاسي', 'الجناح-الرئاسي', 1, '48378aa391ff962dcd62f27218a9190cfeb5b949.jpg', 1, '2025-05-19 11:21:36', '2025-05-19 11:21:36');

-- --------------------------------------------------------

--
-- Table structure for table `user_room_contents`
--

CREATE TABLE `user_room_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `room_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `summary` text COLLATE utf8_unicode_ci,
  `description` longtext COLLATE utf8_unicode_ci,
  `meta_keywords` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_room_contents`
--

INSERT INTO `user_room_contents` (`id`, `user_id`, `language_id`, `room_id`, `title`, `slug`, `summary`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(53, 83, 132, 29, 'Penthouse Suite with Private Rooftop Terrace', 'penthouse-suite-with-private-rooftop-terrace', 'This luxurious penthouse suite features a private rooftop terrace with stunning views of the city. The suite has a spacious living area with a fireplace, a fully equipped kitchen, and a master bedroom with a king-size bed and a private bathroom with a soaking tub. The suite also has a washer and dryer, and free WiFi.', '<p>The Penthouse Suite with Private Rooftop Terrace is the perfect place to relax and unwind after a long day of exploring the city. The rooftop terrace is the perfect spot to enjoy a drink or a meal while taking in the views. The suite also has everything you need to feel comfortable and at home, including a fully equipped kitchen, a washer and dryer, and free WiFi</p>\r\n<ul>\r\n<li>Spacious living area with fireplace</li>\r\n<li>Fully equipped kitchen</li>\r\n<li>Master bedroom with king-size bed</li>\r\n<li>Private bathroom with soaking tub</li>\r\n<li>Washer and dryer</li>\r\n<li>Free WiFi</li>\r\n<li>Private rooftop terrace with stunning views of the city</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-29 05:37:24', '2025-04-29 05:37:24'),
(54, 83, 133, 29, 'جناح عائلي بسريرين كوين وسرير أريكة', 'gnah-aaayly-bsryryn-koyn-osryr-aryk', 'غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي الغرفة على سريرين بحجم كوين وسرير أريكة ودش قابل للطي يمكن الوصول إليه. تشمل المرافق الأخرى في الغرفة جهاز تلفزيون بشاشة مسطحة وثلاجة صغيرة وميكروويف وماكينة صنع القهوة. الغرفة مجهزة أيضًا بخدمة الإنترنت اللاسلكي عالي السرعة.\r\n\r\nالغرفة في الطابق الأرضي ليسهل الوصول إليها.\r\nيحتوي الحمام على دش قابل للطي مع مقابض للإمساك.\r\nالغرفة ذات إطار سرير منخفض ومفاتيح إضاءة يمكن الوصول إليها.\r\nتم تجهيز الغرفة بمجموعة متنوعة من ميزات إمكانية الوصول الأخرى لجعلها مريحة للضيوف ذوي الاحتياجات الخاصة بالتنقل.\r\n\r\nإذا كنت تبحث عن غرفة فندق فسيحة يسهل الوصول إليها ، فإن غرفة الوصول إلى سريرين كوين مع سرير أريكة يعد خيارًا رائعًا. الغرفة مريحة ومجهزة جيدًا وبها جميع وسائل الراحة التي تحتاجها لإقامة مريحة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-29 05:37:25', '2025-04-29 05:37:25'),
(55, 83, 132, 30, 'Overwater Bungalow with Private Plunge Pool', 'overwater-bungalow-with-private-plunge-pool', 'An overwater bungalow with a private plunge pool is a luxurious and secluded accommodation option that offers stunning views of the ocean. These bungalows are typically built on stilts over the water, and they often have their own private deck with a plunge pool. This type of accommodation is perfect for couples or honeymooners who want a romantic and private getaway.', '<p>Overwater bungalows with private plunge pools can be quite expensive, but they are worth the price for those who want a truly luxurious and unforgettable vacation experience. Prices typically start at around $1,000 per night, but they can go much higher depending on the location and the amenities offered.</p>\r\n<p><strong>Some of the best places to stay in an overwater bungalow with a private plunge pool include:</strong></p>\r\n<ul>\r\n<li>Bora Bora, French Polynesia</li>\r\n<li>Maldives</li>\r\n<li>Fiji</li>\r\n<li>Seychelles</li>\r\n<li>Turks and Caicos</li>\r\n<li>Bahamas</li>\r\n<li>Mexico</li>\r\n<li>Indonesia</li>\r\n<li>Thailand</li>\r\n</ul>\r\n<p><strong>Conclusion</strong></p>\r\n<p>An overwater bungalow with a private plunge pool is a truly unique and unforgettable accommodation option. If you are looking for a luxurious and secluded vacation experience, then this is the perfect choice for you.</p>', NULL, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50'),
(56, 83, 133, 30, 'بنغل فوق الماء مع مسبح مغطس خاص', 'bnghl-fok-almaaa-maa-msbh-mghts-khas', 'بنغل فوق الماء مع مغطس خاص هو خيار إقامة فاخر ومنعزل يوفر إطلالات خلابة على المحيط. عادة ما يتم بناء هذه الأكواخ على ركائز متينة فوق الماء ، وغالبًا ما يكون لها سطح خاص بها مع مغطس. يعتبر هذا النوع من أماكن الإقامة مثاليًا للأزواج أو الذين يقضون شهر العسل الذين يرغبون في قضاء عطلة رومانسية وخاصة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يمكن أن تكون الأكواخ فوق الماء مع أحواض الغطس الخاصة باهظة الثمن ، لكنها تستحق السعر لمن يريدون تجربة إجازة فاخرة لا تُنسى حقًا. تبدأ الأسعار عادةً بحوالي 1000 دولار في الليلة ، لكنها يمكن أن ترتفع كثيرًا اعتمادًا على الموقع ووسائل الراحة المقدمة.\r\n\r\nتشمل بعض أفضل الأماكن للإقامة في بنغل فوق الماء مع مغطس خاص ما يلي:\r\n\r\nبورا بورا ، بولينيزيا الفرنسية\r\nجزر المالديف\r\nفيجي\r\nسيشيل\r\nتركس وكايكوس\r\nجزر البهاما\r\nالمكسيك\r\nإندونيسيا\r\nتايلاند\r\n\r\nخاتمة\r\n\r\nيعد البنغل فوق الماء مع مغطس خاص خيار إقامة فريد حقًا ولا يُنسى. إذا كنت تبحث عن تجربة إجازة فاخرة ومنعزلة ، فهذا هو الخيار الأمثل لك.</span></pre>', NULL, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50'),
(57, 83, 132, 31, 'Hiking and Biking Suite with Mountain Views', 'hiking-and-biking-suite-with-mountain-views', 'This spacious suite is perfect for nature lovers who want to be close to the trails. It features stunning mountain views, a private balcony, and all the amenities you need for a comfortable stay, including a king-size bed, a living area with a sofa bed, a kitchenette, and a bathroom with a soaking tub.', '<p>The Hiking and Biking Suite with Mountain Views is located on the top floor of the hotel, so you\'ll enjoy stunning views of the surrounding mountains from your private balcony. The suite also features a spacious living area with a sofa bed, a kitchenette with all the essentials, and a bathroom with a soaking tub.</p>\r\n<p>The Hiking and Biking Suite with Mountain Views is the perfect place to relax and recharge after a day of exploring the great outdoors. With its comfortable accommodations, stunning views, and convenient location, this suite is sure to make your stay unforgettable.</p>\r\n<p>Here are some additional details about mountain biking:</p>\r\n<ul>\r\n<li>Mountain biking is a great way to explore the outdoors and get some exercise.</li>\r\n<li>There are many different types of mountain biking trails, from easy to challenging.</li>\r\n<li>You can mountain bike on your own or with a group.</li>\r\n<li>Mountain biking can be a great way to meet new people and make friends.</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:21:57', '2025-04-30 10:21:57'),
(58, 83, 133, 31, 'جناح المشي لمسافات طويلة وركوب الدراجات مع إطلالة على الجبل', 'gnah-almshy-lmsafat-toyl-orkob-aldragat-maa-atlal-aal-algbl', 'يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من شرفتك الخاصة. يحتوي الجناح أيضًا على منطقة جلوس واسعة مع سرير أريكة ومطبخ صغير به جميع الضروريات وحمام مع حوض استحمام.\r\n\r\nجناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل هو المكان المثالي للاسترخاء واستعادة النشاط بعد يوم من استكشاف الأماكن الرائعة في الهواء الطلق. مع أماكن الإقامة المريحة ، والمناظر الخلابة ، والموقع المناسب ، من المؤكد أن هذا الجناح سيجعل إقامتك لا تُنسى.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول ركوب الدراجات الجبلية:\r\n\r\nيعد ركوب الدراجات في الجبال طريقة رائعة لاستكشاف الهواء الطلق وممارسة بعض التمارين.\r\nهناك العديد من أنواع مسارات ركوب الدراجات الجبلية ، من السهل إلى التحدي.\r\nيمكنك ركوب الدراجة الجبلية بمفردك أو مع مجموعة.\r\nيمكن أن يكون ركوب الدراجات في الجبال طريقة رائعة لمقابلة أشخاص جدد وتكوين صداقات.</span></pre>', NULL, NULL, '2025-04-30 10:21:57', '2025-04-30 10:21:57'),
(59, 83, 132, 32, 'Pet-Friendly Room with Separate Sleeping Area for Pets', 'pet-friendly-room-with-separate-sleeping-area-for-pets', 'This room is perfect for pet owners who want to give their furry friends their own space to sleep and relax. The room features a separate sleeping area for pets, complete with a dog bed, water bowl, and food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.', '<p>The room itself is spacious and well-appointed, with a king-size bed, a sofa bed, a desk, and a flat-screen TV. The separate sleeping area for pets is located in a corner of the room and is separated by a baby gate. The area is furnished with a dog bed, a water bowl, and a food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.</p>\r\n<p>This room is a great option for pet owners who want to bring their furry friends on vacation without having to worry about finding a pet-friendly hotel. The separate sleeping area gives your pet their own space to sleep and relax, and the pet relief area makes it easy for them to go outside to do their business.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li>Maximum number of pets: 2</li>\r\n<li>Pet Policy: Pets must be leashed and/or crated at all times in public areas of the hotel.</li>\r\n<li>Amenities: Dog bed, water bowl, food bowl, pet relief area</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:35:46', '2025-04-30 10:35:46'),
(60, 83, 133, 32, 'غرفة صديقة للحيوانات الأليفة مع منطقة نوم منفصلة للحيوانات الأليفة', 'ghrf-sdyk-llhyoanat-alalyf-maa-mntk-nom-mnfsl-llhyoanat-alalyf', 'هذه الغرفة مثالية لأصحاب الحيوانات الأليفة الذين يرغبون في منح أصدقائهم الفرويين مساحة خاصة بهم للنوم والاسترخاء. تحتوي الغرفة على منطقة نوم منفصلة للحيوانات الأليفة ، مع سرير للكلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة نفسها فسيحة ومجهزة جيدًا ، وتحتوي على سرير بحجم كينغ وسرير أريكة ومكتب وتلفزيون بشاشة مسطحة. تقع منطقة النوم المنفصلة للحيوانات الأليفة في أحد أركان الغرفة ويفصل بينها بوابة الأطفال. المنطقة مفروشة بسرير كلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.\r\n\r\nتعد هذه الغرفة خيارًا رائعًا لأصحاب الحيوانات الأليفة الذين يرغبون في إحضار أصدقائهم ذوي الفراء في إجازة دون الحاجة إلى القلق بشأن العثور على فندق صديق للحيوانات الأليفة. توفر منطقة النوم المنفصلة لحيوانك الأليف مساحة خاصة به للنوم والاسترخاء ، كما أن منطقة راحة الحيوانات الأليفة تجعل من السهل عليهم الخروج إلى الخارج للقيام بأعمالهم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحد الأقصى لعدد الحيوانات الأليفة: 2\r\nسياسة الحيوانات الأليفة: يجب تقييد و / أو تخزين الحيوانات الأليفة في جميع الأوقات في المناطق العامة بالفندق.\r\nوسائل الراحة: سرير الكلب ، وعاء الماء ، وعاء الطعام ، منطقة إغاثة الحيوانات الأليفة</span></pre>', NULL, NULL, '2025-04-30 10:35:46', '2025-04-30 10:35:46'),
(61, 83, 132, 33, 'Executive Suite with Private Balcony and Views of the Mountains', 'executive-suite-with-private-balcony-and-views-of-the-mountains', 'This spacious suite features a separate living area with a sofa, a king-size bed, a private balcony with mountain views, and a fully equipped bathroom with a walk-in shower. Other amenities include a flat-screen TV, free Wi-Fi, a minibar, and a safe.', '<p>The Executive Suite is the perfect place to relax and unwind after a long day of exploring. The living area is a great place to curl up with a book or watch a movie, and the private balcony is the perfect spot to enjoy the fresh air and take in the views. The bathroom is spacious and luxurious, with a walk-in shower and a soaking tub. The suite also features a flat-screen TV, free Wi-Fi, a minibar, and a safe.</p>\r\n<ul>\r\n<li>Spacious living area with sofa</li>\r\n<li>King-size bed</li>\r\n<li>Private balcony with mountain views</li>\r\n<li>Fully equipped bathroom with walk-in shower</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Minibar</li>\r\n<li>Safe</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-30 10:38:31', '2025-04-30 10:38:31'),
(62, 83, 133, 33, 'جناح تنفيذي مع شرفة خاصة وإطلالات على الجبال', 'gnah-tnfythy-maa-shrf-khas-oatlalat-aal-algbal', 'يحتوي هذا الجناح الفسيح على منطقة معيشة منفصلة مع أريكة وسرير كينغ وشرفة خاصة مطلة على الجبل وحمام مجهز بالكامل مع مقصورة دش. تشمل المرافق الأخرى تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الجناح التنفيذي هو المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف. تعد منطقة المعيشة مكانًا رائعًا للاسترخاء مع كتاب أو مشاهدة فيلم ، والشرفة الخاصة هي المكان المثالي للاستمتاع بالهواء النقي والاستمتاع بالمناظر. الحمام واسع وفاخر مع مقصورة دش وحوض استحمام. يحتوي الجناح أيضًا على تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.\r\n\r\nمنطقة معيشة واسعة مع أريكة\r\nسرير بحجم كينغ\r\nشرفة خاصة تطل على الجبل\r\nحمام مجهز بالكامل مع مقصورة دش\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nميني بار\r\nآمن\r\n\r\nجناح إكزكيوتف هو الخيار الأمثل للأزواج أو المسافرين من رجال الأعمال الذين يريدون غرفة فاخرة وواسعة مع مناظر خلابة. يقع في منطقة هادئة بالفندق ، مما يجعله المكان المثالي للاسترخاء والراحة.</span></pre>', NULL, NULL, '2025-04-30 10:38:31', '2025-04-30 10:38:31'),
(63, 83, 132, 34, 'Family Suite with Two Bedrooms and Two Bathrooms', 'family-suite-with-two-bedrooms-and-two-bathrooms', 'This spacious suite is perfect for families or groups of friends. It features two bedrooms, each with a king-size bed, and two bathrooms with walk-in showers. There is also a living room with a sofa bed, a fully equipped kitchenette, and a dining area. The suite has a private balcony or terrace with stunning views.', '<p>The Family Suite is decorated in a modern style with comfortable furnishings. The bedrooms are both well-appointed with plush bedding, blackout curtains, and cable TV. The bathrooms are both spacious and have granite countertops, marble floors, and luxury bath amenities. The living room is a great place to relax and unwind with family and friends. It has a sofa bed, a coffee table, a flat-screen TV, and a DVD player. The kitchenette is fully equipped with a stovetop, oven, microwave, refrigerator, dishwasher, and coffee maker. There is also a dining table for six people. The suite has a private balcony or terrace with stunning views of the city, the ocean, or the mountains.</p>\r\n<ul>\r\n<li>Two king-size beds</li>\r\n<li>Two bathrooms with walk-in showers</li>\r\n<li>Living room with sofa bed, dining area, and flat-screen TV</li>\r\n<li>Fully equipped kitchenette</li>\r\n<li>Private balcony or terrace with stunning views</li>\r\n<li>Wi-Fi</li>\r\n<li>Cable TV</li>\r\n<li>Air conditioning</li>\r\n<li>Hair dryer</li>\r\n<li>Iron and ironing board</li>\r\n<li>Wake-up service</li>\r\n<li>Room service</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41'),
(64, 83, 133, 34, 'جناح عائلي بغرفتي نوم وحمامين', 'gnah-aaayly-bghrfty-nom-ohmamyn', 'هذا الجناح الفسيح مثالي للعائلات أو مجموعات الأصدقاء. تحتوي على غرفتي نوم ، كل واحدة بها سرير بحجم كينغ ، وحمامين مع مقصورة دش. تتوفر أيضًا غرفة معيشة مع سرير أريكة ومطبخ صغير مجهز بالكامل ومنطقة لتناول الطعام. يحتوي الجناح على شرفة خاصة أو تراس مع مناظر خلابة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تزيين الجناح العائلي بأسلوب حديث مع أثاثات مريحة. تم تجهيز غرف النوم جيدًا مع بياضات أسرّة فاخرة وستائر معتمة وتلفزيون مع قنوات الكابل. الحمامات واسعة وبها أسطح من الغرانيت وأرضيات رخامية ومستلزمات استحمام فاخرة. تعد غرفة المعيشة مكانًا رائعًا للاسترخاء مع العائلة والأصدقاء. تحتوي على سرير أريكة وطاولة قهوة وتلفزيون بشاشة مسطحة ومشغل دي في دي. تم تجهيز المطبخ الصغير بالكامل بموقد مسطح وفرن وميكروويف وثلاجة وغسالة أطباق وماكينة صنع القهوة. توجد أيضًا طاولة طعام تتسع لستة أشخاص. يحتوي الجناح على شرفة خاصة أو تراس مع إطلالات خلابة على المدينة أو المحيط أو الجبال.\r\n\r\nسريرين بحجم كينغ\r\nحمامين مع مقصورة دش\r\nغرفة معيشة مع سرير أريكة ومنطقة لتناول الطعام وتلفزيون بشاشة مسطحة\r\nمطبخ صغير مجهز بالكامل\r\nشرفة خاصة أو تراس مع مناظر خلابة\r\nواي فاي\r\nالكيبل التلفزيوني\r\nتكيف\r\nمجفف شعر\r\nمكواة وطاولة كي\r\nخدمة الإيقاظ\r\nخدمة الغرف</span></pre>', NULL, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41'),
(65, 83, 132, 35, 'Deluxe King Room with Soaking Tub and Complimentary Breakfast', 'deluxe-king-room-with-soaking-tub-and-complimentary-breakfast', 'This spacious room features a king-size bed, a soaking tub, a flat-screen TV, free Wi-Fi, and complimentary breakfast. It is the perfect place to relax and unwind after a long day of exploring.', '<p>The Deluxe King Room with Soaking Tub and Complimentary Breakfast is a spacious room that measures approximately 400 square feet. It features a king-size bed with a pillow-top mattress, a soaking tub, a flat-screen TV with cable channels, a desk, a chair, a mini-fridge, and a coffee maker. The room also has a private bathroom with a shower and a hair dryer.</p>\r\n<p>The room is decorated in a modern style with neutral colors. The walls are painted white and the furniture is made of dark wood. The bed is covered with a plush white comforter and the windows have blackout curtains.</p>\r\n<p>The room has free Wi-Fi and a flat-screen TV with cable channels. There is also a mini-fridge and a coffee maker in the room.</p>\r\n<p>Complimentary breakfast is served in the hotel\'s dining room each morning. The breakfast buffet typically includes eggs, bacon, sausage, pancakes, waffles, cereal, yogurt, fruit, and pastries.</p>\r\n<ul>\r\n<li>King-size bed with pillow-top mattress</li>\r\n<li>Soaking tub</li>\r\n<li>Flat-screen TV with cable channels</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Private bathroom with shower and hair dryer</li>\r\n<li>Mini-fridge</li>\r\n<li>Coffee maker</li>\r\n<li>Complimentary breakfast</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:43:52', '2025-04-30 10:43:52'),
(66, 83, 133, 35, 'غرفة ديلوكس بحجم كينغ مع حوض استحمام ووجبة إفطار مجانية', 'ghrf-dyloks-bhgm-kyngh-maa-hod-asthmam-oogb-aftar-mgany', 'تحتوي هذه الغرفة الفسيحة على سرير بحجم كينغ وحوض استحمام عميق وجهاز تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية ووجبة إفطار مجانية. إنه المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة الديلوكس كينغ مع حوض استحمام ووجبة إفطار مجانية هي غرفة فسيحة تبلغ مساحتها حوالي 400 قدم مربع. وتحتوي على سرير بحجم كينغ مع مرتبة أعلى وسائد وحوض استحمام وتلفزيون بشاشة مسطحة مع قنوات الكابل ومكتب وكرسي وثلاجة صغيرة وآلة لصنع القهوة. تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر.\r\n\r\nالغرفة مصممة على الطراز الحديث بألوان محايدة. الجدران مطلية باللون الأبيض والأثاث مصنوع من الخشب الداكن. السرير مغطى بلحفة بيضاء فخمة والنوافذ بها ستائر قاتمة.\r\n\r\nتوفر الغرفة خدمة الواي فاي المجانية وجهاز تلفزيون بشاشة مسطحة مع قنوات الكابل. توجد أيضًا ثلاجة صغيرة وماكينة صنع القهوة في الغرفة.\r\n\r\nيتم تقديم وجبة إفطار مجانية في غرفة تناول الطعام بالفندق كل صباح. يشمل بوفيه الإفطار عادة البيض ولحم الخنزير المقدد والنقانق والفطائر والفطائر والحبوب والزبادي والفواكه والمعجنات.\r\n\r\nسرير كبير الحجم مع مرتبة أعلى وسادة\r\nحوض نقع\r\nتلفزيون بشاشة مسطحة مع قنوات الكابل\r\nواى فاى مجانى\r\nحمام خاص مع دش ومجفف شعر\r\nثلاجة صغيرة\r\nصانع القهوة\r\nإفطار مجاني</span></pre>', NULL, NULL, '2025-04-30 10:43:52', '2025-04-30 10:43:52'),
(67, 83, 132, 36, 'Business Class Room with High-Speed Internet and Work Desk', 'business-class-room-with-high-speed-internet-and-work-desk', 'This room is designed for business travelers who need a comfortable place to sleep and work. It features a king-size bed, a work desk with an ergonomic chair, high-speed internet access, a microwave, a fridge, a 37-inch TV, and a Keurig coffee maker', '<p>The room is decorated in a modern style with neutral colors. The bed is made with luxurious bedding and the desk has plenty of space to spread out work materials. The high-speed internet access is perfect for staying connected with clients or colleagues. The microwave and fridge are convenient for storing snacks and drinks. The 37-inch TV provides entertainment options and the Keurig coffee maker is a great way to start the day.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li><strong>Size:</strong> The room is approximately 350 square feet.</li>\r\n<li><strong>Amenities:</strong> In addition to the amenities listed above, the room also features a private bathroom with a shower, a hair dryer, and toiletries.</li>\r\n<li><strong>Pricing:</strong> The room typically starts at \\$150 per night.</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31'),
(68, 83, 133, 36, 'غرفة درجة الأعمال مع إنترنت عالي السرعة ومكتب عمل', 'ghrf-drg-alaaamal-maa-antrnt-aaaly-alsraa-omktb-aaml', 'تم تصميم هذه الغرفة للمسافرين من رجال الأعمال الذين يحتاجون إلى مكان مريح للنوم والعمل. تتميز بسرير بحجم كينغ ومكتب للعمل مع كرسي مريح وخدمة الإنترنت عالية السرعة وميكروويف وثلاجة وتلفزيون 37 بوصة وماكينة صنع القهوة Keurig', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة مصممة على الطراز الحديث بألوان محايدة. السرير مصنوع من بياضات أسرّة فاخرة والمكتب به مساحة كبيرة لنشر مواد العمل. يعد الوصول إلى الإنترنت عالي السرعة مثاليًا للبقاء على اتصال مع العملاء أو الزملاء. يعد الميكروويف والثلاجة مناسبين لتخزين الوجبات الخفيفة والمشروبات. يوفر التلفزيون مقاس 37 بوصة خيارات ترفيهية وتعد آلة صنع القهوة Keurig طريقة رائعة لبدء اليوم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحجم: تبلغ مساحة الغرفة حوالي 350 قدم مربع.\r\nوسائل الراحة: بالإضافة إلى وسائل الراحة المذكورة أعلاه ، تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر ولوازم استحمام.\r\nالتسعير: تبدأ الغرفة عادة بـ 150 دولارًا في الليلة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31'),
(69, 83, 132, 37, 'Family-Friendly Rooms with Plenty of Space', 'family-friendly-rooms-with-plenty-of-space', 'Family-friendly rooms with plenty of space are perfect for families with children of all ages. These rooms offer ample space for everyone to spread out and relax, as well as amenities that make life with kids easier', '<p>Family-friendly rooms with plenty of space are typically larger than standard hotel rooms, with at least one bedroom and a separate living area. The bedrooms are often furnished with two double beds or a king-size bed, and the living area may have a sofa bed or futon for extra guests. The kitchenette is typically equipped with a stovetop, oven, refrigerator, microwave, and coffee maker. The dining area is usually small, but it\'s large enough for a family to eat together. The play area is often located in the living area and is furnished with toys and games for children. Some rooms also have a private balcony or patio where families can relax and enjoy the outdoors.</p>\r\n<p>Family-friendly rooms with plenty of space offer a number of benefits for families, including:</p>\r\n<ul>\r\n<li>More space to spread out and relax</li>\r\n<li>Amenities that make life with kids easier</li>\r\n<li>A private space for children to play</li>\r\n<li>A comfortable place for everyone to sleep</li>\r\n</ul>\r\n<p>Family-friendly rooms with plenty of space are ideal for families with children of all ages. These rooms are perfect for families who want to relax and enjoy their vacation together, without having to worry about being cramped or having to share a room with other guests.</p>', NULL, NULL, '2025-04-30 11:07:09', '2025-04-30 11:07:09'),
(70, 83, 133, 37, 'غرف صديقة للأسرة مع الكثير من المساحة', 'ghrf-sdyk-llasr-maa-alkthyr-mn-almsah', 'تعتبر الغرف المناسبة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. توفر هذه الغرف مساحة واسعة للجميع للانتشار والاسترخاء ، بالإضافة إلى وسائل الراحة التي تجعل الحياة مع الأطفال أسهل', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">عادةً ما تكون الغرف المناسبة للعائلات التي تحتوي على مساحة كبيرة أكبر من غرف الفنادق العادية ، وتحتوي على غرفة نوم واحدة على الأقل ومنطقة معيشة منفصلة. غالبًا ما تكون غرف النوم مؤثثة بسريرين مزدوجين أو سرير بحجم كينغ ، وقد تحتوي منطقة المعيشة على سرير أريكة أو فوتون للضيوف الإضافيين. عادةً ما يكون المطبخ الصغير مجهزًا بموقد مسطح وفرن وثلاجة وميكروويف وماكينة صنع القهوة. عادة ما تكون منطقة تناول الطعام صغيرة ، لكنها كبيرة بما يكفي لتناول الطعام معًا. غالبًا ما تقع منطقة اللعب في منطقة المعيشة وهي مؤثثة بالألعاب والألعاب للأطفال. تحتوي بعض الغرف أيضًا على شرفة خاصة أو فناء حيث يمكن للعائلات الاسترخاء والاستمتاع بالهواء الطلق.\r\n\r\nتوفر الغرف الملائمة للعائلات التي تتميز بمساحة كبيرة عددًا من المزايا للعائلات ، بما في ذلك:\r\n\r\nمساحة أكبر للانتشار والاسترخاء\r\nوسائل الراحة التي تجعل الحياة مع الأطفال أسهل\r\nمساحة خاصة للأطفال للعب\r\nمكان مريح ينام فيه الجميع\r\n\r\nتُعد الغرف الملائمة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. هذه الغرف مثالية للعائلات التي ترغب في الاسترخاء والاستمتاع بعطلتهم معًا ، دون الحاجة إلى القلق بشأن الازدحام أو الاضطرار إلى مشاركة الغرفة مع الضيوف الآخرين.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:07:09', '2025-04-30 11:07:09'),
(71, 83, 132, 38, 'Spacious Rooms with All the Amenities', 'spacious-rooms-with-all-the-amenities', 'These spacious rooms offer everything you need for a comfortable stay, including a king-size bed, a work desk, a sofa, a flat-screen TV, and free Wi-Fi. The bathrooms are also spacious and well-appointed, with walk-in showers and bathtubs.', '<p>The rooms are decorated in a modern style with neutral colors and simple furnishings. The windows offer plenty of natural light, and the views are often stunning. The rooms are also equipped with all the amenities you need to relax and unwind, including a minibar, a coffee maker, and an iron and ironing board.</p>\r\n<p>Here are some specific amenities that you can expect to find in these rooms:</p>\r\n<ul>\r\n<li>King-size bed</li>\r\n<li>Work desk</li>\r\n<li>Sofa</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Walk-in shower</li>\r\n<li>Bathtub</li>\r\n<li>Minibar</li>\r\n<li>Coffee maker</li>\r\n<li>Iron and ironing board</li>\r\n</ul>\r\n<p>These rooms are perfect for couples, business travelers, or families. They are spacious and comfortable, and they offer all the amenities you need to make your stay enjoyable.</p>', NULL, NULL, '2025-04-30 11:21:53', '2025-04-30 11:21:53'),
(72, 83, 133, 38, 'غرف فسيحة مع جميع وسائل الراحة', 'ghrf-fsyh-maa-gmyaa-osayl-alrah', 'توفر هذه الغرف الفسيحة كل ما تحتاجه لإقامة مريحة ، بما في ذلك سرير بحجم كينغ ومكتب للعمل وأريكة وتلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية. الحمامات أيضًا فسيحة ومجهزة جيدًا مع مقصورات دش وأحواض استحمام.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرف مصممة على الطراز الحديث بألوان محايدة وأثاث بسيط. توفر النوافذ الكثير من الضوء الطبيعي ، وغالبًا ما تكون المناظر مذهلة. تم تجهيز الغرف أيضًا بجميع وسائل الراحة التي تحتاجها للاسترخاء والاسترخاء ، بما في ذلك ميني بار وماكينة صنع القهوة ومكواة وطاولة للكي.\r\n\r\nفيما يلي بعض وسائل الراحة المحددة التي يمكن أن تتوقع أن تجدها في هذه الغرف:\r\n\r\nسرير بحجم كينغ\r\nمكتب العمل\r\nكنبة\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nامشي في الحمام\r\nحوض الاستحمام\r\nميني بار\r\nصانع القهوة\r\nمكواة وطاولة كي\r\n\r\nهذه الغرف مثالية للأزواج أو المسافرين من رجال الأعمال أو العائلات. إنها فسيحة ومريحة وتوفر جميع وسائل الراحة التي تحتاجها لجعل إقامتك ممتعة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:21:53', '2025-04-30 11:21:53'),
(73, 83, 132, 39, 'Luxury Rooms for Your Next Vacation', 'luxury-rooms-for-your-next-vacation', 'Luxury rooms are the perfect way to indulge in a little bit of pampering and relaxation on your next vacation. These rooms typically offer a wide range of amenities and services, including spacious accommodations, plush bedding, private balconies or patios, and access to exclusive amenities such as spas, fitness centers, and restaurants.', '<p>Luxury rooms are designed to provide guests with the ultimate in comfort and convenience. They typically feature large, well-appointed bedrooms with king-size beds, plush linens, and luxurious bathrobes. The bathrooms are often equipped with separate soaking tubs and showers, as well as high-end toiletries.</p>\r\n<p>In addition to the spacious accommodations, luxury rooms also offer a variety of other amenities and services. These may include:</p>\r\n<ul>\r\n<li>Private balconies or patios with stunning views</li>\r\n<li>Access to exclusive amenities such as spas, fitness centers, and restaurants</li>\r\n<li>24-hour room service</li>\r\n<li>Personal butler service</li>\r\n<li>Complimentary Wi-Fi</li>\r\n<li>In-room bar</li>\r\n<li>Minibar</li>\r\n<li>Nespresso coffee machine</li>\r\n<li>Turndown service</li>\r\n</ul>\r\n<p>Whether you are looking for a romantic getaway, a family vacation, or a business trip, a luxury room is the perfect way to make your next vacation one to remember.</p>', NULL, NULL, '2025-04-30 11:24:08', '2025-04-30 11:24:08'),
(74, 83, 133, 39, 'غرف فاخرة لعطلتك القادمة', 'ghrf-fakhr-laatltk-alkadm', 'الغرف الفاخرة هي الطريقة المثلى للاستمتاع بقليل من التدليل والاسترخاء في عطلتك القادمة. تقدم هذه الغرف عادةً مجموعة واسعة من وسائل الراحة والخدمات ، بما في ذلك أماكن الإقامة الفسيحة ، والأسرة الفخمة ، والشرفات الخاصة أو الباحات ، والوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ، ومراكز اللياقة البدنية ، والمطاعم.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تصميم الغرف الفاخرة لتوفر للضيوف أقصى درجات الراحة والرفاهية. تتميز عادةً بغرف نوم كبيرة ومجهزة جيدًا مع أسرّة بحجم كينغ وبياضات فخمة وأردية حمام فاخرة. غالبًا ما تكون الحمامات مُجهزة بأحواض استحمام ودُش منفصلة ، فضلاً عن أدوات النظافة الراقية.\r\n\r\nبالإضافة إلى أماكن الإقامة الفسيحة ، توفر الغرف الفاخرة أيضًا مجموعة متنوعة من وسائل الراحة والخدمات الأخرى. قد تشمل هذه:\r\n\r\nشرفات أو أفنية خاصة مع مناظر خلابة\r\nالوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ومراكز اللياقة البدنية والمطاعم\r\nخدمة الغرف على مدار 24 ساعة\r\nخدمة الخادم الشخصي\r\nواي فاي مجاني\r\nبار في الغرفة\r\nميني بار\r\nماكينة قهوة نسبرسو\r\nخدمة ترتيب الأسرة\r\n\r\nسواء كنت تبحث عن ملاذ رومانسي أو عطلة عائلية أو رحلة عمل ، فإن الغرفة الفاخرة هي الطريقة المثلى لجعل عطلتك القادمة لا تنسى.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:24:08', '2025-04-30 11:24:08'),
(75, 84, 134, 40, 'Penthouse Suite with Private Rooftop Terrace', 'penthouse-suite-with-private-rooftop-terrace', 'This luxurious penthouse suite features a private rooftop terrace with stunning views of the city. The suite has a spacious living area with a fireplace, a fully equipped kitchen, and a master bedroom with a king-size bed and a private bathroom with a soaking tub. The suite also has a washer and dryer, and free WiFi.', '<p>The Penthouse Suite with Private Rooftop Terrace is the perfect place to relax and unwind after a long day of exploring the city. The rooftop terrace is the perfect spot to enjoy a drink or a meal while taking in the views. The suite also has everything you need to feel comfortable and at home, including a fully equipped kitchen, a washer and dryer, and free WiFi</p>\r\n<ul>\r\n<li>Spacious living area with fireplace</li>\r\n<li>Fully equipped kitchen</li>\r\n<li>Master bedroom with king-size bed</li>\r\n<li>Private bathroom with soaking tub</li>\r\n<li>Washer and dryer</li>\r\n<li>Free WiFi</li>\r\n<li>Private rooftop terrace with stunning views of the city</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-29 05:37:24', '2025-04-29 05:37:24'),
(76, 84, 135, 40, 'جناح عائلي بسريرين كوين وسرير أريكة', 'gnah-aaayly-bsryryn-koyn-osryr-aryk', 'غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي الغرفة على سريرين بحجم كوين وسرير أريكة ودش قابل للطي يمكن الوصول إليه. تشمل المرافق الأخرى في الغرفة جهاز تلفزيون بشاشة مسطحة وثلاجة صغيرة وميكروويف وماكينة صنع القهوة. الغرفة مجهزة أيضًا بخدمة الإنترنت اللاسلكي عالي السرعة.\r\n\r\nالغرفة في الطابق الأرضي ليسهل الوصول إليها.\r\nيحتوي الحمام على دش قابل للطي مع مقابض للإمساك.\r\nالغرفة ذات إطار سرير منخفض ومفاتيح إضاءة يمكن الوصول إليها.\r\nتم تجهيز الغرفة بمجموعة متنوعة من ميزات إمكانية الوصول الأخرى لجعلها مريحة للضيوف ذوي الاحتياجات الخاصة بالتنقل.\r\n\r\nإذا كنت تبحث عن غرفة فندق فسيحة يسهل الوصول إليها ، فإن غرفة الوصول إلى سريرين كوين مع سرير أريكة يعد خيارًا رائعًا. الغرفة مريحة ومجهزة جيدًا وبها جميع وسائل الراحة التي تحتاجها لإقامة مريحة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-29 05:37:25', '2025-04-29 05:37:25'),
(77, 84, 134, 41, 'Overwater Bungalow with Private Plunge Pool', 'overwater-bungalow-with-private-plunge-pool', 'An overwater bungalow with a private plunge pool is a luxurious and secluded accommodation option that offers stunning views of the ocean. These bungalows are typically built on stilts over the water, and they often have their own private deck with a plunge pool. This type of accommodation is perfect for couples or honeymooners who want a romantic and private getaway.', '<p>Overwater bungalows with private plunge pools can be quite expensive, but they are worth the price for those who want a truly luxurious and unforgettable vacation experience. Prices typically start at around $1,000 per night, but they can go much higher depending on the location and the amenities offered.</p>\r\n<p><strong>Some of the best places to stay in an overwater bungalow with a private plunge pool include:</strong></p>\r\n<ul>\r\n<li>Bora Bora, French Polynesia</li>\r\n<li>Maldives</li>\r\n<li>Fiji</li>\r\n<li>Seychelles</li>\r\n<li>Turks and Caicos</li>\r\n<li>Bahamas</li>\r\n<li>Mexico</li>\r\n<li>Indonesia</li>\r\n<li>Thailand</li>\r\n</ul>\r\n<p><strong>Conclusion</strong></p>\r\n<p>An overwater bungalow with a private plunge pool is a truly unique and unforgettable accommodation option. If you are looking for a luxurious and secluded vacation experience, then this is the perfect choice for you.</p>', NULL, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50'),
(78, 84, 135, 41, 'بنغل فوق الماء مع مسبح مغطس خاص', 'bnghl-fok-almaaa-maa-msbh-mghts-khas', 'بنغل فوق الماء مع مغطس خاص هو خيار إقامة فاخر ومنعزل يوفر إطلالات خلابة على المحيط. عادة ما يتم بناء هذه الأكواخ على ركائز متينة فوق الماء ، وغالبًا ما يكون لها سطح خاص بها مع مغطس. يعتبر هذا النوع من أماكن الإقامة مثاليًا للأزواج أو الذين يقضون شهر العسل الذين يرغبون في قضاء عطلة رومانسية وخاصة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يمكن أن تكون الأكواخ فوق الماء مع أحواض الغطس الخاصة باهظة الثمن ، لكنها تستحق السعر لمن يريدون تجربة إجازة فاخرة لا تُنسى حقًا. تبدأ الأسعار عادةً بحوالي 1000 دولار في الليلة ، لكنها يمكن أن ترتفع كثيرًا اعتمادًا على الموقع ووسائل الراحة المقدمة.\r\n\r\nتشمل بعض أفضل الأماكن للإقامة في بنغل فوق الماء مع مغطس خاص ما يلي:\r\n\r\nبورا بورا ، بولينيزيا الفرنسية\r\nجزر المالديف\r\nفيجي\r\nسيشيل\r\nتركس وكايكوس\r\nجزر البهاما\r\nالمكسيك\r\nإندونيسيا\r\nتايلاند\r\n\r\nخاتمة\r\n\r\nيعد البنغل فوق الماء مع مغطس خاص خيار إقامة فريد حقًا ولا يُنسى. إذا كنت تبحث عن تجربة إجازة فاخرة ومنعزلة ، فهذا هو الخيار الأمثل لك.</span></pre>', NULL, NULL, '2025-04-30 10:16:50', '2025-04-30 10:16:50'),
(79, 84, 134, 42, 'Hiking and Biking Suite with Mountain Views', 'hiking-and-biking-suite-with-mountain-views', 'This spacious suite is perfect for nature lovers who want to be close to the trails. It features stunning mountain views, a private balcony, and all the amenities you need for a comfortable stay, including a king-size bed, a living area with a sofa bed, a kitchenette, and a bathroom with a soaking tub.', '<p>The Hiking and Biking Suite with Mountain Views is located on the top floor of the hotel, so you\'ll enjoy stunning views of the surrounding mountains from your private balcony. The suite also features a spacious living area with a sofa bed, a kitchenette with all the essentials, and a bathroom with a soaking tub.</p>\r\n<p>The Hiking and Biking Suite with Mountain Views is the perfect place to relax and recharge after a day of exploring the great outdoors. With its comfortable accommodations, stunning views, and convenient location, this suite is sure to make your stay unforgettable.</p>\r\n<p>Here are some additional details about mountain biking:</p>\r\n<ul>\r\n<li>Mountain biking is a great way to explore the outdoors and get some exercise.</li>\r\n<li>There are many different types of mountain biking trails, from easy to challenging.</li>\r\n<li>You can mountain bike on your own or with a group.</li>\r\n<li>Mountain biking can be a great way to meet new people and make friends.</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:21:57', '2025-04-30 10:21:57'),
(80, 84, 135, 42, 'جناح المشي لمسافات طويلة وركوب الدراجات مع إطلالة على الجبل', 'gnah-almshy-lmsafat-toyl-orkob-aldragat-maa-atlal-aal-algbl', 'يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من شرفتك الخاصة. يحتوي الجناح أيضًا على منطقة جلوس واسعة مع سرير أريكة ومطبخ صغير به جميع الضروريات وحمام مع حوض استحمام.\r\n\r\nجناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل هو المكان المثالي للاسترخاء واستعادة النشاط بعد يوم من استكشاف الأماكن الرائعة في الهواء الطلق. مع أماكن الإقامة المريحة ، والمناظر الخلابة ، والموقع المناسب ، من المؤكد أن هذا الجناح سيجعل إقامتك لا تُنسى.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول ركوب الدراجات الجبلية:\r\n\r\nيعد ركوب الدراجات في الجبال طريقة رائعة لاستكشاف الهواء الطلق وممارسة بعض التمارين.\r\nهناك العديد من أنواع مسارات ركوب الدراجات الجبلية ، من السهل إلى التحدي.\r\nيمكنك ركوب الدراجة الجبلية بمفردك أو مع مجموعة.\r\nيمكن أن يكون ركوب الدراجات في الجبال طريقة رائعة لمقابلة أشخاص جدد وتكوين صداقات.</span></pre>', NULL, NULL, '2025-04-30 10:21:57', '2025-04-30 10:21:57'),
(81, 84, 134, 43, 'Pet-Friendly Room with Separate Sleeping Area for Pets', 'pet-friendly-room-with-separate-sleeping-area-for-pets', 'This room is perfect for pet owners who want to give their furry friends their own space to sleep and relax. The room features a separate sleeping area for pets, complete with a dog bed, water bowl, and food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.', '<p>The room itself is spacious and well-appointed, with a king-size bed, a sofa bed, a desk, and a flat-screen TV. The separate sleeping area for pets is located in a corner of the room and is separated by a baby gate. The area is furnished with a dog bed, a water bowl, and a food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.</p>\r\n<p>This room is a great option for pet owners who want to bring their furry friends on vacation without having to worry about finding a pet-friendly hotel. The separate sleeping area gives your pet their own space to sleep and relax, and the pet relief area makes it easy for them to go outside to do their business.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li>Maximum number of pets: 2</li>\r\n<li>Pet Policy: Pets must be leashed and/or crated at all times in public areas of the hotel.</li>\r\n<li>Amenities: Dog bed, water bowl, food bowl, pet relief area</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:35:46', '2025-04-30 10:35:46'),
(82, 84, 135, 43, 'غرفة صديقة للحيوانات الأليفة مع منطقة نوم منفصلة للحيوانات الأليفة', 'ghrf-sdyk-llhyoanat-alalyf-maa-mntk-nom-mnfsl-llhyoanat-alalyf', 'هذه الغرفة مثالية لأصحاب الحيوانات الأليفة الذين يرغبون في منح أصدقائهم الفرويين مساحة خاصة بهم للنوم والاسترخاء. تحتوي الغرفة على منطقة نوم منفصلة للحيوانات الأليفة ، مع سرير للكلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة نفسها فسيحة ومجهزة جيدًا ، وتحتوي على سرير بحجم كينغ وسرير أريكة ومكتب وتلفزيون بشاشة مسطحة. تقع منطقة النوم المنفصلة للحيوانات الأليفة في أحد أركان الغرفة ويفصل بينها بوابة الأطفال. المنطقة مفروشة بسرير كلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.\r\n\r\nتعد هذه الغرفة خيارًا رائعًا لأصحاب الحيوانات الأليفة الذين يرغبون في إحضار أصدقائهم ذوي الفراء في إجازة دون الحاجة إلى القلق بشأن العثور على فندق صديق للحيوانات الأليفة. توفر منطقة النوم المنفصلة لحيوانك الأليف مساحة خاصة به للنوم والاسترخاء ، كما أن منطقة راحة الحيوانات الأليفة تجعل من السهل عليهم الخروج إلى الخارج للقيام بأعمالهم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحد الأقصى لعدد الحيوانات الأليفة: 2\r\nسياسة الحيوانات الأليفة: يجب تقييد و / أو تخزين الحيوانات الأليفة في جميع الأوقات في المناطق العامة بالفندق.\r\nوسائل الراحة: سرير الكلب ، وعاء الماء ، وعاء الطعام ، منطقة إغاثة الحيوانات الأليفة</span></pre>', NULL, NULL, '2025-04-30 10:35:46', '2025-04-30 10:35:46'),
(83, 84, 134, 44, 'Executive Suite with Private Balcony and Views of the Mountains', 'executive-suite-with-private-balcony-and-views-of-the-mountains', 'This spacious suite features a separate living area with a sofa, a king-size bed, a private balcony with mountain views, and a fully equipped bathroom with a walk-in shower. Other amenities include a flat-screen TV, free Wi-Fi, a minibar, and a safe.', '<p>The Executive Suite is the perfect place to relax and unwind after a long day of exploring. The living area is a great place to curl up with a book or watch a movie, and the private balcony is the perfect spot to enjoy the fresh air and take in the views. The bathroom is spacious and luxurious, with a walk-in shower and a soaking tub. The suite also features a flat-screen TV, free Wi-Fi, a minibar, and a safe.</p>\r\n<ul>\r\n<li>Spacious living area with sofa</li>\r\n<li>King-size bed</li>\r\n<li>Private balcony with mountain views</li>\r\n<li>Fully equipped bathroom with walk-in shower</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Minibar</li>\r\n<li>Safe</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-30 10:38:31', '2025-04-30 10:38:31'),
(84, 84, 135, 44, 'جناح تنفيذي مع شرفة خاصة وإطلالات على الجبال', 'gnah-tnfythy-maa-shrf-khas-oatlalat-aal-algbal', 'يحتوي هذا الجناح الفسيح على منطقة معيشة منفصلة مع أريكة وسرير كينغ وشرفة خاصة مطلة على الجبل وحمام مجهز بالكامل مع مقصورة دش. تشمل المرافق الأخرى تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الجناح التنفيذي هو المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف. تعد منطقة المعيشة مكانًا رائعًا للاسترخاء مع كتاب أو مشاهدة فيلم ، والشرفة الخاصة هي المكان المثالي للاستمتاع بالهواء النقي والاستمتاع بالمناظر. الحمام واسع وفاخر مع مقصورة دش وحوض استحمام. يحتوي الجناح أيضًا على تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.\r\n\r\nمنطقة معيشة واسعة مع أريكة\r\nسرير بحجم كينغ\r\nشرفة خاصة تطل على الجبل\r\nحمام مجهز بالكامل مع مقصورة دش\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nميني بار\r\nآمن\r\n\r\nجناح إكزكيوتف هو الخيار الأمثل للأزواج أو المسافرين من رجال الأعمال الذين يريدون غرفة فاخرة وواسعة مع مناظر خلابة. يقع في منطقة هادئة بالفندق ، مما يجعله المكان المثالي للاسترخاء والراحة.</span></pre>', NULL, NULL, '2025-04-30 10:38:31', '2025-04-30 10:38:31'),
(85, 84, 134, 45, 'Family Suite with Two Bedrooms and Two Bathrooms', 'family-suite-with-two-bedrooms-and-two-bathrooms', 'This spacious suite is perfect for families or groups of friends. It features two bedrooms, each with a king-size bed, and two bathrooms with walk-in showers. There is also a living room with a sofa bed, a fully equipped kitchenette, and a dining area. The suite has a private balcony or terrace with stunning views.', '<p>The Family Suite is decorated in a modern style with comfortable furnishings. The bedrooms are both well-appointed with plush bedding, blackout curtains, and cable TV. The bathrooms are both spacious and have granite countertops, marble floors, and luxury bath amenities. The living room is a great place to relax and unwind with family and friends. It has a sofa bed, a coffee table, a flat-screen TV, and a DVD player. The kitchenette is fully equipped with a stovetop, oven, microwave, refrigerator, dishwasher, and coffee maker. There is also a dining table for six people. The suite has a private balcony or terrace with stunning views of the city, the ocean, or the mountains.</p>\r\n<ul>\r\n<li>Two king-size beds</li>\r\n<li>Two bathrooms with walk-in showers</li>\r\n<li>Living room with sofa bed, dining area, and flat-screen TV</li>\r\n<li>Fully equipped kitchenette</li>\r\n<li>Private balcony or terrace with stunning views</li>\r\n<li>Wi-Fi</li>\r\n<li>Cable TV</li>\r\n<li>Air conditioning</li>\r\n<li>Hair dryer</li>\r\n<li>Iron and ironing board</li>\r\n<li>Wake-up service</li>\r\n<li>Room service</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41');
INSERT INTO `user_room_contents` (`id`, `user_id`, `language_id`, `room_id`, `title`, `slug`, `summary`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(86, 84, 135, 45, 'جناح عائلي بغرفتي نوم وحمامين', 'gnah-aaayly-bghrfty-nom-ohmamyn', 'هذا الجناح الفسيح مثالي للعائلات أو مجموعات الأصدقاء. تحتوي على غرفتي نوم ، كل واحدة بها سرير بحجم كينغ ، وحمامين مع مقصورة دش. تتوفر أيضًا غرفة معيشة مع سرير أريكة ومطبخ صغير مجهز بالكامل ومنطقة لتناول الطعام. يحتوي الجناح على شرفة خاصة أو تراس مع مناظر خلابة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تزيين الجناح العائلي بأسلوب حديث مع أثاثات مريحة. تم تجهيز غرف النوم جيدًا مع بياضات أسرّة فاخرة وستائر معتمة وتلفزيون مع قنوات الكابل. الحمامات واسعة وبها أسطح من الغرانيت وأرضيات رخامية ومستلزمات استحمام فاخرة. تعد غرفة المعيشة مكانًا رائعًا للاسترخاء مع العائلة والأصدقاء. تحتوي على سرير أريكة وطاولة قهوة وتلفزيون بشاشة مسطحة ومشغل دي في دي. تم تجهيز المطبخ الصغير بالكامل بموقد مسطح وفرن وميكروويف وثلاجة وغسالة أطباق وماكينة صنع القهوة. توجد أيضًا طاولة طعام تتسع لستة أشخاص. يحتوي الجناح على شرفة خاصة أو تراس مع إطلالات خلابة على المدينة أو المحيط أو الجبال.\r\n\r\nسريرين بحجم كينغ\r\nحمامين مع مقصورة دش\r\nغرفة معيشة مع سرير أريكة ومنطقة لتناول الطعام وتلفزيون بشاشة مسطحة\r\nمطبخ صغير مجهز بالكامل\r\nشرفة خاصة أو تراس مع مناظر خلابة\r\nواي فاي\r\nالكيبل التلفزيوني\r\nتكيف\r\nمجفف شعر\r\nمكواة وطاولة كي\r\nخدمة الإيقاظ\r\nخدمة الغرف</span></pre>', NULL, NULL, '2025-04-30 10:41:41', '2025-04-30 10:41:41'),
(87, 84, 134, 46, 'Deluxe King Room with Soaking Tub and Complimentary Breakfast', 'deluxe-king-room-with-soaking-tub-and-complimentary-breakfast', 'This spacious room features a king-size bed, a soaking tub, a flat-screen TV, free Wi-Fi, and complimentary breakfast. It is the perfect place to relax and unwind after a long day of exploring.', '<p>The Deluxe King Room with Soaking Tub and Complimentary Breakfast is a spacious room that measures approximately 400 square feet. It features a king-size bed with a pillow-top mattress, a soaking tub, a flat-screen TV with cable channels, a desk, a chair, a mini-fridge, and a coffee maker. The room also has a private bathroom with a shower and a hair dryer.</p>\r\n<p>The room is decorated in a modern style with neutral colors. The walls are painted white and the furniture is made of dark wood. The bed is covered with a plush white comforter and the windows have blackout curtains.</p>\r\n<p>The room has free Wi-Fi and a flat-screen TV with cable channels. There is also a mini-fridge and a coffee maker in the room.</p>\r\n<p>Complimentary breakfast is served in the hotel\'s dining room each morning. The breakfast buffet typically includes eggs, bacon, sausage, pancakes, waffles, cereal, yogurt, fruit, and pastries.</p>\r\n<ul>\r\n<li>King-size bed with pillow-top mattress</li>\r\n<li>Soaking tub</li>\r\n<li>Flat-screen TV with cable channels</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Private bathroom with shower and hair dryer</li>\r\n<li>Mini-fridge</li>\r\n<li>Coffee maker</li>\r\n<li>Complimentary breakfast</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:43:52', '2025-04-30 10:43:52'),
(88, 84, 135, 46, 'غرفة ديلوكس بحجم كينغ مع حوض استحمام ووجبة إفطار مجانية', 'ghrf-dyloks-bhgm-kyngh-maa-hod-asthmam-oogb-aftar-mgany', 'تحتوي هذه الغرفة الفسيحة على سرير بحجم كينغ وحوض استحمام عميق وجهاز تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية ووجبة إفطار مجانية. إنه المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة الديلوكس كينغ مع حوض استحمام ووجبة إفطار مجانية هي غرفة فسيحة تبلغ مساحتها حوالي 400 قدم مربع. وتحتوي على سرير بحجم كينغ مع مرتبة أعلى وسائد وحوض استحمام وتلفزيون بشاشة مسطحة مع قنوات الكابل ومكتب وكرسي وثلاجة صغيرة وآلة لصنع القهوة. تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر.\r\n\r\nالغرفة مصممة على الطراز الحديث بألوان محايدة. الجدران مطلية باللون الأبيض والأثاث مصنوع من الخشب الداكن. السرير مغطى بلحفة بيضاء فخمة والنوافذ بها ستائر قاتمة.\r\n\r\nتوفر الغرفة خدمة الواي فاي المجانية وجهاز تلفزيون بشاشة مسطحة مع قنوات الكابل. توجد أيضًا ثلاجة صغيرة وماكينة صنع القهوة في الغرفة.\r\n\r\nيتم تقديم وجبة إفطار مجانية في غرفة تناول الطعام بالفندق كل صباح. يشمل بوفيه الإفطار عادة البيض ولحم الخنزير المقدد والنقانق والفطائر والفطائر والحبوب والزبادي والفواكه والمعجنات.\r\n\r\nسرير كبير الحجم مع مرتبة أعلى وسادة\r\nحوض نقع\r\nتلفزيون بشاشة مسطحة مع قنوات الكابل\r\nواى فاى مجانى\r\nحمام خاص مع دش ومجفف شعر\r\nثلاجة صغيرة\r\nصانع القهوة\r\nإفطار مجاني</span></pre>', NULL, NULL, '2025-04-30 10:43:52', '2025-04-30 10:43:52'),
(89, 84, 134, 47, 'Business Class Room with High-Speed Internet and Work Desk', 'business-class-room-with-high-speed-internet-and-work-desk', 'This room is designed for business travelers who need a comfortable place to sleep and work. It features a king-size bed, a work desk with an ergonomic chair, high-speed internet access, a microwave, a fridge, a 37-inch TV, and a Keurig coffee maker', '<p>The room is decorated in a modern style with neutral colors. The bed is made with luxurious bedding and the desk has plenty of space to spread out work materials. The high-speed internet access is perfect for staying connected with clients or colleagues. The microwave and fridge are convenient for storing snacks and drinks. The 37-inch TV provides entertainment options and the Keurig coffee maker is a great way to start the day.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li><strong>Size:</strong> The room is approximately 350 square feet.</li>\r\n<li><strong>Amenities:</strong> In addition to the amenities listed above, the room also features a private bathroom with a shower, a hair dryer, and toiletries.</li>\r\n<li><strong>Pricing:</strong> The room typically starts at \\$150 per night.</li>\r\n</ul>', NULL, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31'),
(90, 84, 135, 47, 'غرفة درجة الأعمال مع إنترنت عالي السرعة ومكتب عمل', 'ghrf-drg-alaaamal-maa-antrnt-aaaly-alsraa-omktb-aaml', 'تم تصميم هذه الغرفة للمسافرين من رجال الأعمال الذين يحتاجون إلى مكان مريح للنوم والعمل. تتميز بسرير بحجم كينغ ومكتب للعمل مع كرسي مريح وخدمة الإنترنت عالية السرعة وميكروويف وثلاجة وتلفزيون 37 بوصة وماكينة صنع القهوة Keurig', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة مصممة على الطراز الحديث بألوان محايدة. السرير مصنوع من بياضات أسرّة فاخرة والمكتب به مساحة كبيرة لنشر مواد العمل. يعد الوصول إلى الإنترنت عالي السرعة مثاليًا للبقاء على اتصال مع العملاء أو الزملاء. يعد الميكروويف والثلاجة مناسبين لتخزين الوجبات الخفيفة والمشروبات. يوفر التلفزيون مقاس 37 بوصة خيارات ترفيهية وتعد آلة صنع القهوة Keurig طريقة رائعة لبدء اليوم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحجم: تبلغ مساحة الغرفة حوالي 350 قدم مربع.\r\nوسائل الراحة: بالإضافة إلى وسائل الراحة المذكورة أعلاه ، تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر ولوازم استحمام.\r\nالتسعير: تبدأ الغرفة عادة بـ 150 دولارًا في الليلة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 10:46:31', '2025-04-30 10:46:31'),
(91, 84, 134, 48, 'Family-Friendly Rooms with Plenty of Space', 'family-friendly-rooms-with-plenty-of-space', 'Family-friendly rooms with plenty of space are perfect for families with children of all ages. These rooms offer ample space for everyone to spread out and relax, as well as amenities that make life with kids easier', '<p>Family-friendly rooms with plenty of space are typically larger than standard hotel rooms, with at least one bedroom and a separate living area. The bedrooms are often furnished with two double beds or a king-size bed, and the living area may have a sofa bed or futon for extra guests. The kitchenette is typically equipped with a stovetop, oven, refrigerator, microwave, and coffee maker. The dining area is usually small, but it\'s large enough for a family to eat together. The play area is often located in the living area and is furnished with toys and games for children. Some rooms also have a private balcony or patio where families can relax and enjoy the outdoors.</p>\r\n<p>Family-friendly rooms with plenty of space offer a number of benefits for families, including:</p>\r\n<ul>\r\n<li>More space to spread out and relax</li>\r\n<li>Amenities that make life with kids easier</li>\r\n<li>A private space for children to play</li>\r\n<li>A comfortable place for everyone to sleep</li>\r\n</ul>\r\n<p>Family-friendly rooms with plenty of space are ideal for families with children of all ages. These rooms are perfect for families who want to relax and enjoy their vacation together, without having to worry about being cramped or having to share a room with other guests.</p>', NULL, NULL, '2025-04-30 11:07:09', '2025-04-30 11:07:09'),
(92, 84, 135, 48, 'غرف صديقة للأسرة مع الكثير من المساحة', 'ghrf-sdyk-llasr-maa-alkthyr-mn-almsah', 'تعتبر الغرف المناسبة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. توفر هذه الغرف مساحة واسعة للجميع للانتشار والاسترخاء ، بالإضافة إلى وسائل الراحة التي تجعل الحياة مع الأطفال أسهل', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">عادةً ما تكون الغرف المناسبة للعائلات التي تحتوي على مساحة كبيرة أكبر من غرف الفنادق العادية ، وتحتوي على غرفة نوم واحدة على الأقل ومنطقة معيشة منفصلة. غالبًا ما تكون غرف النوم مؤثثة بسريرين مزدوجين أو سرير بحجم كينغ ، وقد تحتوي منطقة المعيشة على سرير أريكة أو فوتون للضيوف الإضافيين. عادةً ما يكون المطبخ الصغير مجهزًا بموقد مسطح وفرن وثلاجة وميكروويف وماكينة صنع القهوة. عادة ما تكون منطقة تناول الطعام صغيرة ، لكنها كبيرة بما يكفي لتناول الطعام معًا. غالبًا ما تقع منطقة اللعب في منطقة المعيشة وهي مؤثثة بالألعاب والألعاب للأطفال. تحتوي بعض الغرف أيضًا على شرفة خاصة أو فناء حيث يمكن للعائلات الاسترخاء والاستمتاع بالهواء الطلق.\r\n\r\nتوفر الغرف الملائمة للعائلات التي تتميز بمساحة كبيرة عددًا من المزايا للعائلات ، بما في ذلك:\r\n\r\nمساحة أكبر للانتشار والاسترخاء\r\nوسائل الراحة التي تجعل الحياة مع الأطفال أسهل\r\nمساحة خاصة للأطفال للعب\r\nمكان مريح ينام فيه الجميع\r\n\r\nتُعد الغرف الملائمة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. هذه الغرف مثالية للعائلات التي ترغب في الاسترخاء والاستمتاع بعطلتهم معًا ، دون الحاجة إلى القلق بشأن الازدحام أو الاضطرار إلى مشاركة الغرفة مع الضيوف الآخرين.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:07:09', '2025-04-30 11:07:09'),
(93, 84, 134, 49, 'Spacious Rooms with All the Amenities', 'spacious-rooms-with-all-the-amenities', 'These spacious rooms offer everything you need for a comfortable stay, including a king-size bed, a work desk, a sofa, a flat-screen TV, and free Wi-Fi. The bathrooms are also spacious and well-appointed, with walk-in showers and bathtubs.', '<p>The rooms are decorated in a modern style with neutral colors and simple furnishings. The windows offer plenty of natural light, and the views are often stunning. The rooms are also equipped with all the amenities you need to relax and unwind, including a minibar, a coffee maker, and an iron and ironing board.</p>\r\n<p>Here are some specific amenities that you can expect to find in these rooms:</p>\r\n<ul>\r\n<li>King-size bed</li>\r\n<li>Work desk</li>\r\n<li>Sofa</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Walk-in shower</li>\r\n<li>Bathtub</li>\r\n<li>Minibar</li>\r\n<li>Coffee maker</li>\r\n<li>Iron and ironing board</li>\r\n</ul>\r\n<p>These rooms are perfect for couples, business travelers, or families. They are spacious and comfortable, and they offer all the amenities you need to make your stay enjoyable.</p>', NULL, NULL, '2025-04-30 11:21:53', '2025-04-30 11:21:53'),
(94, 84, 135, 49, 'غرف فسيحة مع جميع وسائل الراحة', 'ghrf-fsyh-maa-gmyaa-osayl-alrah', 'توفر هذه الغرف الفسيحة كل ما تحتاجه لإقامة مريحة ، بما في ذلك سرير بحجم كينغ ومكتب للعمل وأريكة وتلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية. الحمامات أيضًا فسيحة ومجهزة جيدًا مع مقصورات دش وأحواض استحمام.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرف مصممة على الطراز الحديث بألوان محايدة وأثاث بسيط. توفر النوافذ الكثير من الضوء الطبيعي ، وغالبًا ما تكون المناظر مذهلة. تم تجهيز الغرف أيضًا بجميع وسائل الراحة التي تحتاجها للاسترخاء والاسترخاء ، بما في ذلك ميني بار وماكينة صنع القهوة ومكواة وطاولة للكي.\r\n\r\nفيما يلي بعض وسائل الراحة المحددة التي يمكن أن تتوقع أن تجدها في هذه الغرف:\r\n\r\nسرير بحجم كينغ\r\nمكتب العمل\r\nكنبة\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nامشي في الحمام\r\nحوض الاستحمام\r\nميني بار\r\nصانع القهوة\r\nمكواة وطاولة كي\r\n\r\nهذه الغرف مثالية للأزواج أو المسافرين من رجال الأعمال أو العائلات. إنها فسيحة ومريحة وتوفر جميع وسائل الراحة التي تحتاجها لجعل إقامتك ممتعة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:21:53', '2025-04-30 11:21:53'),
(95, 84, 134, 50, 'Luxury Rooms for Your Next Vacation', 'luxury-rooms-for-your-next-vacation', 'Luxury rooms are the perfect way to indulge in a little bit of pampering and relaxation on your next vacation. These rooms typically offer a wide range of amenities and services, including spacious accommodations, plush bedding, private balconies or patios, and access to exclusive amenities such as spas, fitness centers, and restaurants.', '<p>Luxury rooms are designed to provide guests with the ultimate in comfort and convenience. They typically feature large, well-appointed bedrooms with king-size beds, plush linens, and luxurious bathrobes. The bathrooms are often equipped with separate soaking tubs and showers, as well as high-end toiletries.</p>\r\n<p>In addition to the spacious accommodations, luxury rooms also offer a variety of other amenities and services. These may include:</p>\r\n<ul>\r\n<li>Private balconies or patios with stunning views</li>\r\n<li>Access to exclusive amenities such as spas, fitness centers, and restaurants</li>\r\n<li>24-hour room service</li>\r\n<li>Personal butler service</li>\r\n<li>Complimentary Wi-Fi</li>\r\n<li>In-room bar</li>\r\n<li>Minibar</li>\r\n<li>Nespresso coffee machine</li>\r\n<li>Turndown service</li>\r\n</ul>\r\n<p>Whether you are looking for a romantic getaway, a family vacation, or a business trip, a luxury room is the perfect way to make your next vacation one to remember.</p>', NULL, NULL, '2025-04-30 11:24:08', '2025-04-30 11:24:08'),
(96, 84, 135, 50, 'غرف فاخرة لعطلتك القادمة', 'ghrf-fakhr-laatltk-alkadm', 'الغرف الفاخرة هي الطريقة المثلى للاستمتاع بقليل من التدليل والاسترخاء في عطلتك القادمة. تقدم هذه الغرف عادةً مجموعة واسعة من وسائل الراحة والخدمات ، بما في ذلك أماكن الإقامة الفسيحة ، والأسرة الفخمة ، والشرفات الخاصة أو الباحات ، والوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ، ومراكز اللياقة البدنية ، والمطاعم.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تصميم الغرف الفاخرة لتوفر للضيوف أقصى درجات الراحة والرفاهية. تتميز عادةً بغرف نوم كبيرة ومجهزة جيدًا مع أسرّة بحجم كينغ وبياضات فخمة وأردية حمام فاخرة. غالبًا ما تكون الحمامات مُجهزة بأحواض استحمام ودُش منفصلة ، فضلاً عن أدوات النظافة الراقية.\r\n\r\nبالإضافة إلى أماكن الإقامة الفسيحة ، توفر الغرف الفاخرة أيضًا مجموعة متنوعة من وسائل الراحة والخدمات الأخرى. قد تشمل هذه:\r\n\r\nشرفات أو أفنية خاصة مع مناظر خلابة\r\nالوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ومراكز اللياقة البدنية والمطاعم\r\nخدمة الغرف على مدار 24 ساعة\r\nخدمة الخادم الشخصي\r\nواي فاي مجاني\r\nبار في الغرفة\r\nميني بار\r\nماكينة قهوة نسبرسو\r\nخدمة ترتيب الأسرة\r\n\r\nسواء كنت تبحث عن ملاذ رومانسي أو عطلة عائلية أو رحلة عمل ، فإن الغرفة الفاخرة هي الطريقة المثلى لجعل عطلتك القادمة لا تنسى.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 11:24:08', '2025-04-30 11:24:08'),
(97, 85, 136, 51, 'Penthouse Suite with Private Rooftop Terrace', 'penthouse-suite-with-private-rooftop-terrace', 'This luxurious penthouse suite features a private rooftop terrace with stunning views of the city. The suite has a spacious living area with a fireplace, a fully equipped kitchen, and a master bedroom with a king-size bed and a private bathroom with a soaking tub. The suite also has a washer and dryer, and free WiFi.', '<p>The Penthouse Suite with Private Rooftop Terrace is the perfect place to relax and unwind after a long day of exploring the city. The rooftop terrace is the perfect spot to enjoy a drink or a meal while taking in the views. The suite also has everything you need to feel comfortable and at home, including a fully equipped kitchen, a washer and dryer, and free WiFi</p>\r\n<ul>\r\n<li>Spacious living area with fireplace</li>\r\n<li>Fully equipped kitchen</li>\r\n<li>Master bedroom with king-size bed</li>\r\n<li>Private bathroom with soaking tub</li>\r\n<li>Washer and dryer</li>\r\n<li>Free WiFi</li>\r\n<li>Private rooftop terrace with stunning views of the city</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-28 23:37:24', '2025-04-28 23:37:24'),
(98, 85, 137, 51, 'جناح عائلي بسريرين كوين وسرير أريكة', 'gnah-aaayly-bsryryn-koyn-osryr-aryk', 'غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي الغرفة على سريرين بحجم كوين وسرير أريكة ودش قابل للطي يمكن الوصول إليه. تشمل المرافق الأخرى في الغرفة جهاز تلفزيون بشاشة مسطحة وثلاجة صغيرة وميكروويف وماكينة صنع القهوة. الغرفة مجهزة أيضًا بخدمة الإنترنت اللاسلكي عالي السرعة.\r\n\r\nالغرفة في الطابق الأرضي ليسهل الوصول إليها.\r\nيحتوي الحمام على دش قابل للطي مع مقابض للإمساك.\r\nالغرفة ذات إطار سرير منخفض ومفاتيح إضاءة يمكن الوصول إليها.\r\nتم تجهيز الغرفة بمجموعة متنوعة من ميزات إمكانية الوصول الأخرى لجعلها مريحة للضيوف ذوي الاحتياجات الخاصة بالتنقل.\r\n\r\nإذا كنت تبحث عن غرفة فندق فسيحة يسهل الوصول إليها ، فإن غرفة الوصول إلى سريرين كوين مع سرير أريكة يعد خيارًا رائعًا. الغرفة مريحة ومجهزة جيدًا وبها جميع وسائل الراحة التي تحتاجها لإقامة مريحة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-28 23:37:25', '2025-04-28 23:37:25'),
(99, 85, 136, 52, 'Overwater Bungalow with Private Plunge Pool', 'overwater-bungalow-with-private-plunge-pool', 'An overwater bungalow with a private plunge pool is a luxurious and secluded accommodation option that offers stunning views of the ocean. These bungalows are typically built on stilts over the water, and they often have their own private deck with a plunge pool. This type of accommodation is perfect for couples or honeymooners who want a romantic and private getaway.', '<p>Overwater bungalows with private plunge pools can be quite expensive, but they are worth the price for those who want a truly luxurious and unforgettable vacation experience. Prices typically start at around $1,000 per night, but they can go much higher depending on the location and the amenities offered.</p>\r\n<p><strong>Some of the best places to stay in an overwater bungalow with a private plunge pool include:</strong></p>\r\n<ul>\r\n<li>Bora Bora, French Polynesia</li>\r\n<li>Maldives</li>\r\n<li>Fiji</li>\r\n<li>Seychelles</li>\r\n<li>Turks and Caicos</li>\r\n<li>Bahamas</li>\r\n<li>Mexico</li>\r\n<li>Indonesia</li>\r\n<li>Thailand</li>\r\n</ul>\r\n<p><strong>Conclusion</strong></p>\r\n<p>An overwater bungalow with a private plunge pool is a truly unique and unforgettable accommodation option. If you are looking for a luxurious and secluded vacation experience, then this is the perfect choice for you.</p>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(100, 85, 137, 52, 'بنغل فوق الماء مع مسبح مغطس خاص', 'bnghl-fok-almaaa-maa-msbh-mghts-khas', 'بنغل فوق الماء مع مغطس خاص هو خيار إقامة فاخر ومنعزل يوفر إطلالات خلابة على المحيط. عادة ما يتم بناء هذه الأكواخ على ركائز متينة فوق الماء ، وغالبًا ما يكون لها سطح خاص بها مع مغطس. يعتبر هذا النوع من أماكن الإقامة مثاليًا للأزواج أو الذين يقضون شهر العسل الذين يرغبون في قضاء عطلة رومانسية وخاصة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يمكن أن تكون الأكواخ فوق الماء مع أحواض الغطس الخاصة باهظة الثمن ، لكنها تستحق السعر لمن يريدون تجربة إجازة فاخرة لا تُنسى حقًا. تبدأ الأسعار عادةً بحوالي 1000 دولار في الليلة ، لكنها يمكن أن ترتفع كثيرًا اعتمادًا على الموقع ووسائل الراحة المقدمة.\r\n\r\nتشمل بعض أفضل الأماكن للإقامة في بنغل فوق الماء مع مغطس خاص ما يلي:\r\n\r\nبورا بورا ، بولينيزيا الفرنسية\r\nجزر المالديف\r\nفيجي\r\nسيشيل\r\nتركس وكايكوس\r\nجزر البهاما\r\nالمكسيك\r\nإندونيسيا\r\nتايلاند\r\n\r\nخاتمة\r\n\r\nيعد البنغل فوق الماء مع مغطس خاص خيار إقامة فريد حقًا ولا يُنسى. إذا كنت تبحث عن تجربة إجازة فاخرة ومنعزلة ، فهذا هو الخيار الأمثل لك.</span></pre>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(101, 85, 136, 53, 'Hiking and Biking Suite with Mountain Views', 'hiking-and-biking-suite-with-mountain-views', 'This spacious suite is perfect for nature lovers who want to be close to the trails. It features stunning mountain views, a private balcony, and all the amenities you need for a comfortable stay, including a king-size bed, a living area with a sofa bed, a kitchenette, and a bathroom with a soaking tub.', '<p>The Hiking and Biking Suite with Mountain Views is located on the top floor of the hotel, so you\'ll enjoy stunning views of the surrounding mountains from your private balcony. The suite also features a spacious living area with a sofa bed, a kitchenette with all the essentials, and a bathroom with a soaking tub.</p>\r\n<p>The Hiking and Biking Suite with Mountain Views is the perfect place to relax and recharge after a day of exploring the great outdoors. With its comfortable accommodations, stunning views, and convenient location, this suite is sure to make your stay unforgettable.</p>\r\n<p>Here are some additional details about mountain biking:</p>\r\n<ul>\r\n<li>Mountain biking is a great way to explore the outdoors and get some exercise.</li>\r\n<li>There are many different types of mountain biking trails, from easy to challenging.</li>\r\n<li>You can mountain bike on your own or with a group.</li>\r\n<li>Mountain biking can be a great way to meet new people and make friends.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(102, 85, 137, 53, 'جناح المشي لمسافات طويلة وركوب الدراجات مع إطلالة على الجبل', 'gnah-almshy-lmsafat-toyl-orkob-aldragat-maa-atlal-aal-algbl', 'يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من شرفتك الخاصة. يحتوي الجناح أيضًا على منطقة جلوس واسعة مع سرير أريكة ومطبخ صغير به جميع الضروريات وحمام مع حوض استحمام.\r\n\r\nجناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل هو المكان المثالي للاسترخاء واستعادة النشاط بعد يوم من استكشاف الأماكن الرائعة في الهواء الطلق. مع أماكن الإقامة المريحة ، والمناظر الخلابة ، والموقع المناسب ، من المؤكد أن هذا الجناح سيجعل إقامتك لا تُنسى.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول ركوب الدراجات الجبلية:\r\n\r\nيعد ركوب الدراجات في الجبال طريقة رائعة لاستكشاف الهواء الطلق وممارسة بعض التمارين.\r\nهناك العديد من أنواع مسارات ركوب الدراجات الجبلية ، من السهل إلى التحدي.\r\nيمكنك ركوب الدراجة الجبلية بمفردك أو مع مجموعة.\r\nيمكن أن يكون ركوب الدراجات في الجبال طريقة رائعة لمقابلة أشخاص جدد وتكوين صداقات.</span></pre>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(103, 85, 136, 54, 'Pet-Friendly Room with Separate Sleeping Area for Pets', 'pet-friendly-room-with-separate-sleeping-area-for-pets', 'This room is perfect for pet owners who want to give their furry friends their own space to sleep and relax. The room features a separate sleeping area for pets, complete with a dog bed, water bowl, and food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.', '<p>The room itself is spacious and well-appointed, with a king-size bed, a sofa bed, a desk, and a flat-screen TV. The separate sleeping area for pets is located in a corner of the room and is separated by a baby gate. The area is furnished with a dog bed, a water bowl, and a food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.</p>\r\n<p>This room is a great option for pet owners who want to bring their furry friends on vacation without having to worry about finding a pet-friendly hotel. The separate sleeping area gives your pet their own space to sleep and relax, and the pet relief area makes it easy for them to go outside to do their business.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li>Maximum number of pets: 2</li>\r\n<li>Pet Policy: Pets must be leashed and/or crated at all times in public areas of the hotel.</li>\r\n<li>Amenities: Dog bed, water bowl, food bowl, pet relief area</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(104, 85, 137, 54, 'غرفة صديقة للحيوانات الأليفة مع منطقة نوم منفصلة للحيوانات الأليفة', 'ghrf-sdyk-llhyoanat-alalyf-maa-mntk-nom-mnfsl-llhyoanat-alalyf', 'هذه الغرفة مثالية لأصحاب الحيوانات الأليفة الذين يرغبون في منح أصدقائهم الفرويين مساحة خاصة بهم للنوم والاسترخاء. تحتوي الغرفة على منطقة نوم منفصلة للحيوانات الأليفة ، مع سرير للكلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة نفسها فسيحة ومجهزة جيدًا ، وتحتوي على سرير بحجم كينغ وسرير أريكة ومكتب وتلفزيون بشاشة مسطحة. تقع منطقة النوم المنفصلة للحيوانات الأليفة في أحد أركان الغرفة ويفصل بينها بوابة الأطفال. المنطقة مفروشة بسرير كلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.\r\n\r\nتعد هذه الغرفة خيارًا رائعًا لأصحاب الحيوانات الأليفة الذين يرغبون في إحضار أصدقائهم ذوي الفراء في إجازة دون الحاجة إلى القلق بشأن العثور على فندق صديق للحيوانات الأليفة. توفر منطقة النوم المنفصلة لحيوانك الأليف مساحة خاصة به للنوم والاسترخاء ، كما أن منطقة راحة الحيوانات الأليفة تجعل من السهل عليهم الخروج إلى الخارج للقيام بأعمالهم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحد الأقصى لعدد الحيوانات الأليفة: 2\r\nسياسة الحيوانات الأليفة: يجب تقييد و / أو تخزين الحيوانات الأليفة في جميع الأوقات في المناطق العامة بالفندق.\r\nوسائل الراحة: سرير الكلب ، وعاء الماء ، وعاء الطعام ، منطقة إغاثة الحيوانات الأليفة</span></pre>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(105, 85, 136, 55, 'Executive Suite with Private Balcony and Views of the Mountains', 'executive-suite-with-private-balcony-and-views-of-the-mountains', 'This spacious suite features a separate living area with a sofa, a king-size bed, a private balcony with mountain views, and a fully equipped bathroom with a walk-in shower. Other amenities include a flat-screen TV, free Wi-Fi, a minibar, and a safe.', '<p>The Executive Suite is the perfect place to relax and unwind after a long day of exploring. The living area is a great place to curl up with a book or watch a movie, and the private balcony is the perfect spot to enjoy the fresh air and take in the views. The bathroom is spacious and luxurious, with a walk-in shower and a soaking tub. The suite also features a flat-screen TV, free Wi-Fi, a minibar, and a safe.</p>\r\n<ul>\r\n<li>Spacious living area with sofa</li>\r\n<li>King-size bed</li>\r\n<li>Private balcony with mountain views</li>\r\n<li>Fully equipped bathroom with walk-in shower</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Minibar</li>\r\n<li>Safe</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(106, 85, 137, 55, 'جناح تنفيذي مع شرفة خاصة وإطلالات على الجبال', 'gnah-tnfythy-maa-shrf-khas-oatlalat-aal-algbal', 'يحتوي هذا الجناح الفسيح على منطقة معيشة منفصلة مع أريكة وسرير كينغ وشرفة خاصة مطلة على الجبل وحمام مجهز بالكامل مع مقصورة دش. تشمل المرافق الأخرى تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الجناح التنفيذي هو المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف. تعد منطقة المعيشة مكانًا رائعًا للاسترخاء مع كتاب أو مشاهدة فيلم ، والشرفة الخاصة هي المكان المثالي للاستمتاع بالهواء النقي والاستمتاع بالمناظر. الحمام واسع وفاخر مع مقصورة دش وحوض استحمام. يحتوي الجناح أيضًا على تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.\r\n\r\nمنطقة معيشة واسعة مع أريكة\r\nسرير بحجم كينغ\r\nشرفة خاصة تطل على الجبل\r\nحمام مجهز بالكامل مع مقصورة دش\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nميني بار\r\nآمن\r\n\r\nجناح إكزكيوتف هو الخيار الأمثل للأزواج أو المسافرين من رجال الأعمال الذين يريدون غرفة فاخرة وواسعة مع مناظر خلابة. يقع في منطقة هادئة بالفندق ، مما يجعله المكان المثالي للاسترخاء والراحة.</span></pre>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(107, 85, 136, 56, 'Family Suite with Two Bedrooms and Two Bathrooms', 'family-suite-with-two-bedrooms-and-two-bathrooms', 'This spacious suite is perfect for families or groups of friends. It features two bedrooms, each with a king-size bed, and two bathrooms with walk-in showers. There is also a living room with a sofa bed, a fully equipped kitchenette, and a dining area. The suite has a private balcony or terrace with stunning views.', '<p>The Family Suite is decorated in a modern style with comfortable furnishings. The bedrooms are both well-appointed with plush bedding, blackout curtains, and cable TV. The bathrooms are both spacious and have granite countertops, marble floors, and luxury bath amenities. The living room is a great place to relax and unwind with family and friends. It has a sofa bed, a coffee table, a flat-screen TV, and a DVD player. The kitchenette is fully equipped with a stovetop, oven, microwave, refrigerator, dishwasher, and coffee maker. There is also a dining table for six people. The suite has a private balcony or terrace with stunning views of the city, the ocean, or the mountains.</p>\r\n<ul>\r\n<li>Two king-size beds</li>\r\n<li>Two bathrooms with walk-in showers</li>\r\n<li>Living room with sofa bed, dining area, and flat-screen TV</li>\r\n<li>Fully equipped kitchenette</li>\r\n<li>Private balcony or terrace with stunning views</li>\r\n<li>Wi-Fi</li>\r\n<li>Cable TV</li>\r\n<li>Air conditioning</li>\r\n<li>Hair dryer</li>\r\n<li>Iron and ironing board</li>\r\n<li>Wake-up service</li>\r\n<li>Room service</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41'),
(108, 85, 137, 56, 'جناح عائلي بغرفتي نوم وحمامين', 'gnah-aaayly-bghrfty-nom-ohmamyn', 'هذا الجناح الفسيح مثالي للعائلات أو مجموعات الأصدقاء. تحتوي على غرفتي نوم ، كل واحدة بها سرير بحجم كينغ ، وحمامين مع مقصورة دش. تتوفر أيضًا غرفة معيشة مع سرير أريكة ومطبخ صغير مجهز بالكامل ومنطقة لتناول الطعام. يحتوي الجناح على شرفة خاصة أو تراس مع مناظر خلابة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تزيين الجناح العائلي بأسلوب حديث مع أثاثات مريحة. تم تجهيز غرف النوم جيدًا مع بياضات أسرّة فاخرة وستائر معتمة وتلفزيون مع قنوات الكابل. الحمامات واسعة وبها أسطح من الغرانيت وأرضيات رخامية ومستلزمات استحمام فاخرة. تعد غرفة المعيشة مكانًا رائعًا للاسترخاء مع العائلة والأصدقاء. تحتوي على سرير أريكة وطاولة قهوة وتلفزيون بشاشة مسطحة ومشغل دي في دي. تم تجهيز المطبخ الصغير بالكامل بموقد مسطح وفرن وميكروويف وثلاجة وغسالة أطباق وماكينة صنع القهوة. توجد أيضًا طاولة طعام تتسع لستة أشخاص. يحتوي الجناح على شرفة خاصة أو تراس مع إطلالات خلابة على المدينة أو المحيط أو الجبال.\r\n\r\nسريرين بحجم كينغ\r\nحمامين مع مقصورة دش\r\nغرفة معيشة مع سرير أريكة ومنطقة لتناول الطعام وتلفزيون بشاشة مسطحة\r\nمطبخ صغير مجهز بالكامل\r\nشرفة خاصة أو تراس مع مناظر خلابة\r\nواي فاي\r\nالكيبل التلفزيوني\r\nتكيف\r\nمجفف شعر\r\nمكواة وطاولة كي\r\nخدمة الإيقاظ\r\nخدمة الغرف</span></pre>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41'),
(109, 85, 136, 57, 'Deluxe King Room with Soaking Tub and Complimentary Breakfast', 'deluxe-king-room-with-soaking-tub-and-complimentary-breakfast', 'This spacious room features a king-size bed, a soaking tub, a flat-screen TV, free Wi-Fi, and complimentary breakfast. It is the perfect place to relax and unwind after a long day of exploring.', '<p>The Deluxe King Room with Soaking Tub and Complimentary Breakfast is a spacious room that measures approximately 400 square feet. It features a king-size bed with a pillow-top mattress, a soaking tub, a flat-screen TV with cable channels, a desk, a chair, a mini-fridge, and a coffee maker. The room also has a private bathroom with a shower and a hair dryer.</p>\r\n<p>The room is decorated in a modern style with neutral colors. The walls are painted white and the furniture is made of dark wood. The bed is covered with a plush white comforter and the windows have blackout curtains.</p>\r\n<p>The room has free Wi-Fi and a flat-screen TV with cable channels. There is also a mini-fridge and a coffee maker in the room.</p>\r\n<p>Complimentary breakfast is served in the hotel\'s dining room each morning. The breakfast buffet typically includes eggs, bacon, sausage, pancakes, waffles, cereal, yogurt, fruit, and pastries.</p>\r\n<ul>\r\n<li>King-size bed with pillow-top mattress</li>\r\n<li>Soaking tub</li>\r\n<li>Flat-screen TV with cable channels</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Private bathroom with shower and hair dryer</li>\r\n<li>Mini-fridge</li>\r\n<li>Coffee maker</li>\r\n<li>Complimentary breakfast</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(110, 85, 137, 57, 'غرفة ديلوكس بحجم كينغ مع حوض استحمام ووجبة إفطار مجانية', 'ghrf-dyloks-bhgm-kyngh-maa-hod-asthmam-oogb-aftar-mgany', 'تحتوي هذه الغرفة الفسيحة على سرير بحجم كينغ وحوض استحمام عميق وجهاز تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية ووجبة إفطار مجانية. إنه المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة الديلوكس كينغ مع حوض استحمام ووجبة إفطار مجانية هي غرفة فسيحة تبلغ مساحتها حوالي 400 قدم مربع. وتحتوي على سرير بحجم كينغ مع مرتبة أعلى وسائد وحوض استحمام وتلفزيون بشاشة مسطحة مع قنوات الكابل ومكتب وكرسي وثلاجة صغيرة وآلة لصنع القهوة. تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر.\r\n\r\nالغرفة مصممة على الطراز الحديث بألوان محايدة. الجدران مطلية باللون الأبيض والأثاث مصنوع من الخشب الداكن. السرير مغطى بلحفة بيضاء فخمة والنوافذ بها ستائر قاتمة.\r\n\r\nتوفر الغرفة خدمة الواي فاي المجانية وجهاز تلفزيون بشاشة مسطحة مع قنوات الكابل. توجد أيضًا ثلاجة صغيرة وماكينة صنع القهوة في الغرفة.\r\n\r\nيتم تقديم وجبة إفطار مجانية في غرفة تناول الطعام بالفندق كل صباح. يشمل بوفيه الإفطار عادة البيض ولحم الخنزير المقدد والنقانق والفطائر والفطائر والحبوب والزبادي والفواكه والمعجنات.\r\n\r\nسرير كبير الحجم مع مرتبة أعلى وسادة\r\nحوض نقع\r\nتلفزيون بشاشة مسطحة مع قنوات الكابل\r\nواى فاى مجانى\r\nحمام خاص مع دش ومجفف شعر\r\nثلاجة صغيرة\r\nصانع القهوة\r\nإفطار مجاني</span></pre>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(111, 85, 136, 58, 'Business Class Room with High-Speed Internet and Work Desk', 'business-class-room-with-high-speed-internet-and-work-desk', 'This room is designed for business travelers who need a comfortable place to sleep and work. It features a king-size bed, a work desk with an ergonomic chair, high-speed internet access, a microwave, a fridge, a 37-inch TV, and a Keurig coffee maker', '<p>The room is decorated in a modern style with neutral colors. The bed is made with luxurious bedding and the desk has plenty of space to spread out work materials. The high-speed internet access is perfect for staying connected with clients or colleagues. The microwave and fridge are convenient for storing snacks and drinks. The 37-inch TV provides entertainment options and the Keurig coffee maker is a great way to start the day.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li><strong>Size:</strong> The room is approximately 350 square feet.</li>\r\n<li><strong>Amenities:</strong> In addition to the amenities listed above, the room also features a private bathroom with a shower, a hair dryer, and toiletries.</li>\r\n<li><strong>Pricing:</strong> The room typically starts at \\$150 per night.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(112, 85, 137, 58, 'غرفة درجة الأعمال مع إنترنت عالي السرعة ومكتب عمل', 'ghrf-drg-alaaamal-maa-antrnt-aaaly-alsraa-omktb-aaml', 'تم تصميم هذه الغرفة للمسافرين من رجال الأعمال الذين يحتاجون إلى مكان مريح للنوم والعمل. تتميز بسرير بحجم كينغ ومكتب للعمل مع كرسي مريح وخدمة الإنترنت عالية السرعة وميكروويف وثلاجة وتلفزيون 37 بوصة وماكينة صنع القهوة Keurig', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة مصممة على الطراز الحديث بألوان محايدة. السرير مصنوع من بياضات أسرّة فاخرة والمكتب به مساحة كبيرة لنشر مواد العمل. يعد الوصول إلى الإنترنت عالي السرعة مثاليًا للبقاء على اتصال مع العملاء أو الزملاء. يعد الميكروويف والثلاجة مناسبين لتخزين الوجبات الخفيفة والمشروبات. يوفر التلفزيون مقاس 37 بوصة خيارات ترفيهية وتعد آلة صنع القهوة Keurig طريقة رائعة لبدء اليوم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحجم: تبلغ مساحة الغرفة حوالي 350 قدم مربع.\r\nوسائل الراحة: بالإضافة إلى وسائل الراحة المذكورة أعلاه ، تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر ولوازم استحمام.\r\nالتسعير: تبدأ الغرفة عادة بـ 150 دولارًا في الليلة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(113, 85, 136, 59, 'Family-Friendly Rooms with Plenty of Space', 'family-friendly-rooms-with-plenty-of-space', 'Family-friendly rooms with plenty of space are perfect for families with children of all ages. These rooms offer ample space for everyone to spread out and relax, as well as amenities that make life with kids easier', '<p>Family-friendly rooms with plenty of space are typically larger than standard hotel rooms, with at least one bedroom and a separate living area. The bedrooms are often furnished with two double beds or a king-size bed, and the living area may have a sofa bed or futon for extra guests. The kitchenette is typically equipped with a stovetop, oven, refrigerator, microwave, and coffee maker. The dining area is usually small, but it\'s large enough for a family to eat together. The play area is often located in the living area and is furnished with toys and games for children. Some rooms also have a private balcony or patio where families can relax and enjoy the outdoors.</p>\r\n<p>Family-friendly rooms with plenty of space offer a number of benefits for families, including:</p>\r\n<ul>\r\n<li>More space to spread out and relax</li>\r\n<li>Amenities that make life with kids easier</li>\r\n<li>A private space for children to play</li>\r\n<li>A comfortable place for everyone to sleep</li>\r\n</ul>\r\n<p>Family-friendly rooms with plenty of space are ideal for families with children of all ages. These rooms are perfect for families who want to relax and enjoy their vacation together, without having to worry about being cramped or having to share a room with other guests.</p>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(114, 85, 137, 59, 'غرف صديقة للأسرة مع الكثير من المساحة', 'ghrf-sdyk-llasr-maa-alkthyr-mn-almsah', 'تعتبر الغرف المناسبة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. توفر هذه الغرف مساحة واسعة للجميع للانتشار والاسترخاء ، بالإضافة إلى وسائل الراحة التي تجعل الحياة مع الأطفال أسهل', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">عادةً ما تكون الغرف المناسبة للعائلات التي تحتوي على مساحة كبيرة أكبر من غرف الفنادق العادية ، وتحتوي على غرفة نوم واحدة على الأقل ومنطقة معيشة منفصلة. غالبًا ما تكون غرف النوم مؤثثة بسريرين مزدوجين أو سرير بحجم كينغ ، وقد تحتوي منطقة المعيشة على سرير أريكة أو فوتون للضيوف الإضافيين. عادةً ما يكون المطبخ الصغير مجهزًا بموقد مسطح وفرن وثلاجة وميكروويف وماكينة صنع القهوة. عادة ما تكون منطقة تناول الطعام صغيرة ، لكنها كبيرة بما يكفي لتناول الطعام معًا. غالبًا ما تقع منطقة اللعب في منطقة المعيشة وهي مؤثثة بالألعاب والألعاب للأطفال. تحتوي بعض الغرف أيضًا على شرفة خاصة أو فناء حيث يمكن للعائلات الاسترخاء والاستمتاع بالهواء الطلق.\r\n\r\nتوفر الغرف الملائمة للعائلات التي تتميز بمساحة كبيرة عددًا من المزايا للعائلات ، بما في ذلك:\r\n\r\nمساحة أكبر للانتشار والاسترخاء\r\nوسائل الراحة التي تجعل الحياة مع الأطفال أسهل\r\nمساحة خاصة للأطفال للعب\r\nمكان مريح ينام فيه الجميع\r\n\r\nتُعد الغرف الملائمة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. هذه الغرف مثالية للعائلات التي ترغب في الاسترخاء والاستمتاع بعطلتهم معًا ، دون الحاجة إلى القلق بشأن الازدحام أو الاضطرار إلى مشاركة الغرفة مع الضيوف الآخرين.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(115, 85, 136, 60, 'Spacious Rooms with All the Amenities', 'spacious-rooms-with-all-the-amenities', 'These spacious rooms offer everything you need for a comfortable stay, including a king-size bed, a work desk, a sofa, a flat-screen TV, and free Wi-Fi. The bathrooms are also spacious and well-appointed, with walk-in showers and bathtubs.', '<p>The rooms are decorated in a modern style with neutral colors and simple furnishings. The windows offer plenty of natural light, and the views are often stunning. The rooms are also equipped with all the amenities you need to relax and unwind, including a minibar, a coffee maker, and an iron and ironing board.</p>\r\n<p>Here are some specific amenities that you can expect to find in these rooms:</p>\r\n<ul>\r\n<li>King-size bed</li>\r\n<li>Work desk</li>\r\n<li>Sofa</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Walk-in shower</li>\r\n<li>Bathtub</li>\r\n<li>Minibar</li>\r\n<li>Coffee maker</li>\r\n<li>Iron and ironing board</li>\r\n</ul>\r\n<p>These rooms are perfect for couples, business travelers, or families. They are spacious and comfortable, and they offer all the amenities you need to make your stay enjoyable.</p>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(116, 85, 137, 60, 'غرف فسيحة مع جميع وسائل الراحة', 'ghrf-fsyh-maa-gmyaa-osayl-alrah', 'توفر هذه الغرف الفسيحة كل ما تحتاجه لإقامة مريحة ، بما في ذلك سرير بحجم كينغ ومكتب للعمل وأريكة وتلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية. الحمامات أيضًا فسيحة ومجهزة جيدًا مع مقصورات دش وأحواض استحمام.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرف مصممة على الطراز الحديث بألوان محايدة وأثاث بسيط. توفر النوافذ الكثير من الضوء الطبيعي ، وغالبًا ما تكون المناظر مذهلة. تم تجهيز الغرف أيضًا بجميع وسائل الراحة التي تحتاجها للاسترخاء والاسترخاء ، بما في ذلك ميني بار وماكينة صنع القهوة ومكواة وطاولة للكي.\r\n\r\nفيما يلي بعض وسائل الراحة المحددة التي يمكن أن تتوقع أن تجدها في هذه الغرف:\r\n\r\nسرير بحجم كينغ\r\nمكتب العمل\r\nكنبة\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nامشي في الحمام\r\nحوض الاستحمام\r\nميني بار\r\nصانع القهوة\r\nمكواة وطاولة كي\r\n\r\nهذه الغرف مثالية للأزواج أو المسافرين من رجال الأعمال أو العائلات. إنها فسيحة ومريحة وتوفر جميع وسائل الراحة التي تحتاجها لجعل إقامتك ممتعة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(117, 85, 136, 61, 'Luxury Rooms for Your Next Vacation', 'luxury-rooms-for-your-next-vacation', 'Luxury rooms are the perfect way to indulge in a little bit of pampering and relaxation on your next vacation. These rooms typically offer a wide range of amenities and services, including spacious accommodations, plush bedding, private balconies or patios, and access to exclusive amenities such as spas, fitness centers, and restaurants.', '<p>Luxury rooms are designed to provide guests with the ultimate in comfort and convenience. They typically feature large, well-appointed bedrooms with king-size beds, plush linens, and luxurious bathrobes. The bathrooms are often equipped with separate soaking tubs and showers, as well as high-end toiletries.</p>\r\n<p>In addition to the spacious accommodations, luxury rooms also offer a variety of other amenities and services. These may include:</p>\r\n<ul>\r\n<li>Private balconies or patios with stunning views</li>\r\n<li>Access to exclusive amenities such as spas, fitness centers, and restaurants</li>\r\n<li>24-hour room service</li>\r\n<li>Personal butler service</li>\r\n<li>Complimentary Wi-Fi</li>\r\n<li>In-room bar</li>\r\n<li>Minibar</li>\r\n<li>Nespresso coffee machine</li>\r\n<li>Turndown service</li>\r\n</ul>\r\n<p>Whether you are looking for a romantic getaway, a family vacation, or a business trip, a luxury room is the perfect way to make your next vacation one to remember.</p>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08'),
(118, 85, 137, 61, 'غرف فاخرة لعطلتك القادمة', 'ghrf-fakhr-laatltk-alkadm', 'الغرف الفاخرة هي الطريقة المثلى للاستمتاع بقليل من التدليل والاسترخاء في عطلتك القادمة. تقدم هذه الغرف عادةً مجموعة واسعة من وسائل الراحة والخدمات ، بما في ذلك أماكن الإقامة الفسيحة ، والأسرة الفخمة ، والشرفات الخاصة أو الباحات ، والوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ، ومراكز اللياقة البدنية ، والمطاعم.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تصميم الغرف الفاخرة لتوفر للضيوف أقصى درجات الراحة والرفاهية. تتميز عادةً بغرف نوم كبيرة ومجهزة جيدًا مع أسرّة بحجم كينغ وبياضات فخمة وأردية حمام فاخرة. غالبًا ما تكون الحمامات مُجهزة بأحواض استحمام ودُش منفصلة ، فضلاً عن أدوات النظافة الراقية.\r\n\r\nبالإضافة إلى أماكن الإقامة الفسيحة ، توفر الغرف الفاخرة أيضًا مجموعة متنوعة من وسائل الراحة والخدمات الأخرى. قد تشمل هذه:\r\n\r\nشرفات أو أفنية خاصة مع مناظر خلابة\r\nالوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ومراكز اللياقة البدنية والمطاعم\r\nخدمة الغرف على مدار 24 ساعة\r\nخدمة الخادم الشخصي\r\nواي فاي مجاني\r\nبار في الغرفة\r\nميني بار\r\nماكينة قهوة نسبرسو\r\nخدمة ترتيب الأسرة\r\n\r\nسواء كنت تبحث عن ملاذ رومانسي أو عطلة عائلية أو رحلة عمل ، فإن الغرفة الفاخرة هي الطريقة المثلى لجعل عطلتك القادمة لا تنسى.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08');
INSERT INTO `user_room_contents` (`id`, `user_id`, `language_id`, `room_id`, `title`, `slug`, `summary`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(119, 86, 138, 62, 'Penthouse Suite with Private Rooftop Terrace', 'penthouse-suite-with-private-rooftop-terrace', 'This luxurious penthouse suite features a private rooftop terrace with stunning views of the city. The suite has a spacious living area with a fireplace, a fully equipped kitchen, and a master bedroom with a king-size bed and a private bathroom with a soaking tub. The suite also has a washer and dryer, and free WiFi.', '<p>The Penthouse Suite with Private Rooftop Terrace is the perfect place to relax and unwind after a long day of exploring the city. The rooftop terrace is the perfect spot to enjoy a drink or a meal while taking in the views. The suite also has everything you need to feel comfortable and at home, including a fully equipped kitchen, a washer and dryer, and free WiFi</p>\r\n<ul>\r\n<li>Spacious living area with fireplace</li>\r\n<li>Fully equipped kitchen</li>\r\n<li>Master bedroom with king-size bed</li>\r\n<li>Private bathroom with soaking tub</li>\r\n<li>Washer and dryer</li>\r\n<li>Free WiFi</li>\r\n<li>Private rooftop terrace with stunning views of the city</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-28 23:37:24', '2025-04-28 23:37:24'),
(120, 86, 139, 62, 'جناح عائلي بسريرين كوين وسرير أريكة', 'gnah-aaayly-bsryryn-koyn-osryr-aryk', 'غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي الغرفة على سريرين بحجم كوين وسرير أريكة ودش قابل للطي يمكن الوصول إليه. تشمل المرافق الأخرى في الغرفة جهاز تلفزيون بشاشة مسطحة وثلاجة صغيرة وميكروويف وماكينة صنع القهوة. الغرفة مجهزة أيضًا بخدمة الإنترنت اللاسلكي عالي السرعة.\r\n\r\nالغرفة في الطابق الأرضي ليسهل الوصول إليها.\r\nيحتوي الحمام على دش قابل للطي مع مقابض للإمساك.\r\nالغرفة ذات إطار سرير منخفض ومفاتيح إضاءة يمكن الوصول إليها.\r\nتم تجهيز الغرفة بمجموعة متنوعة من ميزات إمكانية الوصول الأخرى لجعلها مريحة للضيوف ذوي الاحتياجات الخاصة بالتنقل.\r\n\r\nإذا كنت تبحث عن غرفة فندق فسيحة يسهل الوصول إليها ، فإن غرفة الوصول إلى سريرين كوين مع سرير أريكة يعد خيارًا رائعًا. الغرفة مريحة ومجهزة جيدًا وبها جميع وسائل الراحة التي تحتاجها لإقامة مريحة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-28 23:37:25', '2025-04-28 23:37:25'),
(121, 86, 138, 63, 'Overwater Bungalow with Private Plunge Pool', 'overwater-bungalow-with-private-plunge-pool', 'An overwater bungalow with a private plunge pool is a luxurious and secluded accommodation option that offers stunning views of the ocean. These bungalows are typically built on stilts over the water, and they often have their own private deck with a plunge pool. This type of accommodation is perfect for couples or honeymooners who want a romantic and private getaway.', '<p>Overwater bungalows with private plunge pools can be quite expensive, but they are worth the price for those who want a truly luxurious and unforgettable vacation experience. Prices typically start at around $1,000 per night, but they can go much higher depending on the location and the amenities offered.</p>\r\n<p><strong>Some of the best places to stay in an overwater bungalow with a private plunge pool include:</strong></p>\r\n<ul>\r\n<li>Bora Bora, French Polynesia</li>\r\n<li>Maldives</li>\r\n<li>Fiji</li>\r\n<li>Seychelles</li>\r\n<li>Turks and Caicos</li>\r\n<li>Bahamas</li>\r\n<li>Mexico</li>\r\n<li>Indonesia</li>\r\n<li>Thailand</li>\r\n</ul>\r\n<p><strong>Conclusion</strong></p>\r\n<p>An overwater bungalow with a private plunge pool is a truly unique and unforgettable accommodation option. If you are looking for a luxurious and secluded vacation experience, then this is the perfect choice for you.</p>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(122, 86, 139, 63, 'بنغل فوق الماء مع مسبح مغطس خاص', 'bnghl-fok-almaaa-maa-msbh-mghts-khas', 'بنغل فوق الماء مع مغطس خاص هو خيار إقامة فاخر ومنعزل يوفر إطلالات خلابة على المحيط. عادة ما يتم بناء هذه الأكواخ على ركائز متينة فوق الماء ، وغالبًا ما يكون لها سطح خاص بها مع مغطس. يعتبر هذا النوع من أماكن الإقامة مثاليًا للأزواج أو الذين يقضون شهر العسل الذين يرغبون في قضاء عطلة رومانسية وخاصة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يمكن أن تكون الأكواخ فوق الماء مع أحواض الغطس الخاصة باهظة الثمن ، لكنها تستحق السعر لمن يريدون تجربة إجازة فاخرة لا تُنسى حقًا. تبدأ الأسعار عادةً بحوالي 1000 دولار في الليلة ، لكنها يمكن أن ترتفع كثيرًا اعتمادًا على الموقع ووسائل الراحة المقدمة.\r\n\r\nتشمل بعض أفضل الأماكن للإقامة في بنغل فوق الماء مع مغطس خاص ما يلي:\r\n\r\nبورا بورا ، بولينيزيا الفرنسية\r\nجزر المالديف\r\nفيجي\r\nسيشيل\r\nتركس وكايكوس\r\nجزر البهاما\r\nالمكسيك\r\nإندونيسيا\r\nتايلاند\r\n\r\nخاتمة\r\n\r\nيعد البنغل فوق الماء مع مغطس خاص خيار إقامة فريد حقًا ولا يُنسى. إذا كنت تبحث عن تجربة إجازة فاخرة ومنعزلة ، فهذا هو الخيار الأمثل لك.</span></pre>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(123, 86, 138, 64, 'Hiking and Biking Suite with Mountain Views', 'hiking-and-biking-suite-with-mountain-views', 'This spacious suite is perfect for nature lovers who want to be close to the trails. It features stunning mountain views, a private balcony, and all the amenities you need for a comfortable stay, including a king-size bed, a living area with a sofa bed, a kitchenette, and a bathroom with a soaking tub.', '<p>The Hiking and Biking Suite with Mountain Views is located on the top floor of the hotel, so you\'ll enjoy stunning views of the surrounding mountains from your private balcony. The suite also features a spacious living area with a sofa bed, a kitchenette with all the essentials, and a bathroom with a soaking tub.</p>\r\n<p>The Hiking and Biking Suite with Mountain Views is the perfect place to relax and recharge after a day of exploring the great outdoors. With its comfortable accommodations, stunning views, and convenient location, this suite is sure to make your stay unforgettable.</p>\r\n<p>Here are some additional details about mountain biking:</p>\r\n<ul>\r\n<li>Mountain biking is a great way to explore the outdoors and get some exercise.</li>\r\n<li>There are many different types of mountain biking trails, from easy to challenging.</li>\r\n<li>You can mountain bike on your own or with a group.</li>\r\n<li>Mountain biking can be a great way to meet new people and make friends.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(124, 86, 139, 64, 'جناح المشي لمسافات طويلة وركوب الدراجات مع إطلالة على الجبل', 'gnah-almshy-lmsafat-toyl-orkob-aldragat-maa-atlal-aal-algbl', 'يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من شرفتك الخاصة. يحتوي الجناح أيضًا على منطقة جلوس واسعة مع سرير أريكة ومطبخ صغير به جميع الضروريات وحمام مع حوض استحمام.\r\n\r\nجناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل هو المكان المثالي للاسترخاء واستعادة النشاط بعد يوم من استكشاف الأماكن الرائعة في الهواء الطلق. مع أماكن الإقامة المريحة ، والمناظر الخلابة ، والموقع المناسب ، من المؤكد أن هذا الجناح سيجعل إقامتك لا تُنسى.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول ركوب الدراجات الجبلية:\r\n\r\nيعد ركوب الدراجات في الجبال طريقة رائعة لاستكشاف الهواء الطلق وممارسة بعض التمارين.\r\nهناك العديد من أنواع مسارات ركوب الدراجات الجبلية ، من السهل إلى التحدي.\r\nيمكنك ركوب الدراجة الجبلية بمفردك أو مع مجموعة.\r\nيمكن أن يكون ركوب الدراجات في الجبال طريقة رائعة لمقابلة أشخاص جدد وتكوين صداقات.</span></pre>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(125, 86, 138, 65, 'Pet-Friendly Room with Separate Sleeping Area for Pets', 'pet-friendly-room-with-separate-sleeping-area-for-pets', 'This room is perfect for pet owners who want to give their furry friends their own space to sleep and relax. The room features a separate sleeping area for pets, complete with a dog bed, water bowl, and food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.', '<p>The room itself is spacious and well-appointed, with a king-size bed, a sofa bed, a desk, and a flat-screen TV. The separate sleeping area for pets is located in a corner of the room and is separated by a baby gate. The area is furnished with a dog bed, a water bowl, and a food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.</p>\r\n<p>This room is a great option for pet owners who want to bring their furry friends on vacation without having to worry about finding a pet-friendly hotel. The separate sleeping area gives your pet their own space to sleep and relax, and the pet relief area makes it easy for them to go outside to do their business.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li>Maximum number of pets: 2</li>\r\n<li>Pet Policy: Pets must be leashed and/or crated at all times in public areas of the hotel.</li>\r\n<li>Amenities: Dog bed, water bowl, food bowl, pet relief area</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(126, 86, 139, 65, 'غرفة صديقة للحيوانات الأليفة مع منطقة نوم منفصلة للحيوانات الأليفة', 'ghrf-sdyk-llhyoanat-alalyf-maa-mntk-nom-mnfsl-llhyoanat-alalyf', 'هذه الغرفة مثالية لأصحاب الحيوانات الأليفة الذين يرغبون في منح أصدقائهم الفرويين مساحة خاصة بهم للنوم والاسترخاء. تحتوي الغرفة على منطقة نوم منفصلة للحيوانات الأليفة ، مع سرير للكلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة نفسها فسيحة ومجهزة جيدًا ، وتحتوي على سرير بحجم كينغ وسرير أريكة ومكتب وتلفزيون بشاشة مسطحة. تقع منطقة النوم المنفصلة للحيوانات الأليفة في أحد أركان الغرفة ويفصل بينها بوابة الأطفال. المنطقة مفروشة بسرير كلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.\r\n\r\nتعد هذه الغرفة خيارًا رائعًا لأصحاب الحيوانات الأليفة الذين يرغبون في إحضار أصدقائهم ذوي الفراء في إجازة دون الحاجة إلى القلق بشأن العثور على فندق صديق للحيوانات الأليفة. توفر منطقة النوم المنفصلة لحيوانك الأليف مساحة خاصة به للنوم والاسترخاء ، كما أن منطقة راحة الحيوانات الأليفة تجعل من السهل عليهم الخروج إلى الخارج للقيام بأعمالهم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحد الأقصى لعدد الحيوانات الأليفة: 2\r\nسياسة الحيوانات الأليفة: يجب تقييد و / أو تخزين الحيوانات الأليفة في جميع الأوقات في المناطق العامة بالفندق.\r\nوسائل الراحة: سرير الكلب ، وعاء الماء ، وعاء الطعام ، منطقة إغاثة الحيوانات الأليفة</span></pre>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(127, 86, 138, 66, 'Executive Suite with Private Balcony and Views of the Mountains', 'executive-suite-with-private-balcony-and-views-of-the-mountains', 'This spacious suite features a separate living area with a sofa, a king-size bed, a private balcony with mountain views, and a fully equipped bathroom with a walk-in shower. Other amenities include a flat-screen TV, free Wi-Fi, a minibar, and a safe.', '<p>The Executive Suite is the perfect place to relax and unwind after a long day of exploring. The living area is a great place to curl up with a book or watch a movie, and the private balcony is the perfect spot to enjoy the fresh air and take in the views. The bathroom is spacious and luxurious, with a walk-in shower and a soaking tub. The suite also features a flat-screen TV, free Wi-Fi, a minibar, and a safe.</p>\r\n<ul>\r\n<li>Spacious living area with sofa</li>\r\n<li>King-size bed</li>\r\n<li>Private balcony with mountain views</li>\r\n<li>Fully equipped bathroom with walk-in shower</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Minibar</li>\r\n<li>Safe</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(128, 86, 139, 66, 'جناح تنفيذي مع شرفة خاصة وإطلالات على الجبال', 'gnah-tnfythy-maa-shrf-khas-oatlalat-aal-algbal', 'يحتوي هذا الجناح الفسيح على منطقة معيشة منفصلة مع أريكة وسرير كينغ وشرفة خاصة مطلة على الجبل وحمام مجهز بالكامل مع مقصورة دش. تشمل المرافق الأخرى تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الجناح التنفيذي هو المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف. تعد منطقة المعيشة مكانًا رائعًا للاسترخاء مع كتاب أو مشاهدة فيلم ، والشرفة الخاصة هي المكان المثالي للاستمتاع بالهواء النقي والاستمتاع بالمناظر. الحمام واسع وفاخر مع مقصورة دش وحوض استحمام. يحتوي الجناح أيضًا على تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.\r\n\r\nمنطقة معيشة واسعة مع أريكة\r\nسرير بحجم كينغ\r\nشرفة خاصة تطل على الجبل\r\nحمام مجهز بالكامل مع مقصورة دش\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nميني بار\r\nآمن\r\n\r\nجناح إكزكيوتف هو الخيار الأمثل للأزواج أو المسافرين من رجال الأعمال الذين يريدون غرفة فاخرة وواسعة مع مناظر خلابة. يقع في منطقة هادئة بالفندق ، مما يجعله المكان المثالي للاسترخاء والراحة.</span></pre>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(129, 86, 138, 67, 'Family Suite with Two Bedrooms and Two Bathrooms', 'family-suite-with-two-bedrooms-and-two-bathrooms', 'This spacious suite is perfect for families or groups of friends. It features two bedrooms, each with a king-size bed, and two bathrooms with walk-in showers. There is also a living room with a sofa bed, a fully equipped kitchenette, and a dining area. The suite has a private balcony or terrace with stunning views.', '<p>The Family Suite is decorated in a modern style with comfortable furnishings. The bedrooms are both well-appointed with plush bedding, blackout curtains, and cable TV. The bathrooms are both spacious and have granite countertops, marble floors, and luxury bath amenities. The living room is a great place to relax and unwind with family and friends. It has a sofa bed, a coffee table, a flat-screen TV, and a DVD player. The kitchenette is fully equipped with a stovetop, oven, microwave, refrigerator, dishwasher, and coffee maker. There is also a dining table for six people. The suite has a private balcony or terrace with stunning views of the city, the ocean, or the mountains.</p>\r\n<ul>\r\n<li>Two king-size beds</li>\r\n<li>Two bathrooms with walk-in showers</li>\r\n<li>Living room with sofa bed, dining area, and flat-screen TV</li>\r\n<li>Fully equipped kitchenette</li>\r\n<li>Private balcony or terrace with stunning views</li>\r\n<li>Wi-Fi</li>\r\n<li>Cable TV</li>\r\n<li>Air conditioning</li>\r\n<li>Hair dryer</li>\r\n<li>Iron and ironing board</li>\r\n<li>Wake-up service</li>\r\n<li>Room service</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41'),
(130, 86, 139, 67, 'جناح عائلي بغرفتي نوم وحمامين', 'gnah-aaayly-bghrfty-nom-ohmamyn', 'هذا الجناح الفسيح مثالي للعائلات أو مجموعات الأصدقاء. تحتوي على غرفتي نوم ، كل واحدة بها سرير بحجم كينغ ، وحمامين مع مقصورة دش. تتوفر أيضًا غرفة معيشة مع سرير أريكة ومطبخ صغير مجهز بالكامل ومنطقة لتناول الطعام. يحتوي الجناح على شرفة خاصة أو تراس مع مناظر خلابة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تزيين الجناح العائلي بأسلوب حديث مع أثاثات مريحة. تم تجهيز غرف النوم جيدًا مع بياضات أسرّة فاخرة وستائر معتمة وتلفزيون مع قنوات الكابل. الحمامات واسعة وبها أسطح من الغرانيت وأرضيات رخامية ومستلزمات استحمام فاخرة. تعد غرفة المعيشة مكانًا رائعًا للاسترخاء مع العائلة والأصدقاء. تحتوي على سرير أريكة وطاولة قهوة وتلفزيون بشاشة مسطحة ومشغل دي في دي. تم تجهيز المطبخ الصغير بالكامل بموقد مسطح وفرن وميكروويف وثلاجة وغسالة أطباق وماكينة صنع القهوة. توجد أيضًا طاولة طعام تتسع لستة أشخاص. يحتوي الجناح على شرفة خاصة أو تراس مع إطلالات خلابة على المدينة أو المحيط أو الجبال.\r\n\r\nسريرين بحجم كينغ\r\nحمامين مع مقصورة دش\r\nغرفة معيشة مع سرير أريكة ومنطقة لتناول الطعام وتلفزيون بشاشة مسطحة\r\nمطبخ صغير مجهز بالكامل\r\nشرفة خاصة أو تراس مع مناظر خلابة\r\nواي فاي\r\nالكيبل التلفزيوني\r\nتكيف\r\nمجفف شعر\r\nمكواة وطاولة كي\r\nخدمة الإيقاظ\r\nخدمة الغرف</span></pre>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41'),
(131, 86, 138, 68, 'Deluxe King Room with Soaking Tub and Complimentary Breakfast', 'deluxe-king-room-with-soaking-tub-and-complimentary-breakfast', 'This spacious room features a king-size bed, a soaking tub, a flat-screen TV, free Wi-Fi, and complimentary breakfast. It is the perfect place to relax and unwind after a long day of exploring.', '<p>The Deluxe King Room with Soaking Tub and Complimentary Breakfast is a spacious room that measures approximately 400 square feet. It features a king-size bed with a pillow-top mattress, a soaking tub, a flat-screen TV with cable channels, a desk, a chair, a mini-fridge, and a coffee maker. The room also has a private bathroom with a shower and a hair dryer.</p>\r\n<p>The room is decorated in a modern style with neutral colors. The walls are painted white and the furniture is made of dark wood. The bed is covered with a plush white comforter and the windows have blackout curtains.</p>\r\n<p>The room has free Wi-Fi and a flat-screen TV with cable channels. There is also a mini-fridge and a coffee maker in the room.</p>\r\n<p>Complimentary breakfast is served in the hotel\'s dining room each morning. The breakfast buffet typically includes eggs, bacon, sausage, pancakes, waffles, cereal, yogurt, fruit, and pastries.</p>\r\n<ul>\r\n<li>King-size bed with pillow-top mattress</li>\r\n<li>Soaking tub</li>\r\n<li>Flat-screen TV with cable channels</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Private bathroom with shower and hair dryer</li>\r\n<li>Mini-fridge</li>\r\n<li>Coffee maker</li>\r\n<li>Complimentary breakfast</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(132, 86, 139, 68, 'غرفة ديلوكس بحجم كينغ مع حوض استحمام ووجبة إفطار مجانية', 'ghrf-dyloks-bhgm-kyngh-maa-hod-asthmam-oogb-aftar-mgany', 'تحتوي هذه الغرفة الفسيحة على سرير بحجم كينغ وحوض استحمام عميق وجهاز تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية ووجبة إفطار مجانية. إنه المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة الديلوكس كينغ مع حوض استحمام ووجبة إفطار مجانية هي غرفة فسيحة تبلغ مساحتها حوالي 400 قدم مربع. وتحتوي على سرير بحجم كينغ مع مرتبة أعلى وسائد وحوض استحمام وتلفزيون بشاشة مسطحة مع قنوات الكابل ومكتب وكرسي وثلاجة صغيرة وآلة لصنع القهوة. تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر.\r\n\r\nالغرفة مصممة على الطراز الحديث بألوان محايدة. الجدران مطلية باللون الأبيض والأثاث مصنوع من الخشب الداكن. السرير مغطى بلحفة بيضاء فخمة والنوافذ بها ستائر قاتمة.\r\n\r\nتوفر الغرفة خدمة الواي فاي المجانية وجهاز تلفزيون بشاشة مسطحة مع قنوات الكابل. توجد أيضًا ثلاجة صغيرة وماكينة صنع القهوة في الغرفة.\r\n\r\nيتم تقديم وجبة إفطار مجانية في غرفة تناول الطعام بالفندق كل صباح. يشمل بوفيه الإفطار عادة البيض ولحم الخنزير المقدد والنقانق والفطائر والفطائر والحبوب والزبادي والفواكه والمعجنات.\r\n\r\nسرير كبير الحجم مع مرتبة أعلى وسادة\r\nحوض نقع\r\nتلفزيون بشاشة مسطحة مع قنوات الكابل\r\nواى فاى مجانى\r\nحمام خاص مع دش ومجفف شعر\r\nثلاجة صغيرة\r\nصانع القهوة\r\nإفطار مجاني</span></pre>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(133, 86, 138, 69, 'Business Class Room with High-Speed Internet and Work Desk', 'business-class-room-with-high-speed-internet-and-work-desk', 'This room is designed for business travelers who need a comfortable place to sleep and work. It features a king-size bed, a work desk with an ergonomic chair, high-speed internet access, a microwave, a fridge, a 37-inch TV, and a Keurig coffee maker', '<p>The room is decorated in a modern style with neutral colors. The bed is made with luxurious bedding and the desk has plenty of space to spread out work materials. The high-speed internet access is perfect for staying connected with clients or colleagues. The microwave and fridge are convenient for storing snacks and drinks. The 37-inch TV provides entertainment options and the Keurig coffee maker is a great way to start the day.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li><strong>Size:</strong> The room is approximately 350 square feet.</li>\r\n<li><strong>Amenities:</strong> In addition to the amenities listed above, the room also features a private bathroom with a shower, a hair dryer, and toiletries.</li>\r\n<li><strong>Pricing:</strong> The room typically starts at \\$150 per night.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(134, 86, 139, 69, 'غرفة درجة الأعمال مع إنترنت عالي السرعة ومكتب عمل', 'ghrf-drg-alaaamal-maa-antrnt-aaaly-alsraa-omktb-aaml', 'تم تصميم هذه الغرفة للمسافرين من رجال الأعمال الذين يحتاجون إلى مكان مريح للنوم والعمل. تتميز بسرير بحجم كينغ ومكتب للعمل مع كرسي مريح وخدمة الإنترنت عالية السرعة وميكروويف وثلاجة وتلفزيون 37 بوصة وماكينة صنع القهوة Keurig', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة مصممة على الطراز الحديث بألوان محايدة. السرير مصنوع من بياضات أسرّة فاخرة والمكتب به مساحة كبيرة لنشر مواد العمل. يعد الوصول إلى الإنترنت عالي السرعة مثاليًا للبقاء على اتصال مع العملاء أو الزملاء. يعد الميكروويف والثلاجة مناسبين لتخزين الوجبات الخفيفة والمشروبات. يوفر التلفزيون مقاس 37 بوصة خيارات ترفيهية وتعد آلة صنع القهوة Keurig طريقة رائعة لبدء اليوم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحجم: تبلغ مساحة الغرفة حوالي 350 قدم مربع.\r\nوسائل الراحة: بالإضافة إلى وسائل الراحة المذكورة أعلاه ، تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر ولوازم استحمام.\r\nالتسعير: تبدأ الغرفة عادة بـ 150 دولارًا في الليلة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(135, 86, 138, 70, 'Family-Friendly Rooms with Plenty of Space', 'family-friendly-rooms-with-plenty-of-space', 'Family-friendly rooms with plenty of space are perfect for families with children of all ages. These rooms offer ample space for everyone to spread out and relax, as well as amenities that make life with kids easier', '<p>Family-friendly rooms with plenty of space are typically larger than standard hotel rooms, with at least one bedroom and a separate living area. The bedrooms are often furnished with two double beds or a king-size bed, and the living area may have a sofa bed or futon for extra guests. The kitchenette is typically equipped with a stovetop, oven, refrigerator, microwave, and coffee maker. The dining area is usually small, but it\'s large enough for a family to eat together. The play area is often located in the living area and is furnished with toys and games for children. Some rooms also have a private balcony or patio where families can relax and enjoy the outdoors.</p>\r\n<p>Family-friendly rooms with plenty of space offer a number of benefits for families, including:</p>\r\n<ul>\r\n<li>More space to spread out and relax</li>\r\n<li>Amenities that make life with kids easier</li>\r\n<li>A private space for children to play</li>\r\n<li>A comfortable place for everyone to sleep</li>\r\n</ul>\r\n<p>Family-friendly rooms with plenty of space are ideal for families with children of all ages. These rooms are perfect for families who want to relax and enjoy their vacation together, without having to worry about being cramped or having to share a room with other guests.</p>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(136, 86, 139, 70, 'غرف صديقة للأسرة مع الكثير من المساحة', 'ghrf-sdyk-llasr-maa-alkthyr-mn-almsah', 'تعتبر الغرف المناسبة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. توفر هذه الغرف مساحة واسعة للجميع للانتشار والاسترخاء ، بالإضافة إلى وسائل الراحة التي تجعل الحياة مع الأطفال أسهل', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">عادةً ما تكون الغرف المناسبة للعائلات التي تحتوي على مساحة كبيرة أكبر من غرف الفنادق العادية ، وتحتوي على غرفة نوم واحدة على الأقل ومنطقة معيشة منفصلة. غالبًا ما تكون غرف النوم مؤثثة بسريرين مزدوجين أو سرير بحجم كينغ ، وقد تحتوي منطقة المعيشة على سرير أريكة أو فوتون للضيوف الإضافيين. عادةً ما يكون المطبخ الصغير مجهزًا بموقد مسطح وفرن وثلاجة وميكروويف وماكينة صنع القهوة. عادة ما تكون منطقة تناول الطعام صغيرة ، لكنها كبيرة بما يكفي لتناول الطعام معًا. غالبًا ما تقع منطقة اللعب في منطقة المعيشة وهي مؤثثة بالألعاب والألعاب للأطفال. تحتوي بعض الغرف أيضًا على شرفة خاصة أو فناء حيث يمكن للعائلات الاسترخاء والاستمتاع بالهواء الطلق.\r\n\r\nتوفر الغرف الملائمة للعائلات التي تتميز بمساحة كبيرة عددًا من المزايا للعائلات ، بما في ذلك:\r\n\r\nمساحة أكبر للانتشار والاسترخاء\r\nوسائل الراحة التي تجعل الحياة مع الأطفال أسهل\r\nمساحة خاصة للأطفال للعب\r\nمكان مريح ينام فيه الجميع\r\n\r\nتُعد الغرف الملائمة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. هذه الغرف مثالية للعائلات التي ترغب في الاسترخاء والاستمتاع بعطلتهم معًا ، دون الحاجة إلى القلق بشأن الازدحام أو الاضطرار إلى مشاركة الغرفة مع الضيوف الآخرين.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(137, 86, 138, 71, 'Spacious Rooms with All the Amenities', 'spacious-rooms-with-all-the-amenities', 'These spacious rooms offer everything you need for a comfortable stay, including a king-size bed, a work desk, a sofa, a flat-screen TV, and free Wi-Fi. The bathrooms are also spacious and well-appointed, with walk-in showers and bathtubs.', '<p>The rooms are decorated in a modern style with neutral colors and simple furnishings. The windows offer plenty of natural light, and the views are often stunning. The rooms are also equipped with all the amenities you need to relax and unwind, including a minibar, a coffee maker, and an iron and ironing board.</p>\r\n<p>Here are some specific amenities that you can expect to find in these rooms:</p>\r\n<ul>\r\n<li>King-size bed</li>\r\n<li>Work desk</li>\r\n<li>Sofa</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Walk-in shower</li>\r\n<li>Bathtub</li>\r\n<li>Minibar</li>\r\n<li>Coffee maker</li>\r\n<li>Iron and ironing board</li>\r\n</ul>\r\n<p>These rooms are perfect for couples, business travelers, or families. They are spacious and comfortable, and they offer all the amenities you need to make your stay enjoyable.</p>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(138, 86, 139, 71, 'غرف فسيحة مع جميع وسائل الراحة', 'ghrf-fsyh-maa-gmyaa-osayl-alrah', 'توفر هذه الغرف الفسيحة كل ما تحتاجه لإقامة مريحة ، بما في ذلك سرير بحجم كينغ ومكتب للعمل وأريكة وتلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية. الحمامات أيضًا فسيحة ومجهزة جيدًا مع مقصورات دش وأحواض استحمام.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرف مصممة على الطراز الحديث بألوان محايدة وأثاث بسيط. توفر النوافذ الكثير من الضوء الطبيعي ، وغالبًا ما تكون المناظر مذهلة. تم تجهيز الغرف أيضًا بجميع وسائل الراحة التي تحتاجها للاسترخاء والاسترخاء ، بما في ذلك ميني بار وماكينة صنع القهوة ومكواة وطاولة للكي.\r\n\r\nفيما يلي بعض وسائل الراحة المحددة التي يمكن أن تتوقع أن تجدها في هذه الغرف:\r\n\r\nسرير بحجم كينغ\r\nمكتب العمل\r\nكنبة\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nامشي في الحمام\r\nحوض الاستحمام\r\nميني بار\r\nصانع القهوة\r\nمكواة وطاولة كي\r\n\r\nهذه الغرف مثالية للأزواج أو المسافرين من رجال الأعمال أو العائلات. إنها فسيحة ومريحة وتوفر جميع وسائل الراحة التي تحتاجها لجعل إقامتك ممتعة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(139, 86, 138, 72, 'Luxury Rooms for Your Next Vacation', 'luxury-rooms-for-your-next-vacation', 'Luxury rooms are the perfect way to indulge in a little bit of pampering and relaxation on your next vacation. These rooms typically offer a wide range of amenities and services, including spacious accommodations, plush bedding, private balconies or patios, and access to exclusive amenities such as spas, fitness centers, and restaurants.', '<p>Luxury rooms are designed to provide guests with the ultimate in comfort and convenience. They typically feature large, well-appointed bedrooms with king-size beds, plush linens, and luxurious bathrobes. The bathrooms are often equipped with separate soaking tubs and showers, as well as high-end toiletries.</p>\r\n<p>In addition to the spacious accommodations, luxury rooms also offer a variety of other amenities and services. These may include:</p>\r\n<ul>\r\n<li>Private balconies or patios with stunning views</li>\r\n<li>Access to exclusive amenities such as spas, fitness centers, and restaurants</li>\r\n<li>24-hour room service</li>\r\n<li>Personal butler service</li>\r\n<li>Complimentary Wi-Fi</li>\r\n<li>In-room bar</li>\r\n<li>Minibar</li>\r\n<li>Nespresso coffee machine</li>\r\n<li>Turndown service</li>\r\n</ul>\r\n<p>Whether you are looking for a romantic getaway, a family vacation, or a business trip, a luxury room is the perfect way to make your next vacation one to remember.</p>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08'),
(140, 86, 139, 72, 'غرف فاخرة لعطلتك القادمة', 'ghrf-fakhr-laatltk-alkadm', 'الغرف الفاخرة هي الطريقة المثلى للاستمتاع بقليل من التدليل والاسترخاء في عطلتك القادمة. تقدم هذه الغرف عادةً مجموعة واسعة من وسائل الراحة والخدمات ، بما في ذلك أماكن الإقامة الفسيحة ، والأسرة الفخمة ، والشرفات الخاصة أو الباحات ، والوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ، ومراكز اللياقة البدنية ، والمطاعم.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تصميم الغرف الفاخرة لتوفر للضيوف أقصى درجات الراحة والرفاهية. تتميز عادةً بغرف نوم كبيرة ومجهزة جيدًا مع أسرّة بحجم كينغ وبياضات فخمة وأردية حمام فاخرة. غالبًا ما تكون الحمامات مُجهزة بأحواض استحمام ودُش منفصلة ، فضلاً عن أدوات النظافة الراقية.\r\n\r\nبالإضافة إلى أماكن الإقامة الفسيحة ، توفر الغرف الفاخرة أيضًا مجموعة متنوعة من وسائل الراحة والخدمات الأخرى. قد تشمل هذه:\r\n\r\nشرفات أو أفنية خاصة مع مناظر خلابة\r\nالوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ومراكز اللياقة البدنية والمطاعم\r\nخدمة الغرف على مدار 24 ساعة\r\nخدمة الخادم الشخصي\r\nواي فاي مجاني\r\nبار في الغرفة\r\nميني بار\r\nماكينة قهوة نسبرسو\r\nخدمة ترتيب الأسرة\r\n\r\nسواء كنت تبحث عن ملاذ رومانسي أو عطلة عائلية أو رحلة عمل ، فإن الغرفة الفاخرة هي الطريقة المثلى لجعل عطلتك القادمة لا تنسى.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08'),
(141, 87, 140, 73, 'Penthouse Suite with Private Rooftop Terrace', 'penthouse-suite-with-private-rooftop-terrace', 'This luxurious penthouse suite features a private rooftop terrace with stunning views of the city. The suite has a spacious living area with a fireplace, a fully equipped kitchen, and a master bedroom with a king-size bed and a private bathroom with a soaking tub. The suite also has a washer and dryer, and free WiFi.', '<p>The Penthouse Suite with Private Rooftop Terrace is the perfect place to relax and unwind after a long day of exploring the city. The rooftop terrace is the perfect spot to enjoy a drink or a meal while taking in the views. The suite also has everything you need to feel comfortable and at home, including a fully equipped kitchen, a washer and dryer, and free WiFi</p>\r\n<ul>\r\n<li>Spacious living area with fireplace</li>\r\n<li>Fully equipped kitchen</li>\r\n<li>Master bedroom with king-size bed</li>\r\n<li>Private bathroom with soaking tub</li>\r\n<li>Washer and dryer</li>\r\n<li>Free WiFi</li>\r\n<li>Private rooftop terrace with stunning views of the city</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-28 23:37:24', '2025-04-28 23:37:24'),
(142, 87, 141, 73, 'جناح عائلي بسريرين كوين وسرير أريكة', 'gnah-aaayly-bsryryn-koyn-osryr-aryk', 'غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">غرفة مع سريرين كوين مع إمكانية الوصول إلى سرير أريكة هي غرفة فسيحة ومريحة ومثالية للضيوف ذوي الاحتياجات الخاصة بالتنقل. تحتوي الغرفة على سريرين بحجم كوين وسرير أريكة ودش قابل للطي يمكن الوصول إليه. تشمل المرافق الأخرى في الغرفة جهاز تلفزيون بشاشة مسطحة وثلاجة صغيرة وميكروويف وماكينة صنع القهوة. الغرفة مجهزة أيضًا بخدمة الإنترنت اللاسلكي عالي السرعة.\r\n\r\nالغرفة في الطابق الأرضي ليسهل الوصول إليها.\r\nيحتوي الحمام على دش قابل للطي مع مقابض للإمساك.\r\nالغرفة ذات إطار سرير منخفض ومفاتيح إضاءة يمكن الوصول إليها.\r\nتم تجهيز الغرفة بمجموعة متنوعة من ميزات إمكانية الوصول الأخرى لجعلها مريحة للضيوف ذوي الاحتياجات الخاصة بالتنقل.\r\n\r\nإذا كنت تبحث عن غرفة فندق فسيحة يسهل الوصول إليها ، فإن غرفة الوصول إلى سريرين كوين مع سرير أريكة يعد خيارًا رائعًا. الغرفة مريحة ومجهزة جيدًا وبها جميع وسائل الراحة التي تحتاجها لإقامة مريحة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-28 23:37:25', '2025-04-28 23:37:25'),
(143, 87, 140, 74, 'Overwater Bungalow with Private Plunge Pool', 'overwater-bungalow-with-private-plunge-pool', 'An overwater bungalow with a private plunge pool is a luxurious and secluded accommodation option that offers stunning views of the ocean. These bungalows are typically built on stilts over the water, and they often have their own private deck with a plunge pool. This type of accommodation is perfect for couples or honeymooners who want a romantic and private getaway.', '<p>Overwater bungalows with private plunge pools can be quite expensive, but they are worth the price for those who want a truly luxurious and unforgettable vacation experience. Prices typically start at around $1,000 per night, but they can go much higher depending on the location and the amenities offered.</p>\r\n<p><strong>Some of the best places to stay in an overwater bungalow with a private plunge pool include:</strong></p>\r\n<ul>\r\n<li>Bora Bora, French Polynesia</li>\r\n<li>Maldives</li>\r\n<li>Fiji</li>\r\n<li>Seychelles</li>\r\n<li>Turks and Caicos</li>\r\n<li>Bahamas</li>\r\n<li>Mexico</li>\r\n<li>Indonesia</li>\r\n<li>Thailand</li>\r\n</ul>\r\n<p><strong>Conclusion</strong></p>\r\n<p>An overwater bungalow with a private plunge pool is a truly unique and unforgettable accommodation option. If you are looking for a luxurious and secluded vacation experience, then this is the perfect choice for you.</p>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(144, 87, 141, 74, 'بنغل فوق الماء مع مسبح مغطس خاص', 'bnghl-fok-almaaa-maa-msbh-mghts-khas', 'بنغل فوق الماء مع مغطس خاص هو خيار إقامة فاخر ومنعزل يوفر إطلالات خلابة على المحيط. عادة ما يتم بناء هذه الأكواخ على ركائز متينة فوق الماء ، وغالبًا ما يكون لها سطح خاص بها مع مغطس. يعتبر هذا النوع من أماكن الإقامة مثاليًا للأزواج أو الذين يقضون شهر العسل الذين يرغبون في قضاء عطلة رومانسية وخاصة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يمكن أن تكون الأكواخ فوق الماء مع أحواض الغطس الخاصة باهظة الثمن ، لكنها تستحق السعر لمن يريدون تجربة إجازة فاخرة لا تُنسى حقًا. تبدأ الأسعار عادةً بحوالي 1000 دولار في الليلة ، لكنها يمكن أن ترتفع كثيرًا اعتمادًا على الموقع ووسائل الراحة المقدمة.\r\n\r\nتشمل بعض أفضل الأماكن للإقامة في بنغل فوق الماء مع مغطس خاص ما يلي:\r\n\r\nبورا بورا ، بولينيزيا الفرنسية\r\nجزر المالديف\r\nفيجي\r\nسيشيل\r\nتركس وكايكوس\r\nجزر البهاما\r\nالمكسيك\r\nإندونيسيا\r\nتايلاند\r\n\r\nخاتمة\r\n\r\nيعد البنغل فوق الماء مع مغطس خاص خيار إقامة فريد حقًا ولا يُنسى. إذا كنت تبحث عن تجربة إجازة فاخرة ومنعزلة ، فهذا هو الخيار الأمثل لك.</span></pre>', NULL, NULL, '2025-04-30 04:16:50', '2025-04-30 04:16:50'),
(145, 87, 140, 75, 'Hiking and Biking Suite with Mountain Views', 'hiking-and-biking-suite-with-mountain-views', 'This spacious suite is perfect for nature lovers who want to be close to the trails. It features stunning mountain views, a private balcony, and all the amenities you need for a comfortable stay, including a king-size bed, a living area with a sofa bed, a kitchenette, and a bathroom with a soaking tub.', '<p>The Hiking and Biking Suite with Mountain Views is located on the top floor of the hotel, so you\'ll enjoy stunning views of the surrounding mountains from your private balcony. The suite also features a spacious living area with a sofa bed, a kitchenette with all the essentials, and a bathroom with a soaking tub.</p>\r\n<p>The Hiking and Biking Suite with Mountain Views is the perfect place to relax and recharge after a day of exploring the great outdoors. With its comfortable accommodations, stunning views, and convenient location, this suite is sure to make your stay unforgettable.</p>\r\n<p>Here are some additional details about mountain biking:</p>\r\n<ul>\r\n<li>Mountain biking is a great way to explore the outdoors and get some exercise.</li>\r\n<li>There are many different types of mountain biking trails, from easy to challenging.</li>\r\n<li>You can mountain bike on your own or with a group.</li>\r\n<li>Mountain biking can be a great way to meet new people and make friends.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(146, 87, 141, 75, 'جناح المشي لمسافات طويلة وركوب الدراجات مع إطلالة على الجبل', 'gnah-almshy-lmsafat-toyl-orkob-aldragat-maa-atlal-aal-algbl', 'يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">يقع جناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل في الطابق العلوي من الفندق ، لذلك ستستمتع بإطلالات خلابة على الجبال المحيطة من شرفتك الخاصة. يحتوي الجناح أيضًا على منطقة جلوس واسعة مع سرير أريكة ومطبخ صغير به جميع الضروريات وحمام مع حوض استحمام.\r\n\r\nجناح المشي لمسافات طويلة وركوب الدراجات المطل على الجبل هو المكان المثالي للاسترخاء واستعادة النشاط بعد يوم من استكشاف الأماكن الرائعة في الهواء الطلق. مع أماكن الإقامة المريحة ، والمناظر الخلابة ، والموقع المناسب ، من المؤكد أن هذا الجناح سيجعل إقامتك لا تُنسى.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول ركوب الدراجات الجبلية:\r\n\r\nيعد ركوب الدراجات في الجبال طريقة رائعة لاستكشاف الهواء الطلق وممارسة بعض التمارين.\r\nهناك العديد من أنواع مسارات ركوب الدراجات الجبلية ، من السهل إلى التحدي.\r\nيمكنك ركوب الدراجة الجبلية بمفردك أو مع مجموعة.\r\nيمكن أن يكون ركوب الدراجات في الجبال طريقة رائعة لمقابلة أشخاص جدد وتكوين صداقات.</span></pre>', NULL, NULL, '2025-04-30 04:21:57', '2025-04-30 04:21:57'),
(147, 87, 140, 76, 'Pet-Friendly Room with Separate Sleeping Area for Pets', 'pet-friendly-room-with-separate-sleeping-area-for-pets', 'This room is perfect for pet owners who want to give their furry friends their own space to sleep and relax. The room features a separate sleeping area for pets, complete with a dog bed, water bowl, and food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.', '<p>The room itself is spacious and well-appointed, with a king-size bed, a sofa bed, a desk, and a flat-screen TV. The separate sleeping area for pets is located in a corner of the room and is separated by a baby gate. The area is furnished with a dog bed, a water bowl, and a food bowl. There is also a pet relief area located near the room so your pet can easily go outside to do their business.</p>\r\n<p>This room is a great option for pet owners who want to bring their furry friends on vacation without having to worry about finding a pet-friendly hotel. The separate sleeping area gives your pet their own space to sleep and relax, and the pet relief area makes it easy for them to go outside to do their business.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li>Maximum number of pets: 2</li>\r\n<li>Pet Policy: Pets must be leashed and/or crated at all times in public areas of the hotel.</li>\r\n<li>Amenities: Dog bed, water bowl, food bowl, pet relief area</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(148, 87, 141, 76, 'غرفة صديقة للحيوانات الأليفة مع منطقة نوم منفصلة للحيوانات الأليفة', 'ghrf-sdyk-llhyoanat-alalyf-maa-mntk-nom-mnfsl-llhyoanat-alalyf', 'هذه الغرفة مثالية لأصحاب الحيوانات الأليفة الذين يرغبون في منح أصدقائهم الفرويين مساحة خاصة بهم للنوم والاسترخاء. تحتوي الغرفة على منطقة نوم منفصلة للحيوانات الأليفة ، مع سرير للكلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة نفسها فسيحة ومجهزة جيدًا ، وتحتوي على سرير بحجم كينغ وسرير أريكة ومكتب وتلفزيون بشاشة مسطحة. تقع منطقة النوم المنفصلة للحيوانات الأليفة في أحد أركان الغرفة ويفصل بينها بوابة الأطفال. المنطقة مفروشة بسرير كلاب ووعاء ماء ووعاء طعام. توجد أيضًا منطقة لإغاثة الحيوانات الأليفة تقع بالقرب من الغرفة حتى يتمكن حيوانك الأليف من الخروج بسهولة للقيام بأعماله.\r\n\r\nتعد هذه الغرفة خيارًا رائعًا لأصحاب الحيوانات الأليفة الذين يرغبون في إحضار أصدقائهم ذوي الفراء في إجازة دون الحاجة إلى القلق بشأن العثور على فندق صديق للحيوانات الأليفة. توفر منطقة النوم المنفصلة لحيوانك الأليف مساحة خاصة به للنوم والاسترخاء ، كما أن منطقة راحة الحيوانات الأليفة تجعل من السهل عليهم الخروج إلى الخارج للقيام بأعمالهم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحد الأقصى لعدد الحيوانات الأليفة: 2\r\nسياسة الحيوانات الأليفة: يجب تقييد و / أو تخزين الحيوانات الأليفة في جميع الأوقات في المناطق العامة بالفندق.\r\nوسائل الراحة: سرير الكلب ، وعاء الماء ، وعاء الطعام ، منطقة إغاثة الحيوانات الأليفة</span></pre>', NULL, NULL, '2025-04-30 04:35:46', '2025-04-30 04:35:46'),
(149, 87, 140, 77, 'Executive Suite with Private Balcony and Views of the Mountains', 'executive-suite-with-private-balcony-and-views-of-the-mountains', 'This spacious suite features a separate living area with a sofa, a king-size bed, a private balcony with mountain views, and a fully equipped bathroom with a walk-in shower. Other amenities include a flat-screen TV, free Wi-Fi, a minibar, and a safe.', '<p>The Executive Suite is the perfect place to relax and unwind after a long day of exploring. The living area is a great place to curl up with a book or watch a movie, and the private balcony is the perfect spot to enjoy the fresh air and take in the views. The bathroom is spacious and luxurious, with a walk-in shower and a soaking tub. The suite also features a flat-screen TV, free Wi-Fi, a minibar, and a safe.</p>\r\n<ul>\r\n<li>Spacious living area with sofa</li>\r\n<li>King-size bed</li>\r\n<li>Private balcony with mountain views</li>\r\n<li>Fully equipped bathroom with walk-in shower</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Minibar</li>\r\n<li>Safe</li>\r\n</ul>\r\n<p>The Executive Suite is the perfect choice for couples or business travelers who want a luxurious and spacious room with stunning views. It is located in a quiet area of the hotel, making it the perfect place to relax and unwind.</p>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(150, 87, 141, 77, 'جناح تنفيذي مع شرفة خاصة وإطلالات على الجبال', 'gnah-tnfythy-maa-shrf-khas-oatlalat-aal-algbal', 'يحتوي هذا الجناح الفسيح على منطقة معيشة منفصلة مع أريكة وسرير كينغ وشرفة خاصة مطلة على الجبل وحمام مجهز بالكامل مع مقصورة دش. تشمل المرافق الأخرى تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الجناح التنفيذي هو المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف. تعد منطقة المعيشة مكانًا رائعًا للاسترخاء مع كتاب أو مشاهدة فيلم ، والشرفة الخاصة هي المكان المثالي للاستمتاع بالهواء النقي والاستمتاع بالمناظر. الحمام واسع وفاخر مع مقصورة دش وحوض استحمام. يحتوي الجناح أيضًا على تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية وميني بار وخزنة.\r\n\r\nمنطقة معيشة واسعة مع أريكة\r\nسرير بحجم كينغ\r\nشرفة خاصة تطل على الجبل\r\nحمام مجهز بالكامل مع مقصورة دش\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nميني بار\r\nآمن\r\n\r\nجناح إكزكيوتف هو الخيار الأمثل للأزواج أو المسافرين من رجال الأعمال الذين يريدون غرفة فاخرة وواسعة مع مناظر خلابة. يقع في منطقة هادئة بالفندق ، مما يجعله المكان المثالي للاسترخاء والراحة.</span></pre>', NULL, NULL, '2025-04-30 04:38:31', '2025-04-30 04:38:31'),
(151, 87, 140, 78, 'Family Suite with Two Bedrooms and Two Bathrooms', 'family-suite-with-two-bedrooms-and-two-bathrooms', 'This spacious suite is perfect for families or groups of friends. It features two bedrooms, each with a king-size bed, and two bathrooms with walk-in showers. There is also a living room with a sofa bed, a fully equipped kitchenette, and a dining area. The suite has a private balcony or terrace with stunning views.', '<p>The Family Suite is decorated in a modern style with comfortable furnishings. The bedrooms are both well-appointed with plush bedding, blackout curtains, and cable TV. The bathrooms are both spacious and have granite countertops, marble floors, and luxury bath amenities. The living room is a great place to relax and unwind with family and friends. It has a sofa bed, a coffee table, a flat-screen TV, and a DVD player. The kitchenette is fully equipped with a stovetop, oven, microwave, refrigerator, dishwasher, and coffee maker. There is also a dining table for six people. The suite has a private balcony or terrace with stunning views of the city, the ocean, or the mountains.</p>\r\n<ul>\r\n<li>Two king-size beds</li>\r\n<li>Two bathrooms with walk-in showers</li>\r\n<li>Living room with sofa bed, dining area, and flat-screen TV</li>\r\n<li>Fully equipped kitchenette</li>\r\n<li>Private balcony or terrace with stunning views</li>\r\n<li>Wi-Fi</li>\r\n<li>Cable TV</li>\r\n<li>Air conditioning</li>\r\n<li>Hair dryer</li>\r\n<li>Iron and ironing board</li>\r\n<li>Wake-up service</li>\r\n<li>Room service</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41');
INSERT INTO `user_room_contents` (`id`, `user_id`, `language_id`, `room_id`, `title`, `slug`, `summary`, `description`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(152, 87, 141, 78, 'جناح عائلي بغرفتي نوم وحمامين', 'gnah-aaayly-bghrfty-nom-ohmamyn', 'هذا الجناح الفسيح مثالي للعائلات أو مجموعات الأصدقاء. تحتوي على غرفتي نوم ، كل واحدة بها سرير بحجم كينغ ، وحمامين مع مقصورة دش. تتوفر أيضًا غرفة معيشة مع سرير أريكة ومطبخ صغير مجهز بالكامل ومنطقة لتناول الطعام. يحتوي الجناح على شرفة خاصة أو تراس مع مناظر خلابة.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تزيين الجناح العائلي بأسلوب حديث مع أثاثات مريحة. تم تجهيز غرف النوم جيدًا مع بياضات أسرّة فاخرة وستائر معتمة وتلفزيون مع قنوات الكابل. الحمامات واسعة وبها أسطح من الغرانيت وأرضيات رخامية ومستلزمات استحمام فاخرة. تعد غرفة المعيشة مكانًا رائعًا للاسترخاء مع العائلة والأصدقاء. تحتوي على سرير أريكة وطاولة قهوة وتلفزيون بشاشة مسطحة ومشغل دي في دي. تم تجهيز المطبخ الصغير بالكامل بموقد مسطح وفرن وميكروويف وثلاجة وغسالة أطباق وماكينة صنع القهوة. توجد أيضًا طاولة طعام تتسع لستة أشخاص. يحتوي الجناح على شرفة خاصة أو تراس مع إطلالات خلابة على المدينة أو المحيط أو الجبال.\r\n\r\nسريرين بحجم كينغ\r\nحمامين مع مقصورة دش\r\nغرفة معيشة مع سرير أريكة ومنطقة لتناول الطعام وتلفزيون بشاشة مسطحة\r\nمطبخ صغير مجهز بالكامل\r\nشرفة خاصة أو تراس مع مناظر خلابة\r\nواي فاي\r\nالكيبل التلفزيوني\r\nتكيف\r\nمجفف شعر\r\nمكواة وطاولة كي\r\nخدمة الإيقاظ\r\nخدمة الغرف</span></pre>', NULL, NULL, '2025-04-30 04:41:41', '2025-04-30 04:41:41'),
(153, 87, 140, 79, 'Deluxe King Room with Soaking Tub and Complimentary Breakfast', 'deluxe-king-room-with-soaking-tub-and-complimentary-breakfast', 'This spacious room features a king-size bed, a soaking tub, a flat-screen TV, free Wi-Fi, and complimentary breakfast. It is the perfect place to relax and unwind after a long day of exploring.', '<p>The Deluxe King Room with Soaking Tub and Complimentary Breakfast is a spacious room that measures approximately 400 square feet. It features a king-size bed with a pillow-top mattress, a soaking tub, a flat-screen TV with cable channels, a desk, a chair, a mini-fridge, and a coffee maker. The room also has a private bathroom with a shower and a hair dryer.</p>\r\n<p>The room is decorated in a modern style with neutral colors. The walls are painted white and the furniture is made of dark wood. The bed is covered with a plush white comforter and the windows have blackout curtains.</p>\r\n<p>The room has free Wi-Fi and a flat-screen TV with cable channels. There is also a mini-fridge and a coffee maker in the room.</p>\r\n<p>Complimentary breakfast is served in the hotel\'s dining room each morning. The breakfast buffet typically includes eggs, bacon, sausage, pancakes, waffles, cereal, yogurt, fruit, and pastries.</p>\r\n<ul>\r\n<li>King-size bed with pillow-top mattress</li>\r\n<li>Soaking tub</li>\r\n<li>Flat-screen TV with cable channels</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Private bathroom with shower and hair dryer</li>\r\n<li>Mini-fridge</li>\r\n<li>Coffee maker</li>\r\n<li>Complimentary breakfast</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(154, 87, 141, 79, 'غرفة ديلوكس بحجم كينغ مع حوض استحمام ووجبة إفطار مجانية', 'ghrf-dyloks-bhgm-kyngh-maa-hod-asthmam-oogb-aftar-mgany', 'تحتوي هذه الغرفة الفسيحة على سرير بحجم كينغ وحوض استحمام عميق وجهاز تلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية ووجبة إفطار مجانية. إنه المكان المثالي للاسترخاء بعد يوم طويل من الاستكشاف.', '<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة الديلوكس كينغ مع حوض استحمام ووجبة إفطار مجانية هي غرفة فسيحة تبلغ مساحتها حوالي 400 قدم مربع. وتحتوي على سرير بحجم كينغ مع مرتبة أعلى وسائد وحوض استحمام وتلفزيون بشاشة مسطحة مع قنوات الكابل ومكتب وكرسي وثلاجة صغيرة وآلة لصنع القهوة. تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر.\r\n\r\nالغرفة مصممة على الطراز الحديث بألوان محايدة. الجدران مطلية باللون الأبيض والأثاث مصنوع من الخشب الداكن. السرير مغطى بلحفة بيضاء فخمة والنوافذ بها ستائر قاتمة.\r\n\r\nتوفر الغرفة خدمة الواي فاي المجانية وجهاز تلفزيون بشاشة مسطحة مع قنوات الكابل. توجد أيضًا ثلاجة صغيرة وماكينة صنع القهوة في الغرفة.\r\n\r\nيتم تقديم وجبة إفطار مجانية في غرفة تناول الطعام بالفندق كل صباح. يشمل بوفيه الإفطار عادة البيض ولحم الخنزير المقدد والنقانق والفطائر والفطائر والحبوب والزبادي والفواكه والمعجنات.\r\n\r\nسرير كبير الحجم مع مرتبة أعلى وسادة\r\nحوض نقع\r\nتلفزيون بشاشة مسطحة مع قنوات الكابل\r\nواى فاى مجانى\r\nحمام خاص مع دش ومجفف شعر\r\nثلاجة صغيرة\r\nصانع القهوة\r\nإفطار مجاني</span></pre>', NULL, NULL, '2025-04-30 04:43:52', '2025-04-30 04:43:52'),
(155, 87, 140, 80, 'Business Class Room with High-Speed Internet and Work Desk', 'business-class-room-with-high-speed-internet-and-work-desk', 'This room is designed for business travelers who need a comfortable place to sleep and work. It features a king-size bed, a work desk with an ergonomic chair, high-speed internet access, a microwave, a fridge, a 37-inch TV, and a Keurig coffee maker', '<p>The room is decorated in a modern style with neutral colors. The bed is made with luxurious bedding and the desk has plenty of space to spread out work materials. The high-speed internet access is perfect for staying connected with clients or colleagues. The microwave and fridge are convenient for storing snacks and drinks. The 37-inch TV provides entertainment options and the Keurig coffee maker is a great way to start the day.</p>\r\n<p>Here are some additional details about the room:</p>\r\n<ul>\r\n<li><strong>Size:</strong> The room is approximately 350 square feet.</li>\r\n<li><strong>Amenities:</strong> In addition to the amenities listed above, the room also features a private bathroom with a shower, a hair dryer, and toiletries.</li>\r\n<li><strong>Pricing:</strong> The room typically starts at \\$150 per night.</li>\r\n</ul>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(156, 87, 141, 80, 'غرفة درجة الأعمال مع إنترنت عالي السرعة ومكتب عمل', 'ghrf-drg-alaaamal-maa-antrnt-aaaly-alsraa-omktb-aaml', 'تم تصميم هذه الغرفة للمسافرين من رجال الأعمال الذين يحتاجون إلى مكان مريح للنوم والعمل. تتميز بسرير بحجم كينغ ومكتب للعمل مع كرسي مريح وخدمة الإنترنت عالية السرعة وميكروويف وثلاجة وتلفزيون 37 بوصة وماكينة صنع القهوة Keurig', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرفة مصممة على الطراز الحديث بألوان محايدة. السرير مصنوع من بياضات أسرّة فاخرة والمكتب به مساحة كبيرة لنشر مواد العمل. يعد الوصول إلى الإنترنت عالي السرعة مثاليًا للبقاء على اتصال مع العملاء أو الزملاء. يعد الميكروويف والثلاجة مناسبين لتخزين الوجبات الخفيفة والمشروبات. يوفر التلفزيون مقاس 37 بوصة خيارات ترفيهية وتعد آلة صنع القهوة Keurig طريقة رائعة لبدء اليوم.\r\n\r\nفيما يلي بعض التفاصيل الإضافية حول الغرفة:\r\n\r\nالحجم: تبلغ مساحة الغرفة حوالي 350 قدم مربع.\r\nوسائل الراحة: بالإضافة إلى وسائل الراحة المذكورة أعلاه ، تحتوي الغرفة أيضًا على حمام خاص مع دش ومجفف شعر ولوازم استحمام.\r\nالتسعير: تبدأ الغرفة عادة بـ 150 دولارًا في الليلة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 04:46:31', '2025-04-30 04:46:31'),
(157, 87, 140, 81, 'Family-Friendly Rooms with Plenty of Space', 'family-friendly-rooms-with-plenty-of-space', 'Family-friendly rooms with plenty of space are perfect for families with children of all ages. These rooms offer ample space for everyone to spread out and relax, as well as amenities that make life with kids easier', '<p>Family-friendly rooms with plenty of space are typically larger than standard hotel rooms, with at least one bedroom and a separate living area. The bedrooms are often furnished with two double beds or a king-size bed, and the living area may have a sofa bed or futon for extra guests. The kitchenette is typically equipped with a stovetop, oven, refrigerator, microwave, and coffee maker. The dining area is usually small, but it\'s large enough for a family to eat together. The play area is often located in the living area and is furnished with toys and games for children. Some rooms also have a private balcony or patio where families can relax and enjoy the outdoors.</p>\r\n<p>Family-friendly rooms with plenty of space offer a number of benefits for families, including:</p>\r\n<ul>\r\n<li>More space to spread out and relax</li>\r\n<li>Amenities that make life with kids easier</li>\r\n<li>A private space for children to play</li>\r\n<li>A comfortable place for everyone to sleep</li>\r\n</ul>\r\n<p>Family-friendly rooms with plenty of space are ideal for families with children of all ages. These rooms are perfect for families who want to relax and enjoy their vacation together, without having to worry about being cramped or having to share a room with other guests.</p>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(158, 87, 141, 81, 'غرف صديقة للأسرة مع الكثير من المساحة', 'ghrf-sdyk-llasr-maa-alkthyr-mn-almsah', 'تعتبر الغرف المناسبة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. توفر هذه الغرف مساحة واسعة للجميع للانتشار والاسترخاء ، بالإضافة إلى وسائل الراحة التي تجعل الحياة مع الأطفال أسهل', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">عادةً ما تكون الغرف المناسبة للعائلات التي تحتوي على مساحة كبيرة أكبر من غرف الفنادق العادية ، وتحتوي على غرفة نوم واحدة على الأقل ومنطقة معيشة منفصلة. غالبًا ما تكون غرف النوم مؤثثة بسريرين مزدوجين أو سرير بحجم كينغ ، وقد تحتوي منطقة المعيشة على سرير أريكة أو فوتون للضيوف الإضافيين. عادةً ما يكون المطبخ الصغير مجهزًا بموقد مسطح وفرن وثلاجة وميكروويف وماكينة صنع القهوة. عادة ما تكون منطقة تناول الطعام صغيرة ، لكنها كبيرة بما يكفي لتناول الطعام معًا. غالبًا ما تقع منطقة اللعب في منطقة المعيشة وهي مؤثثة بالألعاب والألعاب للأطفال. تحتوي بعض الغرف أيضًا على شرفة خاصة أو فناء حيث يمكن للعائلات الاسترخاء والاستمتاع بالهواء الطلق.\r\n\r\nتوفر الغرف الملائمة للعائلات التي تتميز بمساحة كبيرة عددًا من المزايا للعائلات ، بما في ذلك:\r\n\r\nمساحة أكبر للانتشار والاسترخاء\r\nوسائل الراحة التي تجعل الحياة مع الأطفال أسهل\r\nمساحة خاصة للأطفال للعب\r\nمكان مريح ينام فيه الجميع\r\n\r\nتُعد الغرف الملائمة للعائلات ذات المساحة الكبيرة مثالية للعائلات التي لديها أطفال من جميع الأعمار. هذه الغرف مثالية للعائلات التي ترغب في الاسترخاء والاستمتاع بعطلتهم معًا ، دون الحاجة إلى القلق بشأن الازدحام أو الاضطرار إلى مشاركة الغرفة مع الضيوف الآخرين.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:07:09', '2025-04-30 05:07:09'),
(159, 87, 140, 82, 'Spacious Rooms with All the Amenities', 'spacious-rooms-with-all-the-amenities', 'These spacious rooms offer everything you need for a comfortable stay, including a king-size bed, a work desk, a sofa, a flat-screen TV, and free Wi-Fi. The bathrooms are also spacious and well-appointed, with walk-in showers and bathtubs.', '<p>The rooms are decorated in a modern style with neutral colors and simple furnishings. The windows offer plenty of natural light, and the views are often stunning. The rooms are also equipped with all the amenities you need to relax and unwind, including a minibar, a coffee maker, and an iron and ironing board.</p>\r\n<p>Here are some specific amenities that you can expect to find in these rooms:</p>\r\n<ul>\r\n<li>King-size bed</li>\r\n<li>Work desk</li>\r\n<li>Sofa</li>\r\n<li>Flat-screen TV</li>\r\n<li>Free Wi-Fi</li>\r\n<li>Walk-in shower</li>\r\n<li>Bathtub</li>\r\n<li>Minibar</li>\r\n<li>Coffee maker</li>\r\n<li>Iron and ironing board</li>\r\n</ul>\r\n<p>These rooms are perfect for couples, business travelers, or families. They are spacious and comfortable, and they offer all the amenities you need to make your stay enjoyable.</p>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(160, 87, 141, 82, 'غرف فسيحة مع جميع وسائل الراحة', 'ghrf-fsyh-maa-gmyaa-osayl-alrah', 'توفر هذه الغرف الفسيحة كل ما تحتاجه لإقامة مريحة ، بما في ذلك سرير بحجم كينغ ومكتب للعمل وأريكة وتلفزيون بشاشة مسطحة وخدمة الواي فاي المجانية. الحمامات أيضًا فسيحة ومجهزة جيدًا مع مقصورات دش وأحواض استحمام.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">الغرف مصممة على الطراز الحديث بألوان محايدة وأثاث بسيط. توفر النوافذ الكثير من الضوء الطبيعي ، وغالبًا ما تكون المناظر مذهلة. تم تجهيز الغرف أيضًا بجميع وسائل الراحة التي تحتاجها للاسترخاء والاسترخاء ، بما في ذلك ميني بار وماكينة صنع القهوة ومكواة وطاولة للكي.\r\n\r\nفيما يلي بعض وسائل الراحة المحددة التي يمكن أن تتوقع أن تجدها في هذه الغرف:\r\n\r\nسرير بحجم كينغ\r\nمكتب العمل\r\nكنبة\r\nتلفاز بشاشة مسطحة\r\nواى فاى مجانى\r\nامشي في الحمام\r\nحوض الاستحمام\r\nميني بار\r\nصانع القهوة\r\nمكواة وطاولة كي\r\n\r\nهذه الغرف مثالية للأزواج أو المسافرين من رجال الأعمال أو العائلات. إنها فسيحة ومريحة وتوفر جميع وسائل الراحة التي تحتاجها لجعل إقامتك ممتعة.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:21:53', '2025-04-30 05:21:53'),
(161, 87, 140, 83, 'Luxury Rooms for Your Next Vacation', 'luxury-rooms-for-your-next-vacation', 'Luxury rooms are the perfect way to indulge in a little bit of pampering and relaxation on your next vacation. These rooms typically offer a wide range of amenities and services, including spacious accommodations, plush bedding, private balconies or patios, and access to exclusive amenities such as spas, fitness centers, and restaurants.', '<p>Luxury rooms are designed to provide guests with the ultimate in comfort and convenience. They typically feature large, well-appointed bedrooms with king-size beds, plush linens, and luxurious bathrobes. The bathrooms are often equipped with separate soaking tubs and showers, as well as high-end toiletries.</p>\r\n<p>In addition to the spacious accommodations, luxury rooms also offer a variety of other amenities and services. These may include:</p>\r\n<ul>\r\n<li>Private balconies or patios with stunning views</li>\r\n<li>Access to exclusive amenities such as spas, fitness centers, and restaurants</li>\r\n<li>24-hour room service</li>\r\n<li>Personal butler service</li>\r\n<li>Complimentary Wi-Fi</li>\r\n<li>In-room bar</li>\r\n<li>Minibar</li>\r\n<li>Nespresso coffee machine</li>\r\n<li>Turndown service</li>\r\n</ul>\r\n<p>Whether you are looking for a romantic getaway, a family vacation, or a business trip, a luxury room is the perfect way to make your next vacation one to remember.</p>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08'),
(162, 87, 141, 83, 'غرف فاخرة لعطلتك القادمة', 'ghrf-fakhr-laatltk-alkadm', 'الغرف الفاخرة هي الطريقة المثلى للاستمتاع بقليل من التدليل والاسترخاء في عطلتك القادمة. تقدم هذه الغرف عادةً مجموعة واسعة من وسائل الراحة والخدمات ، بما في ذلك أماكن الإقامة الفسيحة ، والأسرة الفخمة ، والشرفات الخاصة أو الباحات ، والوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ، ومراكز اللياقة البدنية ، والمطاعم.', '<div class=\"tw-ta-container F0azHf tw-lfl\" style=\"text-align: right;\">\r\n<pre class=\"tw-data-text tw-text-large tw-ta\" dir=\"rtl\" style=\"text-align:right;\"><span class=\"Y2IQFc\" lang=\"ar\" style=\"text-align:right;\" xml:lang=\"ar\">تم تصميم الغرف الفاخرة لتوفر للضيوف أقصى درجات الراحة والرفاهية. تتميز عادةً بغرف نوم كبيرة ومجهزة جيدًا مع أسرّة بحجم كينغ وبياضات فخمة وأردية حمام فاخرة. غالبًا ما تكون الحمامات مُجهزة بأحواض استحمام ودُش منفصلة ، فضلاً عن أدوات النظافة الراقية.\r\n\r\nبالإضافة إلى أماكن الإقامة الفسيحة ، توفر الغرف الفاخرة أيضًا مجموعة متنوعة من وسائل الراحة والخدمات الأخرى. قد تشمل هذه:\r\n\r\nشرفات أو أفنية خاصة مع مناظر خلابة\r\nالوصول إلى وسائل الراحة الحصرية مثل المنتجعات الصحية ومراكز اللياقة البدنية والمطاعم\r\nخدمة الغرف على مدار 24 ساعة\r\nخدمة الخادم الشخصي\r\nواي فاي مجاني\r\nبار في الغرفة\r\nميني بار\r\nماكينة قهوة نسبرسو\r\nخدمة ترتيب الأسرة\r\n\r\nسواء كنت تبحث عن ملاذ رومانسي أو عطلة عائلية أو رحلة عمل ، فإن الغرفة الفاخرة هي الطريقة المثلى لجعل عطلتك القادمة لا تنسى.</span></pre>\r\n</div>\r\n<div class=\"tw-target-rmn tw-ta-container F0azHf tw-nfl\" style=\"text-align: right;\"> </div>', NULL, NULL, '2025-04-30 05:24:08', '2025-04-30 05:24:08');

-- --------------------------------------------------------

--
-- Table structure for table `user_room_coupons`
--

CREATE TABLE `user_room_coupons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `code` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `value` decimal(8,2) UNSIGNED NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `rooms` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_room_coupons`
--

INSERT INTO `user_room_coupons` (`id`, `user_id`, `name`, `code`, `type`, `value`, `start_date`, `end_date`, `serial_number`, `rooms`, `created_at`, `updated_at`) VALUES
(14, 83, 'Coupon         1', '123', 'percentage', '10.00', '2025-04-28', '2032-10-01', 1, NULL, '2025-04-28 11:48:15', '2025-04-28 11:48:15'),
(15, 83, 'Coupon 2', '12378', 'fixed', '20.00', '2025-04-28', '2025-04-29', 3, NULL, '2025-04-28 11:48:56', '2025-04-28 11:48:56'),
(16, 84, 'Coupon         1', '123', 'percentage', '10.00', '2025-04-28', '2032-10-01', 1, NULL, '2025-04-28 11:48:15', '2025-04-28 11:48:15'),
(17, 84, 'Coupon 2', '12378', 'fixed', '20.00', '2025-04-28', '2025-04-29', 3, NULL, '2025-04-28 11:48:56', '2025-04-28 11:48:56'),
(18, 85, 'Coupon         1', '123', 'percentage', '10.00', '2025-04-28', '2032-10-01', 1, NULL, '2025-04-28 11:48:15', '2025-04-28 11:48:15'),
(19, 85, 'Coupon 2', '12378', 'fixed', '20.00', '2025-04-28', '2025-04-29', 3, NULL, '2025-04-28 11:48:56', '2025-04-28 11:48:56'),
(20, 86, 'Coupon         1', '123', 'percentage', '10.00', '2025-04-28', '2032-10-01', 1, NULL, '2025-04-28 11:48:15', '2025-04-28 11:48:15'),
(21, 86, 'Coupon 2', '12378', 'fixed', '20.00', '2025-04-28', '2025-04-29', 3, NULL, '2025-04-28 11:48:56', '2025-04-28 11:48:56'),
(22, 87, 'Coupon         1', '123', 'percentage', '10.00', '2025-04-28', '2032-10-01', 1, NULL, '2025-04-28 11:48:15', '2025-04-28 11:48:15'),
(23, 87, 'Coupon 2', '12378', 'fixed', '20.00', '2025-04-28', '2025-04-29', 3, NULL, '2025-04-28 11:48:56', '2025-04-28 11:48:56');

-- --------------------------------------------------------

--
-- Table structure for table `user_room_reviews`
--

CREATE TABLE `user_room_reviews` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `room_id` bigint(20) UNSIGNED NOT NULL,
  `customer_id` bigint(20) NOT NULL,
  `rating` smallint(6) NOT NULL,
  `comment` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_sections`
--

CREATE TABLE `user_sections` (
  `id` int(11) NOT NULL,
  `user_id` int(11) NOT NULL,
  `search_section` tinyint(1) NOT NULL DEFAULT '1',
  `footer_section_status` tinyint(1) DEFAULT '1',
  `intro_section` tinyint(1) NOT NULL DEFAULT '1',
  `featured_rooms_section` tinyint(1) NOT NULL DEFAULT '1',
  `featured_rooms_category_section` tinyint(4) NOT NULL DEFAULT '1',
  `featured_services_section` tinyint(1) NOT NULL DEFAULT '1',
  `faq_section` tinyint(1) NOT NULL DEFAULT '1',
  `statistics_section` tinyint(1) NOT NULL DEFAULT '1',
  `video_section` tinyint(1) NOT NULL DEFAULT '1',
  `featured_package_section` tinyint(1) NOT NULL DEFAULT '1',
  `facilities_section` tinyint(1) NOT NULL DEFAULT '1',
  `testimonials_section` tinyint(1) NOT NULL DEFAULT '1',
  `blogs_section` tinyint(1) NOT NULL DEFAULT '1',
  `brand_section` tinyint(1) NOT NULL DEFAULT '1',
  `top_footer_section` tinyint(1) NOT NULL DEFAULT '1',
  `copyright_section` tinyint(1) NOT NULL DEFAULT '1',
  `additional_section_status` varchar(255) DEFAULT NULL,
  `about_additional_section_status` varchar(255) DEFAULT NULL,
  `about_info_section` tinyint(1) NOT NULL DEFAULT '1',
  `about_facility_section` tinyint(1) NOT NULL DEFAULT '1',
  `about_testimonial_section` tinyint(1) NOT NULL DEFAULT '1'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_sections`
--

INSERT INTO `user_sections` (`id`, `user_id`, `search_section`, `footer_section_status`, `intro_section`, `featured_rooms_section`, `featured_rooms_category_section`, `featured_services_section`, `faq_section`, `statistics_section`, `video_section`, `featured_package_section`, `facilities_section`, `testimonials_section`, `blogs_section`, `brand_section`, `top_footer_section`, `copyright_section`, `additional_section_status`, `about_additional_section_status`, `about_info_section`, `about_facility_section`, `about_testimonial_section`) VALUES
(73, 83, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, '{\"76\":\"1\",\"77\":\"1\",\"78\":\"1\",\"79\":\"1\",\"80\":\"1\",\"81\":\"1\",\"82\":\"1\",\"83\":\"1\",\"84\":\"1\",\"85\":\"1\",\"86\":\"1\",\"87\":\"1\",\"88\":\"1\",\"89\":\"1\"}', '{\"74\":\"1\",\"75\":\"1\",\"108\":\"1\",\"109\":\"1\",\"110\":\"1\"}', 1, 1, 1),
(74, 84, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL, '{\"111\":\"1\"}', 1, 1, 1),
(75, 85, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, '{\"91\":\"1\",\"92\":\"1\",\"93\":\"1\",\"94\":\"1\",\"95\":\"1\",\"96\":\"1\",\"97\":\"1\",\"98\":\"1\",\"99\":\"1\",\"100\":\"1\",\"107\":\"1\"}', '{\"112\":\"1\"}', 1, 1, 1),
(76, 86, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL, NULL, 1, 1, 1),
(77, 87, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, NULL, NULL, 1, 1, 1);

-- --------------------------------------------------------

--
-- Table structure for table `user_section_headings`
--

CREATE TABLE `user_section_headings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `room_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `room_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `room_section_text` text COLLATE utf8_unicode_ci,
  `room_category_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `room_category_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `service_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `service_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_button` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_button_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_video_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `video_section_image_two` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `package_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `package_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facility_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facility_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facility_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `testimonial_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `testimonial_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `testimonial_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `faq_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `faq_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `faq_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `blog_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `blog_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_img` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_image_two` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_image_three` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_primary_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_secondary_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_text` text COLLATE utf8_unicode_ci,
  `intro_button_text` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_button_url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `intro_member_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hero_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hero_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hero_section_subtitle` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hero_section_button_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `hero_section_button_url` text COLLATE utf8_unicode_ci,
  `hero_section_video_link` text COLLATE utf8_unicode_ci,
  `about_page_about_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_about_section_text` text COLLATE utf8_unicode_ci,
  `about_page_about_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_facility_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_facility_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_testimonial_section_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `about_page_testimonial_section_text` text COLLATE utf8_unicode_ci,
  `statistics_section_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `facility_section_image_two` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `facility_section_image_three` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_section_headings`
--

INSERT INTO `user_section_headings` (`id`, `language_id`, `user_id`, `room_section_title`, `room_section_subtitle`, `room_section_text`, `room_category_section_title`, `room_category_section_image`, `service_section_title`, `service_section_subtitle`, `video_section_title`, `video_section_subtitle`, `video_section_button`, `video_section_button_url`, `video_section_video_url`, `video_section_image`, `video_section_image_two`, `package_section_title`, `package_section_subtitle`, `facility_section_title`, `facility_section_subtitle`, `facility_section_image`, `testimonial_section_title`, `testimonial_section_subtitle`, `testimonial_section_image`, `faq_section_title`, `faq_section_subtitle`, `faq_section_image`, `blog_section_title`, `blog_section_subtitle`, `intro_section_image`, `intro_img`, `intro_image_two`, `intro_image_three`, `intro_primary_title`, `intro_secondary_title`, `intro_text`, `intro_button_text`, `intro_button_url`, `intro_member_image`, `hero_section_image`, `hero_section_title`, `hero_section_subtitle`, `hero_section_button_name`, `hero_section_button_url`, `hero_section_video_link`, `about_page_about_section_title`, `about_page_about_section_text`, `about_page_about_section_image`, `about_page_facility_section_title`, `about_page_facility_section_image`, `about_page_testimonial_section_title`, `about_page_testimonial_section_text`, `statistics_section_image`, `created_at`, `updated_at`, `facility_section_image_two`, `facility_section_image_three`) VALUES
(43, 132, 83, 'Featured Rooms', 'Modern Hotel & Room For Luxury Living', 'Ullam corporis suscipit laboriosam nisi ut aliqucoe modi consequatur Quis autem vel eum iure repreh nderitqui in ea voluptate velit esse quam nihil molestiae', NULL, NULL, 'Our Services', 'We Provide Most Exclusive Hotel & Room Services', 'Looking For Luxury Hotel', 'Book Right Now', 'Book Now', '/nuvora/rooms', 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'cc8503fb0f39b4a923d558a7b714941cf793eba1.jpg', NULL, 'Featured Tour Packages', 'Take a Look at Our Awesome Packages', 'Why Choose Us', 'We Care You & We Feel What’s Needs For Good Living', '37275fdefc1c30fd62772945526d5844eef1ea40.jpg', 'Clients Feedback', 'What Our Satisfied Clients Say About Us', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '94264bc124583448dd3a51fd6d69278eeea5dece.jpg', NULL, NULL, 'About Us', 'Welcome To Multihotel Modern Hotel Room Booking Services', 'But I must explain to you how all this mistaken idea denouncing pleasure and praising pain was born and I will give you a complec ount of the system, and expound the actual teachin reatexplorer of the truth, the master-builder of human happiness. No ways one rejdislikes, or avoids pleasure itself, because', NULL, NULL, NULL, 'f9e105624d732be60b92ec9680c86f072ee3156c.jpg', 'Welcome to Nuvora', 'Luxury Living', 'Get  Started', '/nuvora/rooms', 'https://youtu.be/DAgzUAPd3Sw?si=Fo0pbQYuMohtsqcv', 'Welcome to Hotelia Modern Hotels Room Sell Services', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat.', 'e3d9621f2082ccf115b9a3763c356acc1d049ffe.png', 'We Care You & We Feel What’s Needs For Good Living', 'f0684c14b572e85a16b05a7fb4c1dd5385460c1a.png', 'What Say Our Customer About BigiBa', 'Users interested in investing in real estate can register on the platform by providing their own bank account', NULL, '2025-04-27 12:53:59', '2025-04-27 12:53:59', NULL, NULL),
(44, 133, 83, 'غرف مميزة', 'فندق وغرفة حديثة للعيش الفاخر', 'ولكن من سيتعهد في أي وقت مضى ، ولكن من أجل التخلص من أنماط عواقب أي من الجسد أو قانونه فيه ، متعة لا تحمل أي تبرير مزعج', NULL, NULL, 'خدماتنا', 'نحن نقدم خدمات الفنادق والغرف الأكثر تميزًا', 'لبحث عن فندق فاخر', 'احجز الآن', 'احجز الآن', 'https://example.com/', 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'b1c32f6e41ce227b3bc9fa603b351934b534591f.jpg', NULL, 'حزم جولة مميزة', 'ألق نظرة على حزمنا الرائعة', 'لماذا أخترتنا', 'نحن نهتم بك ونشعر بما تحتاجه لحياة جيدة', '3e5f63c40c3efa24d68e96f1830db28a94312a97.jpg', 'ملاحظات العملاء', 'ماذا يقول عملاؤنا الراضون عنا', NULL, NULL, NULL, NULL, NULL, NULL, NULL, '3f0f17abb443851c7073cd62be0d4eb697fb2669.jpg', NULL, NULL, 'معلومات عنا', 'مرحبًا بكم في غرفة فندق الحديثة التي تبيع الخدمات', 'لكن يجب أن أشرح لك كيف ولدت كل هذه الفكرة الخاطئة التي تندد بالمتعة وتمجيد الألم ، وسأعطيكم تكملة للنظام ، وأشرح المعلم الفعلي لاستكشاف الحقيقة ، الباني الرئيسي للسعادة البشرية. لا توجد طريقة يرفض فيها المرء ، أو يتجنب المتعة نفسها ، لأن', NULL, NULL, NULL, '101a822c150efab1eac830d229b0af9e4533c457.jpg', 'مرحبا بكم في هوتيليا', 'المعيشة الفاخرة', 'البدء', 'https://example.com/', NULL, 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم الللمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'هناك العديد من نصوص لوريم إيبسوم المتاحة، ولكن معظمها خضع للتعديل بشكل ما، إما عن طريق إدخال بعض الفكاهة، أو كلمات عشوائية تبدو غير قابلة للتصديق. إذا كنت ستستخدم نصًا من لوريم إيبسوم، فتأكد من عدم وجود أي شيء محرج مخفي في النص. جميع مولدات لوريم إيبسوم على الإنترنت تميل إلى التكرار.', '51d66c77d0d86dd30f376991ed814d87e984bd97.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم الللمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', '73a393d90dbbb1f3feaf5064de3a06649c4fe9b3.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص.', NULL, '2025-04-27 12:53:59', '2025-04-27 12:53:59', NULL, NULL),
(45, 134, 84, 'Featured Rooms', 'Modern Hotel & Room For Luxury Living', NULL, NULL, NULL, 'Our Services', 'We Provide Most Exclusive Hotel & Room Services', 'Looking For Luxury Hotel', 'Book Right Now', 'Book Right Now', '/serava/rooms', 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'f43657c74aad857ea3003bba87156f775548dedb.jpg', NULL, 'Featured Tour Packages', 'Take a Look at Our Awesome Packages', NULL, NULL, NULL, 'Clients Feedback', 'What Our Satisfied Clients Say About Us', 'fd4eb681b39cccddc300c173fb2584c4311a7b97.jpg', 'Frequently Asked Questions', 'Since 1990 We Provides Professional Service', 'f223cf2daa50309202e4f3932f41a0cec50832fd.jpg', 'Latest Blogs', 'Take a Look at Our Awesome Blogs', NULL, '69d8423ecc3f8cf5e159e5647f59c22e9eb8fe54.jpg', NULL, NULL, 'Welcome To Multihotel Modern Hotel Room Booking Services', NULL, 'But I must explain to you how all this mistaken idea denouncing pleasure and praising pain was born and I will give you a complec ount of the system, and expound the actual teachin reatexplorer of the truth, the master-builder of human happiness. No ways one rejdislikes, or avoids pleasure itself, because', NULL, NULL, NULL, '40575658a5cb460693c486915c5fc14a6e53be51.jpg', 'Welcome to Serava', 'Luxury Living', 'Get Started', '/serava/rooms', NULL, 'Welcome to Hotelia Modern Hotels Room Sell Services', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat.', 'a9a9caac207af7d3c8452e5656e6fd92e016c6c9.png', 'We Care You & We Feel What’s Needs For Good Living', 'dbc80f304ff9371692624952d4b66c6fe9215308.png', 'What Say Our Customer About BigiBa', 'Users interested in investing in real estate can register on the platform by providing their own bank account', NULL, '2025-04-27 12:55:29', '2025-04-27 12:55:29', NULL, NULL),
(46, 135, 84, 'غرف مميزة', 'فندق وغرفة حديثة للعيش الفاخر', NULL, NULL, NULL, 'خدماتنا', 'نحن نقدم خدمات الفنادق والغرف الأكثر تميزًا', 'البحث عن فندق فاخر', 'احجز الآن', 'احجز الآن', 'http://example.com/', 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'b08c3695361d56878fc560ac4ba3b88edd2b5b52.jpg', NULL, 'حزم جولة مميزة', 'ألق نظرة على حزمنا الرائعة', NULL, NULL, NULL, 'ملاحظات العملاء', 'ماذا يقول عملاؤنا الراضون عنا', '5f10e23935ab7d4ee904b68ef9b7ace5a8093016.jpg', 'أسئلة مكررة', 'منذ 1990 نحن نقدم خدمة احترافية', 'cc77ef2df34a0199977a685b7bbef6c500377d1a.jpg', 'أحدث المدونات', 'ألق نظرة على مدوناتنا الرائعة', NULL, 'a5d9fd62c0971bca22795a35ba5607c9fb295524.jpg', NULL, NULL, 'معلومات عنامرحبًا بكم في غرفة فندق الحديثة التي تبيع الخدمات', NULL, 'لكن يجب أن أشرح لك كيف ولدت كل هذه الفكرة الخاطئة التي تندد بالمتعة وتمجيد الألم ، وسأعطيكم تكملة للنظام ، وأشرح المعلم الفعلي لاستكشاف الحقيقة ، الباني الرئيسي للسعادة البشرية. لا توجد طريقة يرفض فيها المرء\r\n ، أو يتجنب المتعة نفسها ، لأن', NULL, NULL, NULL, 'fdf802fb8b0c4c7d54b70ff928af3d63ed6baa56.jpg', 'مرحبا بكم في هوتيليا المعيشة الفاخرة', 'المعيشة الفاخرة', 'البدء', 'http://example.com/', NULL, 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم الللمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'هناك العديد من نصوص لوريم إيبسوم المتاحة، ولكن معظمها خضع للتعديل بشكل ما، إما عن طريق إدخال بعض الفكاهة، أو كلمات عشوائية تبدو غير قابلة للتصديق. إذا كنت ستستخدم نصًا من لوريم إيبسوم، فتأكد من عدم وجود أي شيء محرج مخفي في النص. جميع مولدات لوريم إيبسوم على الإنترنت تميل إلى التكرار.', '8d42c57e309ce7917a4b068831dc92ba9ec39744.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم الللمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', '462433a2be63af44b7b71cafd88770e51d0a737c.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص.', NULL, '2025-04-27 12:55:29', '2025-04-27 12:55:29', NULL, NULL),
(47, 136, 85, 'Newest Featured Rooms', NULL, NULL, 'Most Popular Categories', '989a774372b684730356e3b99f3e07e18cc09b1f.jpg', 'We Always Provide Better Amenities For You', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by humour, or randomised words which don\'t look even.', NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', '9f954298300267cd0a9befcb35692e3b057516a5.jpg', '6367050122c5d060c6bdb81afa04abbd64572c74.jpg', 'Explore Our Newest Featured Rooms', NULL, NULL, NULL, NULL, 'Our Customers Feedback', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '9a5739ae92b3ac1e5d40d824fe5b41609a21afa1.jpg', 'a844bdc74831f6b3244dc6df264243c2f321322b.jpg', 'f58897b642b01b70b42215b9eb7d39a627350271.jpg', 'Where You Feel Relax And Comfortable', 'Lorem ipsum dolor sit amet, consectetur adipisicing elit. Omnis porro blanditiis ipsum repellendus aspernatur! Nobis, quo eum alias magni, consectetur esse, accusantium adipisci repudiandae quibusdam.', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Id sint quam facere suscipit ea quibusdam esse vero. Repellendus!', 'View All Rooms', 'example.com', '6207e9ca49952d1c7498af744983768130e7b74d.png', NULL, NULL, NULL, NULL, NULL, NULL, 'Welcome to Hotelia Modern Hotels', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable.If you are going to use a passage of Lorem Ipsum, you need to', 'af9c3f3504bd8acb36e56c209e446461e4715de2.png', 'We Care You & We Feel What’s Needs For Good Living', 'ef86771364c4367fc3579e2de30d85f924d17511.png', 'What Say Our Customer About BigiBa', 'Users interested in investing in real estate can register on the platform by providing their own bank account', '08a2938c959973f728f68e8086dc8b0db1492222.jpg', '2025-04-27 12:56:32', '2025-04-27 12:56:32', NULL, NULL),
(48, 137, 85, 'أحدث الغرف المميزة', NULL, NULL, 'تصفح الفئات الأكثر شعبية', '4102234f6892693ed425a1a75598eaf517360764.jpg', 'نحن نقدم دائمًا وسائل راحة أفضل لك', 'هناك العديد من الاختلافات في مقاطع Lorem Ipsum المتاحة، ولكن الأغلبية تعرضت للتغيير في شكل ما، عن طريق الفكاهة، أو الكلمات العشوائية التي لا تبدو حتى', NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', '5e62d2b16fa6c65b8107fe6ef4652483567c5bc4.jpg', '850503fb19d264ce2a1b96e25ee1f99c32355d2e.jpg', 'استكشف أحدث غرفنا المميزة', NULL, NULL, NULL, NULL, 'آراء عملائنا', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '4f1547af0682050dc5dc6d2c1a4248cd26cb2c60.jpg', '6d90ff489dfc06e641b4366ea4c15049eafd57d3.jpg', 'ed677f0292b499f5d5e552eab761ca35247eefa5.jpg', 'حيث تشعر بالاسترخاء والراحة', 'لقد ثبت أن تعلم أي لغة أسرع عند سماع متحدثيها الأصليين. لهذا السبب، جعل لغويونا الاستماع إلى متحدثيها الأصليين جزءًا أساسيًا.', 'لقد ثبت أن تعلم أي لغة أسرع عند سماع متحدثيها الأصليين. ولذلك، جعل لغويونا الاستماع إلى متحدثيها الأصليين جزءًا أساسيًا من تجربة التعلم. جميع العبارات في التطبيق مسجلة من قبل متحدثين محترفين للغة العربية، لتتمكن من الاسترخاء واستيعاب المعنى الصحيح.', 'أحدث الغرف', 'example.com', 'ad846af4e2382a21dd35773429fab7c3d9fdc70c.png', NULL, NULL, NULL, NULL, NULL, NULL, 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من', 'هناك العديد من نصوص لوريم إيبسوم المتاحة، ولكن معظمها خضع للتعديل بشكل ما، إما عن طريق إدخال بعض الفكاهة، أو كلمات عشوائية تبدو غير قابلة للتصديق. إذا كنت ستستخدم نصًا من لوريم إيبسوم، فتأكد من عدم وجود أي شيء محرج مخفي في النص. جميع مولدات لوريم إيبسوم على الإنترنت تميل إلى التكرار. محرج مخفي في النص. جميع مولدات لوريم إيبسوم على الإنترنت تميل إلى التكرار.', 'd450b0726dde3adb462b8fab138fa8db37063b0d.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم', 'b55add686a3d4c3e4d7a6f1fa30868af29e08919.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص.', '30d55f05f93ff6e278a263edd9ed58c84cbd8234.jpg', '2025-04-27 12:56:32', '2025-04-27 12:56:32', NULL, NULL),
(49, 138, 86, 'Explore Featured Rooms', NULL, NULL, 'Browse Popular Destinations', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', '1d56e7eada23ab84f37ea3f2a0c12da5ccee53f8.jpg', NULL, 'Explore Our Most Latest Tour Packages', NULL, 'Why You Should Choose Our Beautiful Packages?', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by humour.', '0c82c30df50241ea969d746b058f0f94b6a7ead9.jpg', NULL, NULL, NULL, NULL, NULL, NULL, 'Read Our Blog Post', NULL, NULL, '23397c79d073d621aff98a307ec36af267a11575.jpg', NULL, NULL, 'We Provide Reasonable Good Package For You', NULL, 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi fugiat labore quis! Vero, tenetur labore! Nulla iure error sapiente incidunt dolorem odit ipsa molestias, itaque laborum asperiores ipsam.', 'View All Rooms', 'example.com', '4fb7310fab8b3b470c62625fa08d306b76b8ba6b.png', NULL, NULL, NULL, NULL, NULL, NULL, 'Welcome to Hotelia Modern Hotels Room Sell Services', 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat.', '8adb1a2b499f4a7ace7a0d84a369e1dcf9ee3dea.png', 'We Care You & We Feel What’s Needs For Good Living', '47649e880f182143b13883ece1b4a340f2a4afdd.png', 'What Say Our Customer About BigiBa', 'Users interested in investing in real estate can register on the platform by providing their own bank account', NULL, '2025-04-27 12:58:58', '2025-04-27 12:58:58', NULL, NULL),
(50, 139, 86, 'تصفح الفئات الأكثر شعبية', NULL, NULL, 'تصفح الفئات الأكثر شعبية', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', '5d2694e2587e35562dd6c8e1aac6c9d6ad9367b9.jpg', NULL, 'استكشف أحدث غرفنا المميزة', NULL, 'اقرأ تدوينة مدونتنا', 'لماذا عليك اختيار باقاتنا الرائعة؟', '6f2d58142ffc9378efc4663c2dabed0526d30f1a.jpg', NULL, NULL, NULL, NULL, NULL, NULL, 'تتوفر العديد من نصوص لوريم إيبسوم، ولكن معظمها خضع للتعديل بشكل أو بآخر لأسبابٍ ما.', NULL, NULL, '414f8f881d9d514310a61f836f9594558ef3f0aa.jpg', NULL, NULL, 'حيث تشعر بالاسترخاء والراحة', NULL, 'لقد ثبت أن تعلم أي لغة أسرع عند سماع متحدثيها الأصليين. ولذلك، جعل لغويونا الاستماع إلى متحدثيها الأصليين جزءًا أساسيًا من تجربة التعلم. جميع العبارات في التطبيق مسجلة من قبل متحدثين محترفين للغة العربية، لتتمكن من الاسترخاء واستيعاب المعنى الصحيح.', 'أحدث الغرف', 'example.com', NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال', 'هناك العديد من نصوص لوريم إيبسوم المتاحة، ولكن معظمها خضع للتعديل بشكل ما، إما عن طريق إدخال بعض الفكاهة، أو كلمات عشوائية تبدو غير قابلة للتصديق. إذا كنت ستستخدم نصًا من لوريم إيبسوم، فتأكد من عدم وجود أي شيء محرج مخفي في النص. جميع مولدات لوريم إيبسوم على الإنترنت تميل إلى التكرار.لدات لوريم إيبسوم على الإنترنت تميل إلى التكرار. الفكاهة، أو كلمات عشوائية تبدو غير قابلة للتصديق. إذا كنت ستستخدم نصً', '95366e0ad6b3add90658d64685b5497dd0dd8fb1.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم الللمستخدمين', '0044f053dde9d904ad3dd81a12a57261b642bac2.png', 'للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم ال', 'يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص. يمكن للمستخدمين المهتمين بالاستثمار العقاري التسجيل في المنصة من خلال تقديم حسابهم المصرفي الخاص.', NULL, '2025-04-27 12:58:58', '2025-04-27 12:58:58', NULL, NULL),
(51, 140, 87, 'Explore Featured Rooms', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'e52c7475f464d47ac5b9d89f5b2e90762fc9b762.jpg', NULL, 'Explore Our Most Latest Tour Packages', NULL, 'Why You Should Choose Our Beautiful Packages?', 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Sit autem alias tempore inventore incidunt ducimus! Quod praesentium asperiores dicta eum repellendus aliquid saepe aut perferendis! Nobis doloremque iusto praesentium id.', 'eeca14a8e1b265fca6efb442e503b48f6f9c9272.jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'b2e679986abcd1202142df369f83e842b2b67d04.jpg', '62108d830f812305f41a8224a9cf219af4e45d30.jpg', NULL, 'We Are Your Trusted Travel And Tour Partner', NULL, 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Modi fugiat labore quis! Vero, tenetur labore! Nulla iure error sapiente incidunt dolorem odit ipsa molestias, itaque laborum asperiores ipsam.', 'All Packages', 'example.com', 'c22fc7726841c1f0be814cb30724fe8cfac8d1db.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'f0769e01d92f6f33e7f6ebdbc666b32a7e50e17c.jpg', '2025-04-27 13:00:52', '2025-04-27 13:00:52', 'fee1871b68dacb780ed5d15a15113f8f7cab9064.jpg', 'b8d9921be1f05696370b529bbd8b8fd5fa0370aa.jpg'),
(52, 141, 87, 'غرف مميزة', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'https://www.youtube.com/watch?v=4eJ8sJGh5dA', 'a83d2e23c9f3a02cb812c4728cd93a82a0a76919.jpg', NULL, 'استكشف أحدث باقاتنا السياحية', NULL, 'لماذا يجب عليك اختيار عروضنا الجميلة؟', 'ما هي الطموحات التي تمليها على طارد بعض السوائل أو التفضيلاتما هي الطموحات التي تمليها على طارد بعض السوائل أو التفضيلات', '147fd03429cf8b47409785784d48574f7a94b1d3.jpg', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, 'cc941033371d0168185f7eba6a38849f42e24d1f.jpg', '8983de175fd4c11cb3edd9a1b548c95ba892931b.jpg', NULL, 'نحن شريكك الموثوق في السفر', NULL, 'لكن يجب أن أشرح لك كيف ولدت كل هذه الفكرة الخاطئة التي تدين اللذة وتشيد بالألم، وسوف أعطيك وصفًا كاملاً للنظام، وأشرح لك المستكشف الحقيقي للحقيقة', 'كل الحزمة', 'example.com', '7bd94a5bb0595e1ca857f185238e3e3c0ad9ba6e.png', NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '0dac25452305abd8f67ac7c3978cc420cabcd085.jpg', '2025-04-27 13:00:52', '2025-04-27 13:00:52', '6b3e06ffa5d98b711e15ce3263962e422ca6d2db.jpg', '74e36d0d7360af2ee64633c8b0268f8f95b7798c.jpg');

-- --------------------------------------------------------

--
-- Table structure for table `user_seos`
--

CREATE TABLE `user_seos` (
  `id` int(11) NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `language_id` int(11) DEFAULT NULL,
  `home_meta_keywords` varchar(255) DEFAULT NULL,
  `home_meta_description` text,
  `blogs_meta_keywords` varchar(255) DEFAULT NULL,
  `blogs_meta_description` text,
  `login_meta_keywords` varchar(255) DEFAULT NULL,
  `login_meta_description` text,
  `sign_up_meta_keywords` varchar(255) DEFAULT NULL,
  `sign_up_meta_description` text,
  `faqs_meta_description` text,
  `faqs_meta_keywords` varchar(255) DEFAULT NULL,
  `contact_meta_description` text,
  `contact_meta_keywords` varchar(255) DEFAULT NULL,
  `forget_password_meta_description` text,
  `forget_password_meta_keywords` varchar(255) DEFAULT NULL,
  `gallery_meta_keywords` varchar(255) DEFAULT NULL,
  `gallery_meta_description` text,
  `services_meta_keywords` varchar(255) DEFAULT NULL,
  `services_meta_description` text,
  `rooms_meta_keywords` varchar(255) DEFAULT NULL,
  `rooms_meta_description` text,
  `packages_meta_keywords` varchar(255) DEFAULT NULL,
  `packages_meta_description` text,
  `about_meta_description` varchar(255) DEFAULT NULL,
  `about_meta_keywords` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_seos`
--

INSERT INTO `user_seos` (`id`, `user_id`, `language_id`, `home_meta_keywords`, `home_meta_description`, `blogs_meta_keywords`, `blogs_meta_description`, `login_meta_keywords`, `login_meta_description`, `sign_up_meta_keywords`, `sign_up_meta_description`, `faqs_meta_description`, `faqs_meta_keywords`, `contact_meta_description`, `contact_meta_keywords`, `forget_password_meta_description`, `forget_password_meta_keywords`, `gallery_meta_keywords`, `gallery_meta_description`, `services_meta_keywords`, `services_meta_description`, `rooms_meta_keywords`, `rooms_meta_description`, `packages_meta_keywords`, `packages_meta_description`, `about_meta_description`, `about_meta_keywords`) VALUES
(13, 84, 134, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(14, 86, 138, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(15, 87, 140, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(16, 83, 132, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL),
(17, 83, 133, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `user_services`
--

CREATE TABLE `user_services` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `service_icon` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `details_page_status` tinyint(4) NOT NULL COMMENT '0 - disable, 1 - enable',
  `serial_number` int(11) NOT NULL,
  `is_featured` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0 - will not show in home page, 1 - will show in home page',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_services`
--

INSERT INTO `user_services` (`id`, `user_id`, `service_icon`, `details_page_status`, `serial_number`, `is_featured`, `created_at`, `updated_at`) VALUES
(18, 83, 'fas fa-dumbbell', 0, 6, 1, '2025-04-30 12:54:12', '2025-05-03 04:57:51'),
(19, 83, 'fas fa-calendar-alt', 0, 5, 1, '2025-04-30 12:55:00', '2025-05-03 04:57:49'),
(20, 83, 'fas fa-headset', 0, 4, 1, '2025-04-30 12:55:33', '2025-05-03 04:57:47'),
(21, 83, 'fas fa-hiking', 1, 3, 1, '2025-04-30 12:58:06', '2025-05-03 04:57:40'),
(22, 83, 'fas fa-lemon', 1, 2, 1, '2025-04-30 12:59:10', '2025-05-03 04:57:38'),
(23, 83, 'fas fa-building', 1, 1, 1, '2025-04-30 13:00:34', '2025-05-07 07:07:37'),
(24, 84, 'fas fa-dumbbell', 0, 6, 1, '2025-04-30 12:54:12', '2025-05-03 09:16:29'),
(25, 84, 'fas fa-calendar-alt', 0, 5, 1, '2025-04-30 12:55:00', '2025-05-03 09:16:27'),
(26, 84, 'fas fa-headset', 0, 4, 1, '2025-04-30 12:55:33', '2025-05-03 09:16:25'),
(27, 84, 'fas fa-hiking', 1, 3, 1, '2025-04-30 12:58:06', '2025-05-03 09:16:23'),
(28, 84, 'fas fa-lemon', 1, 2, 1, '2025-04-30 12:59:10', '2025-05-03 09:16:22'),
(29, 84, 'fas fa-building', 1, 1, 1, '2025-04-30 13:00:34', '2025-05-03 09:16:21'),
(30, 85, 'fas fa-dumbbell', 0, 6, 1, '2025-04-30 06:54:12', '2025-05-02 22:57:51'),
(31, 85, 'fas fa-calendar-alt', 0, 5, 1, '2025-04-30 06:55:00', '2025-05-02 22:57:49'),
(32, 85, 'fas fa-headset', 0, 4, 1, '2025-04-30 06:55:33', '2025-05-02 22:57:47'),
(33, 85, 'fas fa-hiking', 1, 3, 1, '2025-04-30 06:58:06', '2025-05-02 22:57:40'),
(34, 85, 'fas fa-lemon', 1, 2, 1, '2025-04-30 06:59:10', '2025-05-02 22:57:38'),
(35, 85, 'fas fa-building', 1, 1, 1, '2025-04-30 07:00:34', '2025-05-02 22:57:35'),
(36, 86, 'fas fa-dumbbell', 0, 6, 1, '2025-04-30 06:54:12', '2025-05-02 22:57:51'),
(37, 86, 'fas fa-calendar-alt', 0, 5, 1, '2025-04-30 06:55:00', '2025-05-02 22:57:49'),
(38, 86, 'fas fa-headset', 0, 4, 1, '2025-04-30 06:55:33', '2025-05-02 22:57:47'),
(39, 86, 'fas fa-hiking', 1, 3, 1, '2025-04-30 06:58:06', '2025-05-02 22:57:40'),
(40, 86, 'fas fa-lemon', 1, 2, 1, '2025-04-30 06:59:10', '2025-05-02 22:57:38'),
(41, 86, 'fas fa-building', 1, 1, 1, '2025-04-30 07:00:34', '2025-05-02 22:57:35'),
(42, 87, 'fas fa-dumbbell', 0, 6, 1, '2025-04-30 06:54:12', '2025-05-02 22:57:51'),
(43, 87, 'fas fa-calendar-alt', 0, 5, 1, '2025-04-30 06:55:00', '2025-05-02 22:57:49'),
(44, 87, 'fas fa-headset', 0, 4, 1, '2025-04-30 06:55:33', '2025-05-02 22:57:47'),
(45, 87, 'fas fa-hiking', 1, 3, 1, '2025-04-30 06:58:06', '2025-05-02 22:57:40'),
(46, 87, 'fas fa-lemon', 1, 2, 1, '2025-04-30 06:59:10', '2025-05-02 22:57:38'),
(47, 87, 'fas fa-building', 1, 1, 1, '2025-04-30 07:00:34', '2025-05-02 22:57:35');

-- --------------------------------------------------------

--
-- Table structure for table `user_service_contents`
--

CREATE TABLE `user_service_contents` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `service_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) NOT NULL,
  `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `slug` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
  `summary` text COLLATE utf8_unicode_ci NOT NULL,
  `content` longtext COLLATE utf8_unicode_ci,
  `meta_keywords` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `meta_description` text COLLATE utf8_unicode_ci,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_service_contents`
--

INSERT INTO `user_service_contents` (`id`, `language_id`, `service_id`, `user_id`, `title`, `slug`, `summary`, `content`, `meta_keywords`, `meta_description`, `created_at`, `updated_at`) VALUES
(32, 132, 18, 83, 'GYM & Yoga', 'gym-yoga', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:54:12', '2025-04-30 12:54:12'),
(33, 133, 18, 83, 'رياضة ويوجا', 'ryad-oyoga', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:54:12', '2025-04-30 12:54:12'),
(34, 132, 19, 83, 'Event & Party', 'event-party', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:55:00', '2025-04-30 12:55:00'),
(35, 133, 19, 83, 'حدث وحفل', 'hdth-ohfl', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:55:00', '2025-04-30 12:55:00'),
(36, 132, 20, 83, 'Sports & Gaming', 'sports-gaming', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:55:33', '2025-04-30 12:55:33'),
(37, 133, 20, 83, 'رياضة وألعاب', 'ryad-oalaaab', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:55:33', '2025-04-30 12:55:33'),
(38, 132, 21, 83, 'Spa & Fitness', 'spa-fitness', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 12:58:06', '2025-04-30 12:58:06'),
(39, 133, 21, 83, 'سبا ولياقة بدنية', 'sba-olyak-bdny', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 12:58:06', '2025-04-30 12:58:06'),
(40, 132, 22, 83, 'Food & Restaurant', 'food-restaurant', 'Great explorer of the truth the ter-blde human happiness one reject', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</span></p>', NULL, NULL, '2025-04-30 12:59:10', '2025-04-30 12:59:10'),
(41, 133, 22, 83, 'طعام ومطعم', 'taaam-omtaam', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 12:59:10', '2025-04-30 12:59:10'),
(42, 132, 23, 83, 'Rooms & Appartment', 'rooms-appartment', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 13:00:34', '2025-04-30 13:00:34'),
(43, 133, 23, 83, 'الغرف والشقق', 'alghrf-oalshkk', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p style=\"text-align:right;\"><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 13:00:34', '2025-04-30 13:00:34'),
(44, 134, 24, 84, 'GYM & Yoga', 'gym-yoga', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:54:12', '2025-04-30 12:54:12'),
(45, 135, 24, 84, 'رياضة ويوجا', 'ryad-oyoga', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:54:12', '2025-04-30 12:54:12'),
(46, 134, 25, 84, 'Event & Party', 'event-party', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:55:00', '2025-04-30 12:55:00'),
(47, 135, 25, 84, 'حدث وحفل', 'hdth-ohfl', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:55:00', '2025-04-30 12:55:00'),
(48, 134, 26, 84, 'Sports & Gaming', 'sports-gaming', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 12:55:33', '2025-04-30 12:55:33'),
(49, 135, 26, 84, 'رياضة وألعاب', 'ryad-oalaaab', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 12:55:33', '2025-04-30 12:55:33'),
(50, 134, 27, 84, 'Spa & Fitness', 'spa-fitness', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 12:58:06', '2025-04-30 12:58:06'),
(51, 135, 27, 84, 'سبا ولياقة بدنية', 'sba-olyak-bdny', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 12:58:06', '2025-04-30 12:58:06'),
(52, 134, 28, 84, 'Food & Restaurant', 'food-restaurant', 'Great explorer of the truth the ter-blde human happiness one reject', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</span></p>', NULL, NULL, '2025-04-30 12:59:10', '2025-04-30 12:59:10'),
(53, 135, 28, 84, 'طعام ومطعم', 'taaam-omtaam', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 12:59:10', '2025-04-30 12:59:10'),
(54, 134, 29, 84, 'Rooms & Appartment', 'rooms-appartment', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 13:00:34', '2025-04-30 13:00:34'),
(55, 135, 29, 84, 'الغرف والشقق', 'alghrf-oalshkk', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p style=\"text-align:right;\"><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 13:00:34', '2025-04-30 13:00:34'),
(56, 136, 30, 85, 'GYM & Yoga', 'gym-yoga', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(57, 137, 30, 85, 'رياضة ويوجا', 'ryad-oyoga', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(58, 136, 31, 85, 'Event & Party', 'event-party', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(59, 137, 31, 85, 'حدث وحفل', 'hdth-ohfl', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(60, 136, 32, 85, 'Sports & Gaming', 'sports-gaming', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(61, 137, 32, 85, 'رياضة وألعاب', 'ryad-oalaaab', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(62, 136, 33, 85, 'Spa & Fitness', 'spa-fitness', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(63, 137, 33, 85, 'سبا ولياقة بدنية', 'sba-olyak-bdny', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(64, 136, 34, 85, 'Food & Restaurant', 'food-restaurant', 'Great explorer of the truth the ter-blde human happiness one reject', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(65, 137, 34, 85, 'طعام ومطعم', 'taaam-omtaam', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(66, 136, 35, 85, 'Rooms & Appartment', 'rooms-appartment', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34'),
(67, 137, 35, 85, 'الغرف والشقق', 'alghrf-oalshkk', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p style=\"text-align:right;\"><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34'),
(68, 138, 36, 86, 'GYM & Yoga', 'gym-yoga', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(69, 139, 36, 86, 'رياضة ويوجا', 'ryad-oyoga', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(70, 138, 37, 86, 'Event & Party', 'event-party', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(71, 139, 37, 86, 'حدث وحفل', 'hdth-ohfl', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(72, 138, 38, 86, 'Sports & Gaming', 'sports-gaming', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(73, 139, 38, 86, 'رياضة وألعاب', 'ryad-oalaaab', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(74, 138, 39, 86, 'Spa & Fitness', 'spa-fitness', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(75, 139, 39, 86, 'سبا ولياقة بدنية', 'sba-olyak-bdny', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(76, 138, 40, 86, 'Food & Restaurant', 'food-restaurant', 'Great explorer of the truth the ter-blde human happiness one reject', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(77, 139, 40, 86, 'طعام ومطعم', 'taaam-omtaam', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(78, 138, 41, 86, 'Rooms & Appartment', 'rooms-appartment', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34'),
(79, 139, 41, 86, 'الغرف والشقق', 'alghrf-oalshkk', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p style=\"text-align:right;\"><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34'),
(80, 140, 42, 87, 'GYM & Yoga', 'gym-yoga', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(81, 141, 42, 87, 'رياضة ويوجا', 'ryad-oyoga', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:54:12', '2025-04-30 06:54:12'),
(82, 140, 43, 87, 'Event & Party', 'event-party', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(83, 141, 43, 87, 'حدث وحفل', 'hdth-ohfl', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:00', '2025-04-30 06:55:00'),
(84, 140, 44, 87, 'Sports & Gaming', 'sports-gaming', 'Great explorer of the truth the ter-blde human happiness one reject', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(85, 141, 44, 87, 'رياضة وألعاب', 'ryad-oalaaab', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '', NULL, NULL, '2025-04-30 06:55:33', '2025-04-30 06:55:33'),
(86, 140, 45, 87, 'Spa & Fitness', 'spa-fitness', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(87, 141, 45, 87, 'سبا ولياقة بدنية', 'sba-olyak-bdny', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:58:06', '2025-04-30 06:58:06'),
(88, 140, 46, 87, 'Food & Restaurant', 'food-restaurant', 'Great explorer of the truth the ter-blde human happiness one reject', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(89, 141, 46, 87, 'طعام ومطعم', 'taaam-omtaam', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 06:59:10', '2025-04-30 06:59:10'),
(90, 140, 47, 87, 'Rooms & Appartment', 'rooms-appartment', 'Great explorer of the truth the ter-blde human happiness one reject', '<p style=\"text-align:justify;font-family:\'Open Sans\', Arial, sans-serif;\">Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old. Richard McClintock, a Latin professor at Hampden-Sydney College in Virginia, looked up one of the more obscure Latin words, consectetur, from a Lorem Ipsum passage, and going through the cites of the word in classical literature, discovered the undoubtable source. Lorem Ipsum comes from sections 1.10.32 and 1.10.33 of \"de Finibus Bonorum et Malorum\" (The Extremes of Good and Evil) by Cicero, written in 45 BC. This book is a treatise on the theory of ethics, very popular during the Renaissance. The first line of Lorem Ipsum, \"Lorem ipsum dolor sit amet..\", comes from a line in section 1.10.32.</p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34'),
(91, 141, 47, 87, 'الغرف والشقق', 'alghrf-oalshkk', 'المستكشف العظيم للحقيقة ، السعادة البشرية التي يرفضها المرء', '<p style=\"text-align:right;\"><span style=\"font-family:\'Open Sans\', Arial, sans-serif;text-align:justify;\">هنالك العديد من الأنواع المتوفرة لنصوص لوريم إيبسوم، ولكن الغالبية تم تعديلها بشكل ما عبر إدخال بعض النوادر أو الكلمات العشوائية إلى النص. إن كنت تريد أن تستخدم نص لوريم إيبسوم ما، عليك أن تتحقق أولاً أن ليس هناك أي كلمات أو عبارات محرجة أو غير لائقة مخبأة في هذا النص. بينما تعمل جميع مولّدات نصوص لوريم إيبسوم على الإنترنت على إعادة تكرار مقاطع من نص لوريم إيبسوم نفسه عدة مرات بما تتطلبه الحاجة، يقوم مولّدنا هذا باستخدام كلمات من قاموس يحوي على أكثر من 200 كلمة لا تينية، مضاف إليها مجموعة من الجمل النموذجية، لتكوين نص لوريم إيبسوم ذو شكل منطقي قريب إلى النص الحقيقي. وبالتالي يكون النص الناتح خالي من التكرار، أو أي كلمات أو عبارات غير لائقة أو ما شابه. وهذا ما يجعله أول مولّد نص لوريم إيبسوم حقيقي على الإنترنت.</span></p>', NULL, NULL, '2025-04-30 07:00:34', '2025-04-30 07:00:34');

-- --------------------------------------------------------

--
-- Table structure for table `user_socials`
--

CREATE TABLE `user_socials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `icon` text COLLATE utf8_unicode_ci,
  `url` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `serial_number` int(11) NOT NULL DEFAULT '0',
  `user_id` int(11) DEFAULT '0',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

--
-- Dumping data for table `user_socials`
--

INSERT INTO `user_socials` (`id`, `icon`, `url`, `serial_number`, `user_id`, `created_at`, `updated_at`) VALUES
(17, 'fab fa-facebook-f', 'https://www.facebook.com/', 1, 83, '2025-04-28 11:14:11', '2025-04-28 11:14:11'),
(18, 'fab fa-instagram', 'https://www.instagram.com/', 2, 83, '2025-04-28 11:16:45', '2025-04-28 11:16:45'),
(19, 'fab fa-google-plus-g', 'https://www.google.com', 3, 83, '2025-04-28 11:17:03', '2025-04-28 11:17:03'),
(20, 'fab fa-twitter', 'https://www.twitter.com', 4, 83, '2025-04-28 11:17:20', '2025-04-28 11:17:20'),
(21, 'fab fa-facebook-f', 'https://www.facebook.com/', 1, 84, '2025-04-28 05:14:11', '2025-04-28 05:14:11'),
(22, 'fab fa-instagram', 'https://www.instagram.com/', 2, 84, '2025-04-28 05:16:45', '2025-04-28 05:16:45'),
(23, 'fab fa-google-plus-g', 'https://www.google.com', 3, 84, '2025-04-28 05:17:03', '2025-04-28 05:17:03'),
(24, 'fab fa-twitter', 'https://www.twitter.com', 4, 84, '2025-04-28 05:17:20', '2025-04-28 05:17:20'),
(25, 'fab fa-facebook-f', 'https://www.facebook.com/', 1, 85, '2025-04-28 05:14:11', '2025-04-28 05:14:11'),
(26, 'fab fa-instagram', 'https://www.instagram.com/', 2, 85, '2025-04-28 05:16:45', '2025-04-28 05:16:45'),
(27, 'fab fa-google-plus-g', 'https://www.google.com', 3, 85, '2025-04-28 05:17:03', '2025-04-28 05:17:03'),
(28, 'fab fa-twitter', 'https://www.twitter.com', 4, 85, '2025-04-28 05:17:20', '2025-04-28 05:17:20'),
(29, 'fab fa-facebook-f', 'https://www.facebook.com/', 1, 86, '2025-04-28 05:14:11', '2025-04-28 05:14:11'),
(30, 'fab fa-instagram', 'https://www.instagram.com/', 2, 86, '2025-04-28 05:16:45', '2025-04-28 05:16:45'),
(31, 'fab fa-google-plus-g', 'https://www.google.com', 3, 86, '2025-04-28 05:17:03', '2025-04-28 05:17:03'),
(32, 'fab fa-twitter', 'https://www.twitter.com', 4, 86, '2025-04-28 05:17:20', '2025-04-28 05:17:20'),
(33, 'fab fa-facebook-f', 'https://www.facebook.com/', 1, 87, '2025-04-28 05:14:11', '2025-04-28 05:14:11'),
(34, 'fab fa-instagram', 'https://www.instagram.com/', 2, 87, '2025-04-28 05:16:45', '2025-04-28 05:16:45'),
(35, 'fab fa-google-plus-g', 'https://www.google.com', 3, 87, '2025-04-28 05:17:03', '2025-04-28 05:17:03'),
(36, 'fab fa-twitter', 'https://www.twitter.com', 4, 87, '2025-04-28 05:17:20', '2025-04-28 05:17:20');

-- --------------------------------------------------------

--
-- Table structure for table `user_subscribers`
--

CREATE TABLE `user_subscribers` (
  `id` int(11) NOT NULL,
  `email` varchar(255) NOT NULL,
  `user_id` int(11) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- --------------------------------------------------------

--
-- Table structure for table `user_testimonials`
--

CREATE TABLE `user_testimonials` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `image` varchar(255) NOT NULL,
  `name` varchar(255) NOT NULL,
  `comment` text NOT NULL,
  `designation` varchar(255) NOT NULL,
  `serial_number` int(10) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `user_testimonials`
--

INSERT INTO `user_testimonials` (`id`, `language_id`, `user_id`, `image`, `name`, `comment`, `designation`, `serial_number`, `created_at`, `updated_at`) VALUES
(17, 132, 83, '088d07bad679c65c446f30b6519c188ffdb7175d.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'FCCFDA', 2, '2025-04-28 11:30:17', '2025-04-28 11:31:21'),
(18, 132, 83, 'eedd2eef2a3cbc819a44849ed0059e195b13caf6.jpg', 'David K. Vinson', 'At vero eos et accusamu way set iusto odio dignis ducimus qui bpraes enum voluptatum deleniti atque corrupti quos dolores others worlds.', 'CEO, Madchef', 3, '2025-04-28 11:31:09', '2025-04-28 11:31:09'),
(19, 132, 83, '26063e3e032da56e5e4ad3686f1fdc366e4172c6.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'Managing Director, Summly', 1, '2025-04-28 11:32:01', '2025-05-13 12:53:59'),
(20, 134, 84, '6e2f956c3947d5d8757cb7e335736deb5e44b8dd.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'Researcher, MIT', 1, '2025-05-07 12:15:14', '2025-05-07 12:15:14'),
(21, 134, 84, 'f087b4ac6ee8873cd64493d8a0a4d2514139930c.jpg', 'David K. Vinson', 'At vero eos et accusamu way set iusto odio dignis ducimus qui bpraes enum voluptatum deleniti atque corrupti quos dolores others worlds.', 'CEO, Madchef', 1, '2025-05-07 12:15:56', '2025-05-07 12:15:56'),
(22, 134, 84, '685e264e936e1b2e909e619b05285b5f3caada59.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'Managing Director, Summly', 1, '2025-05-07 12:17:49', '2025-05-07 12:17:49'),
(23, 135, 84, '1e7faf2e0b98a9c408f048018a0a994ae39c08f5.jpg', 'جيمس م. فارني', 'من الثابت أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيع الأحرف بشكل طبيعي، على عكس استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء.', 'باحث ، معهد ماساتشوستس للتكنولوجيا', 1, '2025-05-07 13:03:28', '2025-05-07 13:05:42'),
(24, 135, 84, '99321d60b59a0c232d417ffdefaf56934bb2cf5b.jpg', 'جيمس م. فارني', 'من الثابت أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيع الأحرف بشكل طبيعي، على عكس استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء.', 'الرئيس التنفيذي ، Madchef', 2, '2025-05-07 13:04:00', '2025-05-07 13:05:10'),
(25, 135, 84, 'e3b6f431580f91a80d9e244d699f4e7ab723aabd.jpg', 'جيمس م. فارني', 'من الثابت أن المحتوى المقروء لصفحة ما سيشتت انتباه القارئ عند النظر إلى شكل توضع الفقرات. الهدف من استخدام لوريم إيبسوم هو توزيع الأحرف بشكل طبيعي، على عكس استخدام \"هنا المحتوى، هنا المحتوى\"، مما يجعله يبدو كنص مقروء.', 'العضو المنتدب ، Summly', 2, '2025-05-07 13:04:27', '2025-05-07 13:05:33'),
(26, 133, 83, 'a21bf7496de67bc37f6b96c9832b8f2f64c979f1.jpg', 'جيمس م. فارني', 'ن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'باحث ، معهد ماساتشوستس للتكنولوجيا', 1, '2025-05-08 06:06:38', '2025-05-08 06:06:38'),
(27, 133, 83, 'fb871c8f254092bbc4fc50a2717c27b9cc9d13b7.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 1, '2025-05-08 06:07:41', '2025-05-08 06:07:41'),
(28, 133, 83, '03d64c44b2debcc9a26582bd23b5c30fe29ed125.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 3, '2025-05-08 06:08:12', '2025-05-08 06:08:12'),
(29, 136, 85, '4592e25a21161274000301c431e4c102cd10ba24.jpg', 'Rodrigo', 'They are definitely recommend them if you are looking for a good car service. always on time, and they\'re very professional.', 'Hames Rodrigo', 1, '2025-05-08 09:24:50', '2025-05-08 09:27:13'),
(30, 136, 85, 'cdac3f20be65190501ec7c888374378f4a707851.jpg', 'Hames Rodrigo', 'They are definitely recommend them if you are looking for a good car service. always on time, and they\'re very professional.', 'UI/UX Designer', 2, '2025-05-08 09:26:27', '2025-05-08 09:26:27'),
(31, 136, 85, 'b8eda4ed9ac9864fdeb240245db7152a49ee5122.jpg', 'Thor Mills', 'They are definitely recommend them if you are looking for a good car service. always on time, and they\'re very professional.', 'Programmer', 4, '2025-05-08 09:26:56', '2025-05-08 09:26:56'),
(32, 136, 85, '8e2b5c6a13ae0b40db3ffe8f1dd1635532ad8dae.jpg', 'Marri', 'They are definitely recommend them if you are looking for a good car service. always on time, and they\'re very professional.', 'CEO, Madchef', 5, '2025-05-08 09:27:50', '2025-05-08 09:27:50'),
(33, 136, 85, 'f004d42e19e4b6962653b500e29bcf07aadea44e.jpg', 'Thor Mills', 'They are definitely recommend them if you are looking for a good car service. always on time, and they\'re very professional.', 'Programmer', 7, '2025-05-08 09:28:18', '2025-05-08 09:28:18'),
(34, 137, 85, 'a7c9aaff85604e7b1f5632f763b13d63007bfe70.jpg', 'ور ميلز', 'نوصي بهم بشدة إذا كنت تبحث عن خدمة سيارات جيدة. ملتزمون بالمواعيد دائمًا، ومحترفون للغاية.', 'مبرمج', 7, '2025-05-08 10:08:33', '2025-05-08 10:08:33'),
(35, 137, 85, 'faa7270855411f06d844d7e9d7752d42cfd4fbc7.jpg', 'كاليز', 'نوصي بهم بشدة إذا كنت تبحث عن خدمة سيارات جيدة. ملتزمون بالمواعيد دائمًا، ومحترفون للغاية.', 'مبرمج', 3, '2025-05-08 10:09:11', '2025-05-08 10:09:11'),
(36, 137, 85, '979770b348e0c4cd23e3e9c92911e69ec077f2f4.jpg', 'هاميس رودريجو', 'نوصي بهم بشدة إذا كنت تبحث عن خدمة سيارات جيدة. ملتزمون بالمواعيد دائمًا، ومحترفون للغاية.', 'مصمم واجهة المستخدم وتجربة المستخدم', 2, '2025-05-08 10:09:56', '2025-05-08 10:10:39'),
(37, 138, 86, '088d07bad679c65c446f30b6519c188ffdb7175d.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'FCCFDA', 2, '2025-04-28 05:30:17', '2025-04-28 05:31:21'),
(38, 138, 86, 'eedd2eef2a3cbc819a44849ed0059e195b13caf6.jpg', 'David K. Vinson', 'At vero eos et accusamu way set iusto odio dignis ducimus qui bpraes enum voluptatum deleniti atque corrupti quos dolores others worlds.', 'CEO, Madchef', 3, '2025-04-28 05:31:09', '2025-04-28 05:31:09'),
(39, 138, 86, '26063e3e032da56e5e4ad3686f1fdc366e4172c6.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'Managing Director, Summly', 1, '2025-04-28 05:32:01', '2025-04-28 05:32:01'),
(40, 139, 86, 'a21bf7496de67bc37f6b96c9832b8f2f64c979f1.jpg', 'جيمس م. فارني', 'ن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'باحث ، معهد ماساتشوستس للتكنولوجيا', 1, '2025-05-08 00:06:38', '2025-05-08 00:06:38'),
(41, 139, 86, 'fb871c8f254092bbc4fc50a2717c27b9cc9d13b7.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 1, '2025-05-08 00:07:41', '2025-05-08 00:07:41'),
(42, 139, 86, '03d64c44b2debcc9a26582bd23b5c30fe29ed125.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 3, '2025-05-08 00:08:12', '2025-05-08 00:08:12'),
(43, 140, 87, '088d07bad679c65c446f30b6519c188ffdb7175d.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'FCCFDA', 2, '2025-04-28 05:30:17', '2025-04-28 05:31:21'),
(44, 140, 87, 'eedd2eef2a3cbc819a44849ed0059e195b13caf6.jpg', 'David K. Vinson', 'At vero eos et accusamu way set iusto odio dignis ducimus qui bpraes enum voluptatum deleniti atque corrupti quos dolores others worlds.', 'CEO, Madchef', 3, '2025-04-28 05:31:09', '2025-04-28 05:31:09'),
(45, 140, 87, '26063e3e032da56e5e4ad3686f1fdc366e4172c6.jpg', 'James M. Varney', 'Omnis voluptas assumde est omnis dolor reporibus autem quidam et aut ciise debitiset arerum neces tibus saep on ways feels like ways.', 'Managing Director, Summly', 1, '2025-04-28 05:32:01', '2025-04-28 05:32:01'),
(46, 141, 87, 'a21bf7496de67bc37f6b96c9832b8f2f64c979f1.jpg', 'جيمس م. فارني', 'ن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'باحث ، معهد ماساتشوستس للتكنولوجيا', 1, '2025-05-08 00:06:38', '2025-05-08 00:06:38'),
(47, 141, 87, 'fb871c8f254092bbc4fc50a2717c27b9cc9d13b7.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 1, '2025-05-08 00:07:41', '2025-05-08 00:07:41'),
(48, 141, 87, '03d64c44b2debcc9a26582bd23b5c30fe29ed125.jpg', 'جيمس م. فارني', 'أن هناك مجموعة شاملة من الأدوات والآليات المتعلقة بالطرق التي تبدو وكأنها طرق.', 'الرئيس التنفيذي', 3, '2025-05-08 00:08:12', '2025-05-08 00:08:12');

-- --------------------------------------------------------

--
-- Table structure for table `user_tickets`
--

CREATE TABLE `user_tickets` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `admin_id` int(11) DEFAULT NULL,
  `ticket_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `subject` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,
  `message` text COLLATE utf8_unicode_ci,
  `zip_file` text COLLATE utf8_unicode_ci,
  `status` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL,
  `last_message` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

-- --------------------------------------------------------

--
-- Table structure for table `user_video_sections`
--

CREATE TABLE `user_video_sections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `language_id` bigint(20) UNSIGNED NOT NULL,
  `user_id` int(11) DEFAULT NULL,
  `title` varchar(255) DEFAULT NULL,
  `image` varchar(255) NOT NULL,
  `link` varchar(255) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `additional_sections`
--
ALTER TABLE `additional_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `additional_section_contents`
--
ALTER TABLE `additional_section_contents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `basic_extendeds`
--
ALTER TABLE `basic_extendeds`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `basic_settings`
--
ALTER TABLE `basic_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `bcategories`
--
ALTER TABLE `bcategories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `blogs`
--
ALTER TABLE `blogs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `counter_information`
--
ALTER TABLE `counter_information`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `coupons`
--
ALTER TABLE `coupons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `customers`
--
ALTER TABLE `customers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `email_templates`
--
ALTER TABLE `email_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `faqs`
--
ALTER TABLE `faqs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `features`
--
ALTER TABLE `features`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `headings`
--
ALTER TABLE `headings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `jobs`
--
ALTER TABLE `jobs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `jobs_queue_index` (`queue`);

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `memberships`
--
ALTER TABLE `memberships`
  ADD PRIMARY KEY (`id`),
  ADD KEY `memberships_user_id_foreign` (`user_id`);

--
-- Indexes for table `menus`
--
ALTER TABLE `menus`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `offline_gateways`
--
ALTER TABLE `offline_gateways`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `packages`
--
ALTER TABLE `packages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `pages`
--
ALTER TABLE `pages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `partners`
--
ALTER TABLE `partners`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
  ADD KEY `password_resets_email_index` (`email`);

--
-- Indexes for table `payment_gateways`
--
ALTER TABLE `payment_gateways`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `popups`
--
ALTER TABLE `popups`
  ADD PRIMARY KEY (`id`),
  ADD KEY `popups_language_id_foreign` (`language_id`);

--
-- Indexes for table `processes`
--
ALTER TABLE `processes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `seos`
--
ALTER TABLE `seos`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `sitemaps`
--
ALTER TABLE `sitemaps`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `socials`
--
ALTER TABLE `socials`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `subscribers`
--
ALTER TABLE `subscribers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `testimonials`
--
ALTER TABLE `testimonials`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `timezones`
--
ALTER TABLE `timezones`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `ulinks`
--
ALTER TABLE `ulinks`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_about_us_sections`
--
ALTER TABLE `user_about_us_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_additional_sections`
--
ALTER TABLE `user_additional_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_additional_section_contents`
--
ALTER TABLE `user_additional_section_contents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_advertisements`
--
ALTER TABLE `user_advertisements`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_basic_extendeds`
--
ALTER TABLE `user_basic_extendeds`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_basic_settings`
--
ALTER TABLE `user_basic_settings`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_blogs`
--
ALTER TABLE `user_blogs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_blog_categories`
--
ALTER TABLE `user_blog_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `blog_categories_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_blog_informations`
--
ALTER TABLE `user_blog_informations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `blog_informations_language_id_foreign` (`language_id`),
  ADD KEY `blog_informations_blog_id_foreign` (`blog_id`);

--
-- Indexes for table `user_brands`
--
ALTER TABLE `user_brands`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_brands_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_conversations`
--
ALTER TABLE `user_conversations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_count_informations`
--
ALTER TABLE `user_count_informations`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_coupons`
--
ALTER TABLE `user_coupons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_custom_domains`
--
ALTER TABLE `user_custom_domains`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_facilities`
--
ALTER TABLE `user_facilities`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_facilities_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_faqs`
--
ALTER TABLE `user_faqs`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_features`
--
ALTER TABLE `user_features`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_footer_quick_links`
--
ALTER TABLE `user_footer_quick_links`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_footer_texts`
--
ALTER TABLE `user_footer_texts`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_gallery_categories`
--
ALTER TABLE `user_gallery_categories`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_gallery_images`
--
ALTER TABLE `user_gallery_images`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_hero_sliders`
--
ALTER TABLE `user_hero_sliders`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_hero_sliders_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_intro_count_infos`
--
ALTER TABLE `user_intro_count_infos`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_intro_count_infos_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_languages`
--
ALTER TABLE `user_languages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_mail_templates`
--
ALTER TABLE `user_mail_templates`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_menus`
--
ALTER TABLE `user_menus`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_newsletter_sections`
--
ALTER TABLE `user_newsletter_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_offline_gateways`
--
ALTER TABLE `user_offline_gateways`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_packages`
--
ALTER TABLE `user_packages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_package_bookings`
--
ALTER TABLE `user_package_bookings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_package_bookings_package_id_foreign` (`package_id`),
  ADD KEY `user_package_bookings_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_package_categories`
--
ALTER TABLE `user_package_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_package_categories_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_package_contents`
--
ALTER TABLE `user_package_contents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_package_contents_language_id_foreign` (`language_id`),
  ADD KEY `user_package_contents_package_id_foreign` (`package_id`);

--
-- Indexes for table `user_package_coupons`
--
ALTER TABLE `user_package_coupons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_package_locations`
--
ALTER TABLE `user_package_locations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_package_locations_language_id_foreign` (`language_id`),
  ADD KEY `user_package_locations_package_id_foreign` (`package_id`);

--
-- Indexes for table `user_package_plans`
--
ALTER TABLE `user_package_plans`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_package_plans_language_id_foreign` (`language_id`),
  ADD KEY `user_package_plans_package_id_foreign` (`package_id`);

--
-- Indexes for table `user_package_reviews`
--
ALTER TABLE `user_package_reviews`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_pages`
--
ALTER TABLE `user_pages`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_page_contents`
--
ALTER TABLE `user_page_contents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `page_contents_language_id_foreign` (`language_id`),
  ADD KEY `page_contents_page_id_foreign` (`page_id`);

--
-- Indexes for table `user_page_headings`
--
ALTER TABLE `user_page_headings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_page_headings_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_payment_gateways`
--
ALTER TABLE `user_payment_gateways`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_permissions`
--
ALTER TABLE `user_permissions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_permissions_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_popups`
--
ALTER TABLE `user_popups`
  ADD PRIMARY KEY (`id`),
  ADD KEY `popups_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_qr_codes`
--
ALTER TABLE `user_qr_codes`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_rooms`
--
ALTER TABLE `user_rooms`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_room_amenities`
--
ALTER TABLE `user_room_amenities`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_room_amenities_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_room_bookings`
--
ALTER TABLE `user_room_bookings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_room_bookings_room_id_foreign` (`room_id`),
  ADD KEY `user_room_bookings_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_room_categories`
--
ALTER TABLE `user_room_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_room_categories_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_room_contents`
--
ALTER TABLE `user_room_contents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_room_contents_language_id_foreign` (`language_id`),
  ADD KEY `user_room_contents_room_id_foreign` (`room_id`);

--
-- Indexes for table `user_room_coupons`
--
ALTER TABLE `user_room_coupons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_room_reviews`
--
ALTER TABLE `user_room_reviews`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_room_reviews_room_id_foreign` (`room_id`),
  ADD KEY `user_room_reviews_user_id_foreign` (`user_id`);

--
-- Indexes for table `user_sections`
--
ALTER TABLE `user_sections`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_section_headings`
--
ALTER TABLE `user_section_headings`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_section_headings_language_id_foreign` (`language_id`);

--
-- Indexes for table `user_seos`
--
ALTER TABLE `user_seos`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_services`
--
ALTER TABLE `user_services`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_service_contents`
--
ALTER TABLE `user_service_contents`
  ADD PRIMARY KEY (`id`),
  ADD KEY `user_service_contents_language_id_foreign` (`language_id`),
  ADD KEY `user_service_contents_service_id_foreign` (`service_id`);

--
-- Indexes for table `user_socials`
--
ALTER TABLE `user_socials`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_subscribers`
--
ALTER TABLE `user_subscribers`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_testimonials`
--
ALTER TABLE `user_testimonials`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_tickets`
--
ALTER TABLE `user_tickets`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `user_video_sections`
--
ALTER TABLE `user_video_sections`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `additional_sections`
--
ALTER TABLE `additional_sections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;

--
-- AUTO_INCREMENT for table `additional_section_contents`
--
ALTER TABLE `additional_section_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=53;

--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `basic_extendeds`
--
ALTER TABLE `basic_extendeds`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=167;

--
-- AUTO_INCREMENT for table `basic_settings`
--
ALTER TABLE `basic_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=173;

--
-- AUTO_INCREMENT for table `bcategories`
--
ALTER TABLE `bcategories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60;

--
-- AUTO_INCREMENT for table `blogs`
--
ALTER TABLE `blogs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=120;

--
-- AUTO_INCREMENT for table `counter_information`
--
ALTER TABLE `counter_information`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `coupons`
--
ALTER TABLE `coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `customers`
--
ALTER TABLE `customers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;

--
-- AUTO_INCREMENT for table `email_templates`
--
ALTER TABLE `email_templates`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72;

--
-- AUTO_INCREMENT for table `features`
--
ALTER TABLE `features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=103;

--
-- AUTO_INCREMENT for table `headings`
--
ALTER TABLE `headings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `jobs`
--
ALTER TABLE `jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=196;

--
-- AUTO_INCREMENT for table `memberships`
--
ALTER TABLE `memberships`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=207;

--
-- AUTO_INCREMENT for table `menus`
--
ALTER TABLE `menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=175;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `offline_gateways`
--
ALTER TABLE `offline_gateways`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `packages`
--
ALTER TABLE `packages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=1000026;

--
-- AUTO_INCREMENT for table `pages`
--
ALTER TABLE `pages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `partners`
--
ALTER TABLE `partners`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=93;

--
-- AUTO_INCREMENT for table `payment_gateways`
--
ALTER TABLE `payment_gateways`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `popups`
--
ALTER TABLE `popups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `processes`
--
ALTER TABLE `processes`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `seos`
--
ALTER TABLE `seos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `sitemaps`
--
ALTER TABLE `sitemaps`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `socials`
--
ALTER TABLE `socials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `subscribers`
--
ALTER TABLE `subscribers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;

--
-- AUTO_INCREMENT for table `testimonials`
--
ALTER TABLE `testimonials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;

--
-- AUTO_INCREMENT for table `timezones`
--
ALTER TABLE `timezones`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=419;

--
-- AUTO_INCREMENT for table `ulinks`
--
ALTER TABLE `ulinks`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=90;

--
-- AUTO_INCREMENT for table `user_about_us_sections`
--
ALTER TABLE `user_about_us_sections`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_additional_sections`
--
ALTER TABLE `user_additional_sections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=113;

--
-- AUTO_INCREMENT for table `user_additional_section_contents`
--
ALTER TABLE `user_additional_section_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=154;

--
-- AUTO_INCREMENT for table `user_advertisements`
--
ALTER TABLE `user_advertisements`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `user_basic_extendeds`
--
ALTER TABLE `user_basic_extendeds`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;

--
-- AUTO_INCREMENT for table `user_basic_settings`
--
ALTER TABLE `user_basic_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=82;

--
-- AUTO_INCREMENT for table `user_blogs`
--
ALTER TABLE `user_blogs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `user_blog_categories`
--
ALTER TABLE `user_blog_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=74;

--
-- AUTO_INCREMENT for table `user_blog_informations`
--
ALTER TABLE `user_blog_informations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=96;

--
-- AUTO_INCREMENT for table `user_brands`
--
ALTER TABLE `user_brands`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=109;

--
-- AUTO_INCREMENT for table `user_conversations`
--
ALTER TABLE `user_conversations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `user_count_informations`
--
ALTER TABLE `user_count_informations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_coupons`
--
ALTER TABLE `user_coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_custom_domains`
--
ALTER TABLE `user_custom_domains`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `user_facilities`
--
ALTER TABLE `user_facilities`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT for table `user_faqs`
--
ALTER TABLE `user_faqs`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `user_features`
--
ALTER TABLE `user_features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_footer_quick_links`
--
ALTER TABLE `user_footer_quick_links`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=72;

--
-- AUTO_INCREMENT for table `user_footer_texts`
--
ALTER TABLE `user_footer_texts`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `user_gallery_categories`
--
ALTER TABLE `user_gallery_categories`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=44;

--
-- AUTO_INCREMENT for table `user_gallery_images`
--
ALTER TABLE `user_gallery_images`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=73;

--
-- AUTO_INCREMENT for table `user_hero_sliders`
--
ALTER TABLE `user_hero_sliders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40;

--
-- AUTO_INCREMENT for table `user_intro_count_infos`
--
ALTER TABLE `user_intro_count_infos`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=60;

--
-- AUTO_INCREMENT for table `user_languages`
--
ALTER TABLE `user_languages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=146;

--
-- AUTO_INCREMENT for table `user_mail_templates`
--
ALTER TABLE `user_mail_templates`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=595;

--
-- AUTO_INCREMENT for table `user_menus`
--
ALTER TABLE `user_menus`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=205;

--
-- AUTO_INCREMENT for table `user_newsletter_sections`
--
ALTER TABLE `user_newsletter_sections`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `user_offline_gateways`
--
ALTER TABLE `user_offline_gateways`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `user_packages`
--
ALTER TABLE `user_packages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=62;

--
-- AUTO_INCREMENT for table `user_package_bookings`
--
ALTER TABLE `user_package_bookings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=114;

--
-- AUTO_INCREMENT for table `user_package_categories`
--
ALTER TABLE `user_package_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92;

--
-- AUTO_INCREMENT for table `user_package_contents`
--
ALTER TABLE `user_package_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=104;

--
-- AUTO_INCREMENT for table `user_package_coupons`
--
ALTER TABLE `user_package_coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=21;

--
-- AUTO_INCREMENT for table `user_package_locations`
--
ALTER TABLE `user_package_locations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41;

--
-- AUTO_INCREMENT for table `user_package_plans`
--
ALTER TABLE `user_package_plans`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=119;

--
-- AUTO_INCREMENT for table `user_package_reviews`
--
ALTER TABLE `user_package_reviews`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `user_pages`
--
ALTER TABLE `user_pages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `user_page_contents`
--
ALTER TABLE `user_page_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29;

--
-- AUTO_INCREMENT for table `user_page_headings`
--
ALTER TABLE `user_page_headings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=136;

--
-- AUTO_INCREMENT for table `user_payment_gateways`
--
ALTER TABLE `user_payment_gateways`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=712;

--
-- AUTO_INCREMENT for table `user_permissions`
--
ALTER TABLE `user_permissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=79;

--
-- AUTO_INCREMENT for table `user_popups`
--
ALTER TABLE `user_popups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30;

--
-- AUTO_INCREMENT for table `user_qr_codes`
--
ALTER TABLE `user_qr_codes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `user_rooms`
--
ALTER TABLE `user_rooms`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84;

--
-- AUTO_INCREMENT for table `user_room_amenities`
--
ALTER TABLE `user_room_amenities`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=128;

--
-- AUTO_INCREMENT for table `user_room_bookings`
--
ALTER TABLE `user_room_bookings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=230;

--
-- AUTO_INCREMENT for table `user_room_categories`
--
ALTER TABLE `user_room_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=97;

--
-- AUTO_INCREMENT for table `user_room_contents`
--
ALTER TABLE `user_room_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=163;

--
-- AUTO_INCREMENT for table `user_room_coupons`
--
ALTER TABLE `user_room_coupons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;

--
-- AUTO_INCREMENT for table `user_room_reviews`
--
ALTER TABLE `user_room_reviews`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `user_sections`
--
ALTER TABLE `user_sections`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=80;

--
-- AUTO_INCREMENT for table `user_section_headings`
--
ALTER TABLE `user_section_headings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=57;

--
-- AUTO_INCREMENT for table `user_seos`
--
ALTER TABLE `user_seos`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;

--
-- AUTO_INCREMENT for table `user_services`
--
ALTER TABLE `user_services`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;

--
-- AUTO_INCREMENT for table `user_service_contents`
--
ALTER TABLE `user_service_contents`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=92;

--
-- AUTO_INCREMENT for table `user_socials`
--
ALTER TABLE `user_socials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=37;

--
-- AUTO_INCREMENT for table `user_subscribers`
--
ALTER TABLE `user_subscribers`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `user_testimonials`
--
ALTER TABLE `user_testimonials`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=49;

--
-- AUTO_INCREMENT for table `user_tickets`
--
ALTER TABLE `user_tickets`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;

--
-- AUTO_INCREMENT for table `user_video_sections`
--
ALTER TABLE `user_video_sections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;

/*!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 */;
