
-- =============VERSION 2.2
-- ============= 16-09-2024
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";

CREATE TABLE `update_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `version` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `update_log` text 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;

ALTER TABLE `update_logs`
  ADD PRIMARY KEY (`id`);
  ALTER TABLE `update_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
COMMIT;

ALTER TABLE `general_settings` ADD `system_customized` TINYINT(1) NOT NULL DEFAULT '0' AFTER `system_info`;
ALTER TABLE `fiat_gateways` CHANGE `code` `code` TEXT CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL;


SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


CREATE TABLE `cron_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `alias` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `action` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `cron_schedule_id` int(11) NOT NULL DEFAULT 0,
  `next_run` datetime DEFAULT NULL,
  `last_run` datetime DEFAULT NULL,
  `is_running` tinyint(1) NOT NULL DEFAULT 1,
  `is_default` tinyint(4) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


INSERT INTO `cron_jobs` (`id`, `name`, `alias`, `action`, `url`, `cron_schedule_id`, `next_run`, `last_run`, `is_running`, `is_default`, `created_at`, `updated_at`) VALUES
(7, 'Fiat Currency Cron', 'fiat_currency_cron', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"fiatRate\"]', NULL, 1, '2023-08-25 16:12:00', NULL, 1, 0, '2023-08-24 10:12:57', '2023-08-24 10:12:57'),
(8, 'Cryptocurrency Cron', 'cryptocurrency_cron', '[\"App\\\\Http\\\\Controllers\\\\CronController\", \"cryptoRate\"]', NULL, 1, '2023-08-25 16:13:00', NULL, 1, 0, '2023-08-24 10:13:54', '2023-08-24 10:13:54');

ALTER TABLE `cron_jobs`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `cron_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
COMMIT;



SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


CREATE TABLE `cron_schedules` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `interval` int(11) NOT NULL DEFAULT 0,
  `status` tinyint(1) NOT NULL DEFAULT 1,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;


INSERT INTO `cron_schedules` (`id`, `name`, `interval`, `status`, `created_at`, `updated_at`) VALUES
(1, '5 Minutes', 300, 1, '2023-06-21 08:14:52', '2023-06-21 08:14:52'),
(2, '10 Minutes', 600, 1, '2023-06-21 23:28:22', '2023-06-21 23:28:22');


ALTER TABLE `cron_schedules`
  ADD PRIMARY KEY (`id`);


ALTER TABLE `cron_schedules`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
COMMIT;

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


CREATE TABLE `cron_job_logs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `cron_job_id` int(11) NOT NULL DEFAULT 0,
  `start_at` datetime DEFAULT NULL,
  `end_at` datetime DEFAULT NULL,
  `duration` int(11) NOT NULL DEFAULT 0,
  `error` text 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;

ALTER TABLE `cron_job_logs`
  ADD PRIMARY KEY (`id`);


ALTER TABLE `cron_job_logs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
COMMIT;

ALTER TABLE `languages` ADD `flag` VARCHAR(255) NULL DEFAULT NULL AFTER `name`;

ALTER TABLE `frontends` ADD `tempname` VARCHAR(40) NULL DEFAULT NULL AFTER `id`;

UPDATE frontends SET tempname = 'templates.basic.';

ALTER TABLE `general_settings` ADD `secondary_color` VARCHAR(40) NULL DEFAULT NULL AFTER `base_color`;

CREATE TABLE `subscribers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `email` varchar(40) DEFAULT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

ALTER TABLE `subscribers`
  ADD PRIMARY KEY (`id`);

ALTER TABLE `subscribers` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

INSERT INTO `frontends` (`tempname`, `data_keys`, `data_values`, `created_at`, `updated_at`) VALUES
('templates.elite.', 'faq.content', '{\"heading\":\"Frequently Asked Questions.\",\"sub_heading\":\"We answer some of your Frequently Asked Questions regarding our platform. If you have a query that is not answered here, Please contact us via mail.\"}', NULL, NULL),
('templates.elite.', 'banner.content', '{\"has_image\":\"1\",\"heading\":\"Exchange your cryptocurrencies\",\"subheading\":\"Trade Smarter, Together: The P2P Trading Revolution Begins.\",\"image\":\"64e9b9572c23c1693038935.png\"}', NULL, NULL),
('templates.elite.', 'buy.content', '{\"heading\":\"Buy Crypto Currencies\",\"sub_heading\":\"With a proven track record and a mature approach to the industry, we provide a reliable buying platform for cryptocurrencies.\"}', NULL, NULL),
('templates.elite.', 'sell.content', '{\"heading\":\"Sell Crypto Currency\",\"sub_heading\":\"With a proven track record and a mature approach to the industry, we provide a reliable selling platform for cryptocurrency.\"}', NULL, NULL),
('templates.elite.', 'account_open.content', '{\"heading\":\"Explore fast crypto solutions for easy market entry!\"}', NULL, NULL),
('templates.elite.', 'account_open.element', '{\"has_image\":\"1\",\"title\":\"Register\",\"description\":\"To create an account, click on the \\\"Sign Up\\\" button and fill in the required information, such as email and password.\",\"image\":\"64e9d74ddb6c31693046605.png\"}', NULL, NULL),
('templates.elite.', 'account_open.element', '{\"has_image\":\"1\",\"title\":\"Verify Your Identity\",\"description\":\"Verify your account through the link sent to your email.\",\"image\":\"64e9d760a71b81693046624.png\"}', NULL, NULL),
('templates.elite.', 'account_open.element', '{\"has_image\":\"1\",\"title\":\"Bind Your Card\",\"description\":\"We support various payment methods, including credit\\/debit cards, bank transfers, and digital wallets.\",\"image\":\"64e9d7704d8211693046640.png\"}', NULL, NULL),
('templates.elite.', 'trade.content', '{\"heading\":\"How Our P2P System Works\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"buy\",\"title\":\"Place an Order\",\"description\":\"Once you place a P2P order, the crypto asset will be escrowed by Viserlab P2P.\",\"image\":\"64e9eafa2830b1693051642.png\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"buy\",\"title\":\"Pay the Seller\",\"description\":\"Send money to the seller via the suggested payment methods. Complete the fiat transaction and click \\\"Transferred, notify seller\\\" on Viserlab P2P.\",\"image\":\"64e9eb0c15b931693051660.png\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"buy\",\"title\":\"Get your Crypto\",\"description\":\"Once the seller confirms receipt of money, the escrowed crypto will be released to you.\",\"image\":\"64e9eb27759971693051687.png\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"sell\",\"title\":\"Get your Crypto\",\"description\":\"Once the seller confirms receipt of money, the escrowed crypto will be released to you.\",\"image\":\"64e9eb62ce4c21693051746.png\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"sell\",\"title\":\"Pay the Seller\",\"description\":\"Send money to the seller via the suggested payment methods. Complete the fiat transaction and click \\\"Transferred, notify seller\\\" on Viserlab P2P.\",\"image\":\"64e9eb77281271693051767.png\"}', NULL, NULL),
('templates.elite.', 'trade.element', '{\"has_image\":\"1\",\"trade_type\":\"sell\",\"title\":\"Place an Order\",\"description\":\"Once you place a P2P order, the crypto asset will be escrowed by Viserlab P2P.\",\"image\":\"64e9eb87eb81b1693051783.png\"}', NULL, NULL),
('templates.elite.', 'feature.content', '{\"has_image\":\"1\",\"heading\":\"Empower Direct P2P Trading - Unleash Cutting-edge Features!\",\"image\":\"64e9f3bfa018c1693053887.png\"}', NULL, NULL),
('templates.elite.', 'feature.element', '{\"has_image\":\"1\",\"title\":\"Flexible Payment Methods\",\"description\":\"Send money to the seller via the suggested payment methods. Complete the fiat transaction and click \\\"Transferred, notify seller\\\" on Viserlab P2P.\",\"image\":\"64e9f3e94edb01693053929.png\"}', NULL, NULL),
('templates.elite.', 'feature.element', '{\"has_image\":\"1\",\"title\":\"24\\/7 Customer Services\",\"description\":\"We provide 24\\/7 online services for tens of millions of users in over 170 countries. You will always have our support when encountering any problems on the platform.\",\"image\":\"64e9f3faad5e31693053946.png\"}', NULL, NULL),
('templates.elite.', 'feature.element', '{\"has_image\":\"1\",\"title\":\"Highest Priority to Transaction Safety\",\"description\":\"The platform will automatically scan every transaction and detect suspicious transactions. In addition, certified Advertiser Verification and Facial Recognition are implemented to make your transactions more secure.\",\"image\":\"64e9f40c2165a1693053964.png\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"What is P2P exchange?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"What happens if there is a dispute during a trade?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"What payment options are accepted on the platform?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"Are there any prerequisites for trading on the platform?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"How is my personal information protected?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"How can I increase my trustworthiness as a trader?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"How can I increase my trustworthiness as a trader?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"Can I communicate with other users directly on the platform?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"Are there any prerequisites for trading on the platform?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'faq.element', '{\"question\":\"How are user ratings and feedback calculated?\",\"answer\":\"There are many variations of passages the majority have suffered alteration in some fo injected humour, or randomised words believable of passages the majority have suffered.\"}', NULL, NULL),
('templates.elite.', 'payment_methods.content', '{\"heading\":\"Our Top Payment Methods\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48d96c4521693141209.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48df8fe491693141215.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48e4cdfea1693141220.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48ea775381693141226.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48efb82911693141231.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48f4e29eb1693141236.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb48fc192be1693141244.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb4903c3a701693141251.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb49096376b1693141257.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb490e7b91e1693141262.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb4913f2b331693141267.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb4919b6f761693141273.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb491f23cdb1693141279.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb49240303f1693141284.png\"}', NULL, NULL),
('templates.elite.', 'payment_methods.element', '{\"has_image\":\"1\",\"image\":\"64eb49844eaf81693141380.png\"}', NULL, NULL),
('templates.elite.', 'contact.content', '{\"has_image\":\"1\",\"heading\":\"Have Questions? Let\'s Talk\",\"subheading\":\"Reach out anytime! Our friendly support team is here to help. Complete the contact form, and we\'ll respond promptly.\",\"image\":\"64eb4bc18d57d1693141953.png\"}', NULL, NULL),
('templates.elite.', 'contact.element', '{\"has_image\":[\"1\"],\"address_type\":\"mail\",\"name\":\"Email\",\"details\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in ero.\",\"address\":\"support.viserlab@gmail.com\",\"image\":\"64eb4c04766eb1693142020.png\"}', NULL, NULL),
('templates.elite.', 'contact.element', '{\"has_image\":[\"1\"],\"address_type\":\"phone\",\"name\":\"Phone\",\"details\":\"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse varius enim in ero.\",\"address\":\"+81215878 124878 454\",\"image\":\"64eb4c26694ec1693142054.png\"}', NULL, NULL),
('templates.elite.', 'login.content', '{\"has_image\":\"1\",\"heading\":\"Welcome to our platform!\",\"subheading\":\"Creating an account is quick and easy.\",\"image\":\"64eb53898479f1693143945.png\"}', NULL, NULL),
('templates.elite.', 'policy_pages.element', '{\"title\":\"Privacy Policy\",\"details\":\"<div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">What information do we collect?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We gather data from you when you register on our site, submit a request, buy any services, react to an overview, or round out a structure. At the point when requesting any assistance or enrolling on our site, as suitable, you might be approached to enter your: name, email address, or telephone number. You may, nonetheless, visit our site anonymously.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">How do we protect your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">All provided delicate\\/credit data is sent through Stripe.<br \\/>After an exchange, your private data (credit cards, social security numbers, financials, and so on) won\'t be put away on our workers.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Do we disclose any information to outside parties?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t sell, exchange, or in any case move to outside gatherings by and by recognizable data. This does exclude confided in outsiders who help us in working our site, leading our business, or adjusting you, since those gatherings consent to keep this data private. We may likewise deliver your data when we accept discharge is suitable to follow the law, implement our site strategies, or ensure our own or others\' rights, property, or wellbeing.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Children\'s Online Privacy Protection Act Compliance<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We are consistent with the prerequisites of COPPA (Children\'s Online Privacy Protection Act), we don\'t gather any data from anybody under 13 years old. Our site, items, and administrations are completely coordinated to individuals who are in any event 13 years of age or more established.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Changes to our Privacy Policy<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">If we decide to change our privacy policy, we will post those changes on this page.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">How long we retain your information?<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">At the point when you register for our site, we cycle and keep your information we have about you however long you don\'t erase the record or withdraw yourself (subject to laws and guidelines).<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">What we don\\u2019t do with your data<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t and will never share, unveil, sell, or in any case give your information to different organizations for the promoting of their items or administrations.<\\/p><\\/div>\"}', NULL, NULL),
('templates.elite.', 'policy_pages.element', '{\"title\":\"Terms of Service\",\"details\":\"<div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We claim all authority to dismiss, end, or handicap any help with or without cause per administrator discretion. This is a Complete independent facilitating, on the off chance that you misuse our ticket or Livechat or emotionally supportive network by submitting solicitations or protests we will impair your record. The solitary time you should reach us about the seaward facilitating is if there is an issue with the worker. We have not many substance limitations and everything is as per laws and guidelines. Try not to join on the off chance that you intend to do anything contrary to the guidelines, we do check these things and we will know, don\'t burn through our own and your time by joining on the off chance that you figure you will have the option to sneak by us and break the terms.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><ul class=\\\"font-18\\\" style=\\\"padding-left:15px;list-style-type:disc;font-size:18px;\\\"><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Configuration requests - If you have a fully managed dedicated server with us then we offer custom PHP\\/MySQL configurations, firewalls for dedicated IPs, DNS, and httpd configurations.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Software requests - Cpanel Extension Installation will be granted as long as it does not interfere with the security, stability, and performance of other users on the server.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Emergency Support - We do not provide emergency support \\/ Phone Support \\/ LiveChat Support. Support may take some hours sometimes.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Webmaster help - We do not offer any support for webmaster related issues and difficulty including coding, &amp; installs, Error solving. if there is an issue where a library or configuration of the server then we can help you if it\'s possible from our end.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Backups - We keep backups but we are not responsible for data loss, you are fully responsible for all backups.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">We Don\'t support any child porn or such material.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">No spam-related sites or material, such as email lists, mass mail programs, and scripts, etc.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">No harassing material that may cause people to retaliate against you.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">No phishing pages.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">You may not run any exploitation script from the server. reason can be terminated immediately.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">If Anyone attempting to hack or exploit the server by using your script or hosting, we will terminate your account to keep safe other users.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Malicious Botnets are strictly forbidden.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Spam, mass mailing, or email marketing in any way are strictly forbidden here.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Malicious hacking materials, trojans, viruses, &amp; malicious bots running or for download are forbidden.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Resource and cronjob abuse is forbidden and will result in suspension or termination.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Php\\/CGI proxies are strictly forbidden.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">CGI-IRC is strictly forbidden.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">No fake or disposal mailers, mass mailing, mail bombers, SMS bombers, etc.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">NO CREDIT OR REFUND will be granted for interruptions of service, due to User Agreement violations.<\\/li><\\/ul><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Terms &amp; Conditions for Users<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">Before getting to this site, you are consenting to be limited by these site Terms and Conditions of Use, every single appropriate law, and guidelines, and concur that you are answerable for consistency with any material neighborhood laws. If you disagree with any of these terms, you are restricted from utilizing or getting to this site.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Support<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">Whenever you have downloaded our item, you may get in touch with us for help through email and we will give a valiant effort to determine your issue. We will attempt to answer using the Email for more modest bug fixes, after which we will refresh the center bundle. Content help is offered to confirmed clients by Tickets as it were. Backing demands made by email and Livechat.<\\/p><p class=\\\"my-3 font-18 font-weight-bold\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">On the off chance that your help requires extra adjustment of the System, at that point, you have two alternatives:<\\/p><ul class=\\\"font-18\\\" style=\\\"padding-left:15px;list-style-type:disc;font-size:18px;\\\"><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Hang tight for additional update discharge.<\\/li><li style=\\\"margin-top:0px;margin-right:0px;margin-left:0px;\\\">Or on the other hand, enlist a specialist (We offer customization for extra charges).<\\/li><\\/ul><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Ownership<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">You may not guarantee scholarly or selective possession of any of our items, altered or unmodified. All items are property, we created them. Our items are given \\\"with no guarantees\\\" without guarantee of any sort, either communicated or suggested. On no occasion will our juridical individual be subject to any harms including, however not restricted to, immediate, roundabout, extraordinary, accidental, or significant harms or different misfortunes emerging out of the utilization of or powerlessness to utilize our items.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Warranty<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We don\'t offer any guarantee or assurance of these Services in any way. When our Services have been modified we can\'t ensure they will work with all outsider plugins, modules, or internet browsers. Program similarity ought to be tried against the show formats on the demo worker. If you don\'t mind guarantee that the programs you use will work with the component, as we can not ensure that our systems will work with all program mixes.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Unauthorized\\/Illegal Usage<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">You may not utilize our things for any illicit or unapproved reason or may you, in the utilization of the stage, disregard any laws in your locale (counting yet not restricted to copyright laws) just as the laws of your nation and International law. Specifically, it is disallowed to utilize the things on our foundation for pages that advance: brutality, illegal intimidation, hard sexual entertainment, bigotry, obscenity content or warez programming joins.<br \\/><br \\/>You can\'t imitate, copy, duplicate, sell, exchange or adventure any of our segment, utilization of the offered on our things, or admittance to the administration without the express composed consent by us or item proprietor.<br \\/><br \\/>Our Members are liable for all substance posted on the discussion and demo and movement that happens under your record.<br \\/><br \\/>We hold the chance of hindering your participation account quickly if we will think about a particularly not allowed conduct.<br \\/><br \\/>If you make a record on our site, you are liable for keeping up the security of your record, and you are completely answerable for all exercises that happen under the record and some other activities taken regarding the record. You should quickly inform us, of any unapproved employments of your record or some other penetrates of security.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Fiverr, Seoclerks Sellers Or Affiliates<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We do NOT ensure full SEO campaign conveyance within 24 hours. We make no assurance for conveyance time by any means. We give our best assessment to orders during the putting in of requests, anyway, these are gauges. We won\'t be considered liable for loss of assets, negative surveys or you being prohibited for late conveyance. If you are selling on a site that requires time touchy outcomes, utilize Our SEO Services at your own risk.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Payment\\/Refund Policy<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">No refund or cash back will be made. After a deposit has been finished, it is extremely unlikely to invert it. You should utilize your equilibrium on requests our administrations, Hosting, SEO campaign. You concur that once you complete a deposit, you won\'t document a debate or a chargeback against us in any way, shape, or form.<br \\/><br \\/>If you document a debate or chargeback against us after a deposit, we claim all authority to end every single future request, prohibit you from our site. False action, for example, utilizing unapproved or taken charge cards will prompt the end of your record. There are no special cases.<\\/p><\\/div><div class=\\\"mb-5\\\" style=\\\"color:rgb(111,111,111);font-family:Nunito, sans-serif;margin-bottom:3rem;\\\"><h3 class=\\\"mb-3\\\" style=\\\"font-weight:600;line-height:1.3;font-size:24px;font-family:Exo, sans-serif;color:rgb(54,54,54);\\\">Free Balance \\/ Coupon Policy<\\/h3><p class=\\\"font-18\\\" style=\\\"margin-right:0px;margin-left:0px;font-size:18px;\\\">We offer numerous approaches to get FREE Balance, Coupons and Deposit offers yet we generally reserve the privilege to audit it and deduct it from your record offset with any explanation we may it is a sort of misuse. If we choose to deduct a few or all of free Balance from your record balance, and your record balance becomes negative, at that point the record will naturally be suspended. If your record is suspended because of a negative Balance you can request to make a custom payment to settle your equilibrium to actuate your record.<\\/p><\\/div>\"}', NULL, NULL),
('templates.elite.', 'breadcrumb.content', '{\"has_image\":\"1\",\"image\":\"64eb5803e4dad1693145091.png\"}', NULL, NULL),
('templates.elite.', 'registration.content', '{\"has_image\":\"1\",\"heading\":\"Welcome to our platform!\",\"subheading\":\"Creating an account is quick and easy.\",\"image\":\"64ec6bd8d16a11693215704.png\"}', NULL, NULL),
('templates.elite.', 'footer.content', '{\"footer_text\":\"LocalCoins is one of the best P2P crypto exchange solutions. This virtual marketplace for digital money connects buyers and sellers and provides tools to enable seamless and honest chat and exchange.\"}', NULL, NULL),
('templates.elite.', 'social_icon.content', '{\"heading\":\"Our Communtiy\"}', NULL, NULL),
('templates.elite.', 'social_icon.element', '{\"title\":\"Instagram\",\"social_icon\":\"<i class=\\\"lab la-instagram\\\"><\\/i>\",\"url\":\"https:\\/\\/instagram.com\"}', NULL, NULL),
('templates.elite.', 'social_icon.element', '{\"title\":\"Linkedin\",\"social_icon\":\"<i class=\\\"lab la-linkedin-in\\\"><\\/i>\",\"url\":\"https:\\/\\/www.linkedin.com\\/\"}', NULL, NULL),
('templates.elite.', 'social_icon.element', '{\"title\":\"Twitter\",\"social_icon\":\"<i class=\\\"lab la-twitter\\\"><\\/i>\",\"url\":\"https:\\/\\/twitter.com\\/\"}', NULL, NULL),
('templates.elite.', 'social_icon.element', '{\"title\":\"Facebook\",\"social_icon\":\"<i class=\\\"lab la-facebook-f\\\"><\\/i>\",\"url\":\"https:\\/\\/www.facebook.com\\/\"}', NULL, NULL);

INSERT INTO `frontends` (`tempname`, `data_keys`, `data_values`, `created_at`, `updated_at`) VALUES
('templates.elite.', 'subscribe.content', '{\"heading\":\"Join our newsletter to stay up to date on features and releases.\",\"subscribing_message\":\"By subscribing you agree to with our Privacy Policy and provide consent to receive updates from our company.\",\"button_text\":\"Subscribe\"}', '2023-09-13 09:08:41', '2023-09-13 09:22:15');


INSERT INTO `pages` (`name`, `slug`, `tempname`, `secs`, `is_default`, `created_at`, `updated_at`) VALUES
('Home', '/', 'templates.elite.', '[\"buy_sell\",\"account_open\",\"trade\",\"feature\",\"faq\",\"cta\"]', 1, '2023-08-26 02:46:45', '2023-09-16 09:06:44'),
('Contact', 'contact', 'templates.elite.', '[\"faq\",\"payment_methods\"]', 1, '2023-08-26 02:47:16', '2023-08-27 07:29:20');

INSERT INTO `frontends` (`tempname`, `data_keys`, `data_values`, `created_at`, `updated_at`) VALUES
('templates.elite.', 'cta.content', '{\"heading\":\"Still have a question?\",\"sub_heading\":\"Reach out to cur support team now\",\"button_text\":\"Contact\",\"button_url\":\"contact\"}', NULL, '2023-09-13 10:02:32');

ALTER TABLE `general_settings`
  DROP `fiat_cron`,
  DROP `crypto_cron`;

ALTER TABLE `general_settings` ADD `last_cron` TEXT NULL DEFAULT NULL AFTER `trade_commission`;