[text] test

Viewer

  1. -- phpMyAdmin SQL Dump
  2. -- version 4.9.0.1
  3. -- https://www.phpmyadmin.net/
  4. --
  5. -- Host: sql303.byetcluster.com
  6. -- Generation Time: Mar 30, 2020 at 10:24 AM
  7. -- Server version: 5.6.45-86.1
  8. -- PHP Version: 7.2.22
  9.  
  10. SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
  11. SET AUTOCOMMIT = 0;
  12. START TRANSACTION;
  13. SET time_zone = "+00:00";
  14.  
  15.  
  16. /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
  17. /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
  18. /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
  19. /*!40101 SET NAMES utf8mb4 */;
  20.  
  21. --
  22. -- Database: `epiz_24514711_complain`
  23. --
  24.  
  25. -- --------------------------------------------------------
  26.  
  27. --
  28. -- Table structure for table `ost_api_key`
  29. --
  30.  
  31. CREATE TABLE `ost_api_key` (
  32.   `id` int(10) UNSIGNED NOT NULL,
  33.   `isactive` tinyint(1) NOT NULL DEFAULT '1',
  34.   `ipaddr` varchar(64) NOT NULL,
  35.   `apikey` varchar(255) NOT NULL,
  36.   `can_create_tickets` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  37.   `can_exec_cron` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  38.   `notes` text,
  39.   `updated` datetime NOT NULL,
  40.   `created` datetime NOT NULL
  41. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  42.  
  43. -- --------------------------------------------------------
  44.  
  45. --
  46. -- Table structure for table `ost_attachment`
  47. --
  48.  
  49. CREATE TABLE `ost_attachment` (
  50.   `id` int(10) UNSIGNED NOT NULL,
  51.   `object_id` int(11) UNSIGNED NOT NULL,
  52.   `type` char(1) NOT NULL,
  53.   `file_id` int(11) UNSIGNED NOT NULL,
  54.   `name` varchar(255) DEFAULT NULL,
  55.   `inline` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  56.   `lang` varchar(16) DEFAULT NULL
  57. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  58.  
  59. --
  60. -- Dumping data for table `ost_attachment`
  61. --
  62.  
  63. INSERT INTO `ost_attachment` (`id`, `object_id`, `type`, `file_id`, `name`, `inline`, `lang`) VALUES
  64. (1, 1, 'C', 2, NULL, 0, NULL),
  65. (2, 8, 'T', 1, NULL, 1, NULL),
  66. (3, 9, 'T', 1, NULL, 1, NULL),
  67. (4, 10, 'T', 1, NULL, 1, NULL),
  68. (5, 11, 'T', 1, NULL, 1, NULL),
  69. (6, 12, 'T', 1, NULL, 1, NULL),
  70. (7, 13, 'T', 1, NULL, 1, NULL),
  71. (8, 14, 'T', 1, NULL, 1, NULL),
  72. (9, 16, 'T', 1, NULL, 1, NULL),
  73. (10, 17, 'T', 1, NULL, 1, NULL),
  74. (11, 18, 'T', 1, NULL, 1, NULL),
  75. (12, 19, 'T', 1, NULL, 1, NULL);
  76.  
  77. -- --------------------------------------------------------
  78.  
  79. --
  80. -- Table structure for table `ost_canned_response`
  81. --
  82.  
  83. CREATE TABLE `ost_canned_response` (
  84.   `canned_id` int(10) UNSIGNED NOT NULL,
  85.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  86.   `isenabled` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  87.   `title` varchar(255) NOT NULL DEFAULT '',
  88.   `response` text NOT NULL,
  89.   `lang` varchar(16) NOT NULL DEFAULT 'en_US',
  90.   `notes` text,
  91.   `created` datetime NOT NULL,
  92.   `updated` datetime NOT NULL
  93. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  94.  
  95. --
  96. -- Dumping data for table `ost_canned_response`
  97. --
  98.  
  99. INSERT INTO `ost_canned_response` (`canned_id`, `dept_id`, `isenabled`, `title`, `response`, `lang`, `notes`, `created`, `updated`) VALUES
  100. (1, 0, 1, 'What is osTicket (sample)?', 'Ticket is a widely-used open source support ticket system, an\r\nattractive alternative to higher-cost and complex customer support\r\nsystems - simple, lightweight, reliable, open source, web-based and easy\r\nto setup and use.', 'en_US', NULL, '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  101. (2, 0, 1, 'Sample (with variables)', 'Hi %{ticket.name.first},\n<br>\n<br>\nYour ticket #%{ticket.number} created on %{ticket.create_date} is in\n%{ticket.dept.name} department.', 'en_US', NULL, '2019-09-24 00:46:22', '2019-09-24 00:46:22');
  102.  
  103. -- --------------------------------------------------------
  104.  
  105. --
  106. -- Table structure for table `ost_config`
  107. --
  108.  
  109. CREATE TABLE `ost_config` (
  110.   `id` int(11) UNSIGNED NOT NULL,
  111.   `namespace` varchar(64) NOT NULL,
  112.   `key` varchar(64) NOT NULL,
  113.   `value` text NOT NULL,
  114.   `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
  115. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  116.  
  117. --
  118. -- Dumping data for table `ost_config`
  119. --
  120.  
  121. INSERT INTO `ost_config` (`id`, `namespace`, `key`, `value`, `updated`) VALUES
  122. (1, 'core', 'admin_email', '[email protected]', '2019-09-24 04:46:24'),
  123. (2, 'core', 'helpdesk_url', 'http://complain.rf.gd/', '2019-09-24 04:46:24'),
  124. (3, 'core', 'helpdesk_title', 'My I Help You', '2019-09-24 04:46:24'),
  125. (4, 'core', 'schema_signature', '00c949a623b82848baaf3480b51307e3', '2019-09-24 04:46:24'),
  126. (5, 'core', 'time_format', 'hh:mm a', '2019-09-24 04:46:21'),
  127. (6, 'core', 'date_format', 'MM/dd/y', '2019-09-24 04:46:21'),
  128. (7, 'core', 'datetime_format', 'MM/dd/y h:mm a', '2019-09-24 04:46:21'),
  129. (8, 'core', 'daydatetime_format', 'EEE, MMM d y h:mm a', '2019-09-24 04:46:21'),
  130. (9, 'core', 'default_priority_id', '2', '2019-09-24 04:46:21'),
  131. (10, 'core', 'enable_daylight_saving', '', '2019-09-24 04:46:21'),
  132. (11, 'core', 'reply_separator', '-- reply above this line --', '2019-09-24 04:46:21'),
  133. (12, 'core', 'isonline', '1', '2019-09-24 04:46:21'),
  134. (13, 'core', 'staff_ip_binding', '', '2019-09-24 04:46:21'),
  135. (14, 'core', 'staff_max_logins', '4', '2019-09-24 04:46:21'),
  136. (15, 'core', 'staff_login_timeout', '2', '2019-09-24 04:46:21'),
  137. (16, 'core', 'staff_session_timeout', '30', '2019-09-24 04:46:21'),
  138. (17, 'core', 'passwd_reset_period', '0', '2019-10-13 17:14:57'),
  139. (18, 'core', 'client_max_logins', '4', '2019-09-24 04:46:21'),
  140. (19, 'core', 'client_login_timeout', '2', '2019-09-24 04:46:21'),
  141. (20, 'core', 'client_session_timeout', '30', '2019-09-24 04:46:21'),
  142. (21, 'core', 'max_page_size', '25', '2019-09-24 04:46:21'),
  143. (22, 'core', 'max_open_tickets', '99999999', '2019-09-24 05:35:49'),
  144. (23, 'core', 'autolock_minutes', '3', '2019-09-24 04:46:21'),
  145. (24, 'core', 'default_smtp_id', '0', '2019-09-25 09:59:11'),
  146. (25, 'core', 'use_email_priority', '', '2019-09-24 04:46:21'),
  147. (26, 'core', 'enable_kb', '', '2019-09-24 04:46:21'),
  148. (27, 'core', 'enable_premade', '1', '2019-09-24 04:46:21'),
  149. (28, 'core', 'enable_captcha', '1', '2019-10-17 02:51:09'),
  150. (29, 'core', 'enable_auto_cron', '', '2019-09-24 04:46:21'),
  151. (30, 'core', 'enable_mail_polling', '1', '2019-10-15 17:15:34'),
  152. (31, 'core', 'send_sys_errors', '0', '2019-09-24 05:35:35'),
  153. (32, 'core', 'send_sql_errors', '1', '2019-09-24 04:46:21'),
  154. (33, 'core', 'send_login_errors', '1', '2019-09-24 04:46:21'),
  155. (34, 'core', 'save_email_headers', '1', '2019-09-24 04:46:21'),
  156. (35, 'core', 'strip_quoted_reply', '1', '2019-09-24 04:46:21'),
  157. (36, 'core', 'ticket_autoresponder', '', '2019-09-24 04:46:21'),
  158. (37, 'core', 'message_autoresponder', '', '2019-09-24 04:46:21'),
  159. (38, 'core', 'ticket_notice_active', '1', '2019-09-24 04:46:21'),
  160. (39, 'core', 'ticket_alert_active', '1', '2019-09-24 04:46:21'),
  161. (40, 'core', 'ticket_alert_admin', '1', '2019-10-17 02:52:56'),
  162. (41, 'core', 'ticket_alert_dept_manager', '1', '2019-10-17 02:52:56'),
  163. (42, 'core', 'ticket_alert_dept_members', '1', '2019-10-17 02:52:56'),
  164. (43, 'core', 'message_alert_active', '1', '2019-09-24 04:46:21'),
  165. (44, 'core', 'message_alert_laststaff', '1', '2019-09-24 04:46:21'),
  166. (45, 'core', 'message_alert_assigned', '1', '2019-09-24 04:46:21'),
  167. (46, 'core', 'message_alert_dept_manager', '1', '2019-09-24 05:36:09'),
  168. (47, 'core', 'note_alert_active', '1', '2019-09-24 05:36:09'),
  169. (48, 'core', 'note_alert_laststaff', '1', '2019-09-24 04:46:21'),
  170. (49, 'core', 'note_alert_assigned', '1', '2019-09-24 04:46:21'),
  171. (50, 'core', 'note_alert_dept_manager', '1', '2019-09-24 05:36:09'),
  172. (51, 'core', 'transfer_alert_active', '1', '2019-09-24 05:36:09'),
  173. (52, 'core', 'transfer_alert_assigned', '1', '2019-09-24 05:36:09'),
  174. (53, 'core', 'transfer_alert_dept_manager', '1', '2019-09-24 04:46:21'),
  175. (54, 'core', 'transfer_alert_dept_members', '1', '2019-09-24 05:36:09'),
  176. (55, 'core', 'overdue_alert_active', '1', '2019-09-24 04:46:21'),
  177. (56, 'core', 'overdue_alert_assigned', '1', '2019-09-24 04:46:21'),
  178. (57, 'core', 'overdue_alert_dept_manager', '1', '2019-09-24 04:46:21'),
  179. (58, 'core', 'overdue_alert_dept_members', '1', '2019-09-24 05:36:09'),
  180. (59, 'core', 'assigned_alert_active', '1', '2019-09-24 04:46:21'),
  181. (60, 'core', 'assigned_alert_staff', '1', '2019-09-24 04:46:21'),
  182. (61, 'core', 'assigned_alert_team_lead', '1', '2019-09-24 05:36:09'),
  183. (62, 'core', 'assigned_alert_team_members', '1', '2019-09-24 05:36:09'),
  184. (63, 'core', 'auto_claim_tickets', '1', '2019-09-24 04:46:21'),
  185. (64, 'core', 'collaborator_ticket_visibility', '1', '2019-09-24 04:46:21'),
  186. (65, 'core', 'require_topic_to_close', '', '2019-09-24 04:46:21'),
  187. (66, 'core', 'show_related_tickets', '0', '2019-09-24 05:35:49'),
  188. (67, 'core', 'show_assigned_tickets', '1', '2019-09-24 04:46:21'),
  189. (68, 'core', 'show_answered_tickets', '', '2019-09-24 04:46:21'),
  190. (69, 'core', 'hide_staff_name', '', '2019-09-24 04:46:21'),
  191. (70, 'core', 'overlimit_notice_active', '', '2019-09-24 04:46:21'),
  192. (71, 'core', 'email_attachments', '1', '2019-09-24 04:46:21'),
  193. (72, 'core', 'ticket_number_format', '#########', '2019-09-24 05:35:49'),
  194. (73, 'core', 'ticket_sequence_id', '', '2019-09-24 04:46:21'),
  195. (74, 'core', 'queue_bucket_counts', '1', '2019-10-17 07:30:13'),
  196. (75, 'core', 'task_number_format', '#', '2019-09-24 04:46:21'),
  197. (76, 'core', 'task_sequence_id', '2', '2019-09-24 04:46:21'),
  198. (77, 'core', 'log_level', '2', '2019-09-24 04:46:21'),
  199. (78, 'core', 'log_graceperiod', '12', '2019-09-24 04:46:21'),
  200. (79, 'core', 'client_registration', 'public', '2019-09-24 04:46:21'),
  201. (80, 'core', 'default_ticket_queue', '1', '2019-09-24 04:46:21'),
  202. (81, 'core', 'max_file_size', '8388608', '2019-09-24 04:46:21'),
  203. (82, 'core', 'landing_page_id', '1', '2019-09-24 04:46:22'),
  204. (83, 'core', 'thank-you_page_id', '2', '2019-09-24 04:46:22'),
  205. (84, 'core', 'offline_page_id', '3', '2019-09-24 04:46:22'),
  206. (85, 'core', 'system_language', 'en_US', '2019-09-24 04:46:22'),
  207. (86, 'mysqlsearch', 'reindex', '0', '2019-09-24 05:27:04'),
  208. (87, 'core', 'default_email_id', '3', '2019-09-25 10:12:58'),
  209. (88, 'core', 'alert_email_id', '2', '2019-09-24 04:46:24'),
  210. (89, 'core', 'default_dept_id', '1', '2019-09-24 04:46:24'),
  211. (90, 'core', 'default_sla_id', '3', '2019-10-13 17:12:56'),
  212. (91, 'core', 'default_template_id', '1', '2019-09-24 04:46:24'),
  213. (92, 'core', 'default_timezone', 'Asia/Kolkata', '2019-09-24 04:46:24'),
  214. (93, 'core', 'client_logo_id', '4', '2019-09-24 05:27:16'),
  215. (94, 'core', 'staff_logo_id', '3', '2019-09-24 05:27:16'),
  216. (95, 'core', 'staff_backdrop_id', '', '2019-09-24 05:26:39'),
  217. (96, 'core', 'message_autoresponder_collabs', '1', '2019-09-24 05:35:35'),
  218. (97, 'core', 'ticket_alert_acct_manager', '1', '2019-09-24 05:36:09'),
  219. (98, 'core', 'message_alert_acct_manager', '1', '2019-09-24 05:36:09'),
  220. (99, 'core', 'default_help_topic', '0', '2019-09-24 05:35:49'),
  221. (100, 'core', 'default_ticket_status_id', '1', '2019-09-24 05:35:49'),
  222. (101, 'core', 'allow_client_updates', '', '2019-09-24 05:35:49'),
  223. (102, 'core', 'ticket_lock', '2', '2019-09-24 05:35:49'),
  224. (103, 'core', 'default_task_priority_id', '1', '2019-09-24 05:37:22'),
  225. (104, 'core', 'default_task_sla_id', '', '2019-09-24 05:37:22'),
  226. (105, 'core', 'task_alert_active', '1', '2019-09-24 05:37:22'),
  227. (106, 'core', 'task_alert_admin', '1', '2019-09-24 05:37:22'),
  228. (107, 'core', 'task_alert_dept_manager', '1', '2019-09-24 05:37:22'),
  229. (108, 'core', 'task_alert_dept_members', '1', '2019-09-24 05:37:22'),
  230. (109, 'core', 'task_activity_alert_active', '1', '2019-09-24 05:37:22'),
  231. (110, 'core', 'task_activity_alert_laststaff', '1', '2019-09-24 05:37:22'),
  232. (111, 'core', 'task_activity_alert_assigned', '1', '2019-09-24 05:37:22'),
  233. (112, 'core', 'task_activity_alert_dept_manager', '1', '2019-09-24 05:37:22'),
  234. (113, 'core', 'task_assignment_alert_active', '1', '2019-09-24 05:37:22'),
  235. (114, 'core', 'task_assignment_alert_staff', '1', '2019-09-24 05:37:22'),
  236. (115, 'core', 'task_assignment_alert_team_lead', '1', '2019-09-24 05:37:22'),
  237. (116, 'core', 'task_assignment_alert_team_members', '1', '2019-09-24 05:37:22'),
  238. (117, 'core', 'task_transfer_alert_active', '1', '2019-09-24 05:37:22'),
  239. (118, 'core', 'task_transfer_alert_assigned', '1', '2019-09-24 05:37:22'),
  240. (119, 'core', 'task_transfer_alert_dept_manager', '1', '2019-09-24 05:37:22'),
  241. (120, 'core', 'task_transfer_alert_dept_members', '1', '2019-09-24 05:37:22'),
  242. (121, 'core', 'task_overdue_alert_active', '1', '2019-09-24 05:37:22'),
  243. (122, 'core', 'task_overdue_alert_assigned', '1', '2019-09-24 05:37:22'),
  244. (123, 'core', 'task_overdue_alert_dept_manager', '1', '2019-09-24 05:37:22'),
  245. (124, 'core', 'task_overdue_alert_dept_members', '1', '2019-09-24 05:37:22'),
  246. (125, 'core', 'verify_email_addrs', '1', '2019-09-25 09:59:11'),
  247. (126, 'core', 'accept_unregistered_email', '1', '2019-09-25 10:12:58'),
  248. (127, 'core', 'add_email_collabs', '1', '2019-09-25 10:12:58'),
  249. (128, 'staff.1', 'datetime_format', '', '2019-09-25 13:30:18'),
  250. (129, 'staff.1', 'default_from_name', 'mine', '2019-09-25 13:31:16'),
  251. (130, 'staff.1', 'thread_view_order', '', '2019-09-25 13:30:18'),
  252. (131, 'staff.1', 'default_ticket_queue_id', '0', '2019-09-25 13:30:18'),
  253. (132, 'staff.1', 'reply_redirect', 'Queue', '2019-09-25 13:30:31'),
  254. (133, 'core', 'allow_pw_reset', '1', '2019-10-13 17:14:57'),
  255. (134, 'core', 'pw_reset_window', '30', '2019-10-13 17:14:57'),
  256. (135, 'core', 'agent_name_format', 'full', '2019-10-13 17:14:57'),
  257. (136, 'core', 'agent_avatar', 'gravatar.mm', '2019-10-13 17:14:57'),
  258. (137, 'core', 'clients_only', '', '2019-10-13 17:16:04'),
  259. (138, 'core', 'client_verify_email', '1', '2019-10-13 17:16:04'),
  260. (139, 'core', 'allow_auth_tokens', '1', '2019-10-13 17:16:04'),
  261. (140, 'core', 'client_name_format', 'legal', '2019-10-17 07:40:43'),
  262. (141, 'core', 'client_avatar', 'gravatar.mm', '2019-10-13 17:16:04');
  263.  
  264. -- --------------------------------------------------------
  265.  
  266. --
  267. -- Table structure for table `ost_content`
  268. --
  269.  
  270. CREATE TABLE `ost_content` (
  271.   `id` int(10) UNSIGNED NOT NULL,
  272.   `isactive` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  273.   `type` varchar(32) NOT NULL DEFAULT 'other',
  274.   `name` varchar(255) NOT NULL,
  275.   `body` text NOT NULL,
  276.   `notes` text,
  277.   `created` datetime NOT NULL,
  278.   `updated` datetime NOT NULL
  279. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  280.  
  281. --
  282. -- Dumping data for table `ost_content`
  283. --
  284.  
  285. INSERT INTO `ost_content` (`id`, `isactive`, `type`, `name`, `body`, `notes`, `created`, `updated`) VALUES
  286. (1, 1, 'landing', 'Landing', '<h1>Welcome to the Support Center</h1> <p> In order to streamline support requests and better serve you, we utilize a support ticket system. Every support request is assigned a unique ticket number which you can use to track the progress and responses online. For your reference we provide complete archives and history of all your support requests. A valid email address is required to submit a ticket. </p>', 'The Landing Page refers to the content of the Customer Portal\'s initial view. The template modifies the content seen above the two links <strong>Open a New Ticket</strong> and <strong>Check Ticket Status</strong>.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  287. (2, 1, 'thank-you', 'Thank You', '<div>%{ticket.name},\n<br>\n<br>\nThank you for contacting us.\n<br>\n<br>\nA support ticket request has been created and a representative will be\ngetting back to you shortly if necessary.</p>\n<br>\n<br>\nSupport Team\n</div>', 'This template defines the content displayed on the Thank-You page after a\nClient submits a new ticket in the Client Portal.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  288. (3, 1, 'offline', 'Offline', '<div><h1>\n<span style=\"font-size: medium\">Support Ticket System Offline</span>\n</h1>\n<p>Thank you for your interest in contacting us.</p>\n<p>Our helpdesk is offline at the moment, please check back at a later\ntime.</p>\n</div>', 'The Offline Page appears in the Customer Portal when the Help Desk is offline.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  289. (4, 1, 'registration-staff', 'Welcome to My I Help You', '<h3><strong>Hi %{recipient.name.first},</strong></h3> We\'ve created an account for you at our My I help desk at %{url}.<br /><br /> Please follow the link below to confirm your account and gain access to your tickets.<br /><br /><a href=\"%%7Blink%7D\">%{link}</a><br /><br /><em style=\"font-size:small\">Your friendly Customer Support System<br /> %{company.name}</em> <br />', 'This template defines the initial email (optional) sent to Agents when an account is created on their behalf.', '2019-09-24 00:46:22', '2019-10-13 13:14:27'),
  290. (5, 1, 'pwreset-staff', 'Ticket Staff Password Reset', '<h3><strong>Hi %{staff.name.first},</strong></h3> A password reset request has been submitted on your behalf for the helpdesk at %{url}.<br /><br /> If you feel that this has been done in error, delete and disregard this email. Your account is still secure and no one has been given access to it. It is not locked and your password has not been reset. Someone could have mistakenly entered your email address.<br /><br /> Follow the link below to login to the help desk and change your password.<br /><br /><a href=\"%%7Blink%7D\">%{link}</a><br /><br /><em>Your friendly Customer Support System</em> <br /><br />', 'This template defines the email sent to Staff who select the <strong>Forgot My Password</strong> link on the Staff Control Panel Log In page.', '2019-09-24 00:46:22', '2019-10-13 13:14:54'),
  291. (6, 1, 'banner-staff', 'Authentication Required', '', 'This is the initial message and banner shown on the Staff Log In page. The first input field refers to the red-formatted text that appears at the top. The latter textarea is for the banner content which should serve as a disclaimer.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  292. (7, 1, 'registration-client', 'Welcome to %{company.name}', '<h3><strong>Hi %{recipient.name.first},</strong></h3> <div> We\'ve created an account for you at our help desk at %{url}.<br /> <br /> Please follow the link below to confirm your account and gain access to your tickets.<br /> <br /> <a href=\"%{link}\">%{link}</a><br /> <br /> <em style=\"font-size: small\">Your friendly Customer Support System <br /> %{company.name}</em> </div>', 'This template defines the email sent to Clients when their account has been created in the Client Portal or by an Agent on their behalf. This email serves as an email address verification. Please use %{link} somewhere in the body.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  293. (8, 1, 'pwreset-client', '%{company.name} Help Desk Access', '<h3><strong>Hi %{user.name.first},</strong></h3> <div> A password reset request has been submitted on your behalf for the helpdesk at %{url}.<br /> <br /> If you feel that this has been done in error, delete and disregard this email. Your account is still secure and no one has been given access to it. It is not locked and your password has not been reset. Someone could have mistakenly entered your email address.<br /> <br /> Follow the link below to login to the help desk and change your password.<br /> <br /> <a href=\"%{link}\">%{link}</a><br /> <br /> <em style=\"font-size: small\">Your friendly Customer Support System <br /> %{company.name}</em> </div>', 'This template defines the email sent to Clients who select the <strong>Forgot My Password</strong> link on the Client Log In page.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  294. (9, 1, 'banner-client', 'Sign in to %{company.name}', 'To better serve you, we encourage our Clients to register for an account.', 'This composes the header on the Client Log In page. It can be useful to inform your Clients about your log in and registration policies.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  295. (10, 1, 'registration-confirm', 'Account registration', '<div><strong>Thanks for registering for an account.</strong><br/> <br /> We\'ve just sent you an email to the address you entered. Please follow the link in the email to confirm your account and gain access to your tickets. </div>', 'This templates defines the page shown to Clients after completing the registration form. The template should mention that the system is sending them an email confirmation link and what is the next step in the registration process.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  296. (11, 1, 'registration-thanks', 'Account Confirmed!', '<div> <strong>Thanks for registering for an account.</strong><br /> <br /> You\'ve confirmed your email address and successfully activated your account. You may proceed to open a new ticket or manage existing tickets.<br /> <br /> <em>Your friendly support center</em><br /> %{company.name} </div>', 'This template defines the content displayed after Clients successfully register by confirming their account. This page should inform the user that registration is complete and that the Client can now submit a ticket or access existing tickets.', '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  297. (12, 1, 'access-link', 'Ticket [#%{ticket.number}] Access Link', '<h3><strong>Hi %{recipient.name.first},</strong></h3> <div> An access link request for ticket #%{ticket.number} has been submitted on your behalf for the helpdesk at %{url}.<br /> <br /> Follow the link below to check the status of the ticket #%{ticket.number}.<br /> <br /> <a href=\"%{recipient.ticket_link}\">%{recipient.ticket_link}</a><br /> <br /> If you <strong>did not</strong> make the request, please delete and disregard this email. Your account is still secure and no one has been given access to the ticket. Someone could have mistakenly entered your email address.<br /> <br /> --<br /> %{company.name} </div>', 'This template defines the notification for Clients that an access link was sent to their email. The ticket number and email address trigger the access link.', '2019-09-24 00:46:22', '2019-09-24 00:46:22');
  298.  
  299. -- --------------------------------------------------------
  300.  
  301. --
  302. -- Table structure for table `ost_department`
  303. --
  304.  
  305. CREATE TABLE `ost_department` (
  306.   `id` int(11) UNSIGNED NOT NULL,
  307.   `pid` int(11) UNSIGNED DEFAULT NULL,
  308.   `tpl_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  309.   `sla_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  310.   `email_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  311.   `autoresp_email_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  312.   `manager_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  313.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  314.   `name` varchar(128) NOT NULL DEFAULT '',
  315.   `signature` text NOT NULL,
  316.   `ispublic` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  317.   `group_membership` tinyint(1) NOT NULL DEFAULT '0',
  318.   `ticket_auto_response` tinyint(1) NOT NULL DEFAULT '1',
  319.   `message_auto_response` tinyint(1) NOT NULL DEFAULT '0',
  320.   `path` varchar(128) NOT NULL DEFAULT '/',
  321.   `updated` datetime NOT NULL,
  322.   `created` datetime NOT NULL
  323. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  324.  
  325. --
  326. -- Dumping data for table `ost_department`
  327. --
  328.  
  329. INSERT INTO `ost_department` (`id`, `pid`, `tpl_id`, `sla_id`, `email_id`, `autoresp_email_id`, `manager_id`, `flags`, `name`, `signature`, `ispublic`, `group_membership`, `ticket_auto_response`, `message_auto_response`, `path`, `updated`, `created`) VALUES
  330. (1, NULL, 0, 0, 0, 0, 0, 4, 'Support', 'Support Department', 1, 1, 1, 1, '/1/', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  331. (3, NULL, 0, 0, 0, 0, 0, 4, 'Maintenance', 'Maintenance Department', 1, 0, 1, 1, '/3/', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  332. (4, NULL, 0, 2, 3, 0, 1, 5, 'Customer Relationship Management', '', 1, 1, 1, 1, '/4/', '2019-09-24 02:24:44', '2019-09-24 02:24:44'),
  333. (5, NULL, 0, 2, 0, 0, 1, 4, 'LAB', '', 1, 1, 1, 1, '/5/', '2019-09-24 02:24:59', '2019-09-24 02:24:59'),
  334. (6, NULL, 0, 3, 0, 0, 0, 20, 'Operation', '', 1, 1, 1, 1, '/6/', '2019-09-25 01:09:25', '2019-09-24 10:03:45'),
  335. (7, NULL, 0, 0, 0, 0, 0, 0, '[email protected]', '', 1, 1, 1, 1, '/7/', '2019-10-16 05:48:03', '2019-10-16 05:48:03'),
  336. (8, 1, 0, 0, 2, 0, 0, 0, '[email protected]', '', 1, 1, 1, 1, '/1/8/', '2019-10-16 23:04:42', '2019-10-16 23:04:42');
  337.  
  338. -- --------------------------------------------------------
  339.  
  340. --
  341. -- Table structure for table `ost_draft`
  342. --
  343.  
  344. CREATE TABLE `ost_draft` (
  345.   `id` int(11) UNSIGNED NOT NULL,
  346.   `staff_id` int(11) UNSIGNED NOT NULL,
  347.   `namespace` varchar(32) NOT NULL DEFAULT '',
  348.   `body` text NOT NULL,
  349.   `extra` text,
  350.   `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  351.   `updated` timestamp NULL DEFAULT NULL
  352. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  353.  
  354. -- --------------------------------------------------------
  355.  
  356. --
  357. -- Table structure for table `ost_email`
  358. --
  359.  
  360. CREATE TABLE `ost_email` (
  361.   `email_id` int(11) UNSIGNED NOT NULL,
  362.   `noautoresp` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  363.   `priority_id` tinyint(3) UNSIGNED NOT NULL DEFAULT '2',
  364.   `dept_id` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  365.   `topic_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  366.   `email` varchar(255) NOT NULL DEFAULT '',
  367.   `name` varchar(255) NOT NULL DEFAULT '',
  368.   `userid` varchar(255) NOT NULL,
  369.   `userpass` varchar(255) CHARACTER SET ascii NOT NULL,
  370.   `mail_active` tinyint(1) NOT NULL DEFAULT '0',
  371.   `mail_host` varchar(255) NOT NULL,
  372.   `mail_protocol` enum('POP','IMAP') NOT NULL DEFAULT 'POP',
  373.   `mail_encryption` enum('NONE','SSL') NOT NULL,
  374.   `mail_port` int(6) DEFAULT NULL,
  375.   `mail_fetchfreq` tinyint(3) NOT NULL DEFAULT '5',
  376.   `mail_fetchmax` tinyint(4) NOT NULL DEFAULT '30',
  377.   `mail_archivefolder` varchar(255) DEFAULT NULL,
  378.   `mail_delete` tinyint(1) NOT NULL DEFAULT '0',
  379.   `mail_errors` tinyint(3) NOT NULL DEFAULT '0',
  380.   `mail_lasterror` datetime DEFAULT NULL,
  381.   `mail_lastfetch` datetime DEFAULT NULL,
  382.   `smtp_active` tinyint(1) DEFAULT '0',
  383.   `smtp_host` varchar(255) NOT NULL,
  384.   `smtp_port` int(6) DEFAULT NULL,
  385.   `smtp_secure` tinyint(1) NOT NULL DEFAULT '1',
  386.   `smtp_auth` tinyint(1) NOT NULL DEFAULT '1',
  387.   `smtp_spoofing` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  388.   `notes` text,
  389.   `created` datetime NOT NULL,
  390.   `updated` datetime NOT NULL
  391. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  392.  
  393. --
  394. -- Dumping data for table `ost_email`
  395. --
  396.  
  397. INSERT INTO `ost_email` (`email_id`, `noautoresp`, `priority_id`, `dept_id`, `topic_id`, `email`, `name`, `userid`, `userpass`, `mail_active`, `mail_host`, `mail_protocol`, `mail_encryption`, `mail_port`, `mail_fetchfreq`, `mail_fetchmax`, `mail_archivefolder`, `mail_delete`, `mail_errors`, `mail_lasterror`, `mail_lastfetch`, `smtp_active`, `smtp_host`, `smtp_port`, `smtp_secure`, `smtp_auth`, `smtp_spoofing`, `notes`, `created`, `updated`) VALUES
  398. (1, 0, 2, 1, 0, '[email protected]', 'Support', '', '', 0, '', 'POP', 'NONE', NULL, 5, 30, NULL, 0, 0, NULL, NULL, 0, '', NULL, 1, 1, 0, NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24'),
  399. (2, 0, 2, 1, 0, '[email protected]', 'Ticket Alerts', '', '', 0, '', 'POP', 'NONE', NULL, 5, 30, NULL, 0, 0, NULL, NULL, 0, '', NULL, 1, 1, 0, NULL, '2019-09-24 00:46:24', '2019-09-25 04:12:39'),
  400. (3, 0, 2, 1, 0, '[email protected]', '', '', '', 0, '', 'POP', 'NONE', NULL, 5, 30, NULL, 0, 0, NULL, NULL, 0, '', NULL, 1, 1, 0, NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24');
  401.  
  402. -- --------------------------------------------------------
  403.  
  404. --
  405. -- Table structure for table `ost_email_account`
  406. --
  407.  
  408. CREATE TABLE `ost_email_account` (
  409.   `id` int(11) UNSIGNED NOT NULL,
  410.   `name` varchar(128) NOT NULL,
  411.   `active` tinyint(1) NOT NULL DEFAULT '1',
  412.   `protocol` varchar(64) NOT NULL DEFAULT '',
  413.   `host` varchar(128) NOT NULL DEFAULT '',
  414.   `port` int(11) NOT NULL,
  415.   `username` varchar(128) DEFAULT NULL,
  416.   `password` varchar(255) DEFAULT NULL,
  417.   `options` varchar(512) DEFAULT NULL,
  418.   `errors` int(11) UNSIGNED DEFAULT NULL,
  419.   `created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  420.   `updated` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
  421.   `lastconnect` timestamp NULL DEFAULT NULL,
  422.   `lasterror` timestamp NULL DEFAULT NULL
  423. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  424.  
  425. -- --------------------------------------------------------
  426.  
  427. --
  428. -- Table structure for table `ost_email_template`
  429. --
  430.  
  431. CREATE TABLE `ost_email_template` (
  432.   `id` int(11) UNSIGNED NOT NULL,
  433.   `tpl_id` int(11) UNSIGNED NOT NULL,
  434.   `code_name` varchar(32) NOT NULL,
  435.   `subject` varchar(255) NOT NULL DEFAULT '',
  436.   `body` text NOT NULL,
  437.   `notes` text,
  438.   `created` datetime NOT NULL,
  439.   `updated` datetime NOT NULL
  440. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  441.  
  442. --
  443. -- Dumping data for table `ost_email_template`
  444. --
  445.  
  446. INSERT INTO `ost_email_template` (`id`, `tpl_id`, `code_name`, `subject`, `body`, `notes`, `created`, `updated`) VALUES
  447. (1, 1, 'ticket.autoresp', 'Support Ticket Opened [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <p> A request for support has been created and assigned #%{ticket.number}. A representative will follow-up with you as soon as possible. You can <a href=\"%%7Brecipient.ticket_link%7D\">view this ticket\'s progress online</a>. </p> <br /><div style=\"color:rgb(127, 127, 127)\"> Your %{company.name} Team, <br /> %{signature} </div> <hr /><div style=\"color:rgb(127, 127, 127);font-size:small\"><em>If you wish to provide additional comments or information regarding the issue, please reply to this email or <a href=\"%%7Brecipient.ticket_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  448. (2, 1, 'ticket.autoreply', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> A request for support has been created and assigned ticket <a href=\"%%7Brecipient.ticket_link%7D\">#%{ticket.number}</a> with the following automatic reply <br /><br /> Topic: <strong>%{ticket.topic.name}</strong> <br /> Subject: <strong>%{ticket.subject}</strong> <br /><br /> %{response} <br /><br /><div style=\"color:rgb(127, 127, 127)\">Your %{company.name} Team,<br /> %{signature}</div> <hr /><div style=\"color:rgb(127, 127, 127);font-size:small\"><em>We hope this response has sufficiently answered your questions. If you wish to provide additional comments or information, please reply to this email or <a href=\"%%7Brecipient.ticket_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  449. (3, 1, 'message.autoresp', 'Message Confirmation', '<h3><strong>Dear %{recipient.name.first},</strong></h3> Your reply to support request <a href=\"%%7Brecipient.ticket_link%7D\">#%{ticket.number}</a> has been noted <br /><br /><div style=\"color:rgb(127, 127, 127)\"> Your %{company.name} Team,<br /> %{signature} </div> <hr /><div style=\"color:rgb(127, 127, 127);font-size:small;text-align:center\"><em>You can view the support request progress <a href=\"%%7Brecipient.ticket_link%7D\">online here</a></em> </div>', NULL, '2019-09-24 00:46:22', '2019-09-24 00:46:22'),
  450. (4, 1, 'ticket.notice', '%{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> Our customer care team has created a ticket, <a href=\"%%7Brecipient.ticket_link%7D\">#%{ticket.number}</a> on your behalf, with the following details and summary: <br /><br /> Topic: <strong>%{ticket.topic.name}</strong> <br /> Subject: <strong>%{ticket.subject}</strong> <br /><br /> %{message} <br /><br /> %{response} <br /><br /> If need be, a representative will follow-up with you as soon as possible. You can also <a href=\"%%7Brecipient.ticket_link%7D\">view this ticket\'s progress online</a>. <br /><br /><div style=\"color:rgb(127, 127, 127)\"> Your %{company.name} Team,<br /> %{signature}</div> <hr /><div style=\"color:rgb(127, 127, 127);font-size:small\"><em>If you wish to provide additional comments or information regarding the issue, please reply to this email or <a href=\"%%7Brecipient.ticket_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login to your account</span></a> for a complete archive of your support requests.</em></div>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  451. (5, 1, 'ticket.overlimit', 'Open Tickets Limit Reached', '<h3><strong>Dear %{ticket.name.first},</strong></h3> You have reached the maximum number of open tickets allowed. To be able to open another ticket, one of your pending tickets must be closed. To update or add comments to an open ticket simply <a href=\"%%7Burl%7D/tickets.php?e=%%7Bticket.email%7D\">login to our helpdesk</a>. <br /><br /> Thank you,<br /> Support Ticket System', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  452. (6, 1, 'ticket.reply', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> %{response} <br /><br /><div style=\"color:rgb(127, 127, 127)\"> Your %{company.name} Team,<br /> %{signature} </div> <hr /><div style=\"color:rgb(127, 127, 127);font-size:small;text-align:center\"><em>We hope this response has sufficiently answered your questions. If not, please do not send another email. Instead, reply to this email or <a href=\"%%7Brecipient.ticket_link%7D\" style=\"color:rgb(84, 141, 212)\">login to your account</a> for a complete archive of all your support requests and responses.</em></div>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  453. (7, 1, 'ticket.activity.notice', 'Re: %{ticket.subject} [#%{ticket.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <div> <em>%{poster.name}</em> just logged a message to a ticket in which you participate. </div> <br /> %{message} <br /><br /><hr /><div style=\"color:rgb(127, 127, 127);font-size:small;text-align:center\"> <em>You\'re getting this email because you are a collaborator on ticket <a href=\"%%7Brecipient.ticket_link%7D\" style=\"color:rgb(84, 141, 212)\">#%{ticket.number}</a>. To participate, simply reply to this email or <a href=\"%%7Brecipient.ticket_link%7D\" style=\"color:rgb(84, 141, 212)\">click here</a> for a complete archive of the ticket thread.</em> </div>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  454. (8, 1, 'ticket.alert', 'New Ticket Alert', '<h2>Hi %{recipient.name},</h2> New ticket #%{ticket.number} created <br /><br /><table><tbody><tr><td> <strong>From</strong>: </td> <td> %{ticket.name} </td> </tr><tr><td> <strong>Department</strong>: </td> <td> %{ticket.dept.name} </td> </tr></tbody></table><br /> %{message} <br /><br /><hr /><div>To view or respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\">login</a> to the support ticket system</div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><a href=\"http://osticket.com/\"><img width=\"126\" height=\"19\" style=\"width:126px\" alt=\"Powered By osTicket\" src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" /></a>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  455. (9, 1, 'message.alert', 'New Message Alert', '<h3><strong>Hi %{recipient.name},</strong></h3> New message appended to ticket <a href=\"%%7Bticket.staff_link%7D\">#%{ticket.number}</a> <br /><br /><table><tbody><tr><td> <strong>From</strong>: </td> <td> %{poster.name} </td> </tr><tr><td> <strong>Department</strong>: </td> <td> %{ticket.dept.name} </td> </tr></tbody></table><br /> %{message} <br /><br /><hr /><div>To view or respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support ticket system</div> <em style=\"color:rgb(127,127,127);font-size:small\">Your friendly Customer Support System</em><br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" alt=\"Powered by osTicket\" width=\"126\" height=\"19\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  456. (10, 1, 'note.alert', 'New Internal Activity Alert', '<h3><strong>Hi %{recipient.name},</strong></h3> An agent has logged activity on ticket <a href=\"%%7Bticket.staff_link%7D\">#%{ticket.number}</a> <br /><br /><table><tbody><tr><td> <strong>From</strong>: </td> <td> %{note.poster} </td> </tr><tr><td> <strong>Title</strong>: </td> <td> %{note.title} </td> </tr></tbody></table><br /> %{note.message} <br /><br /><hr /> To view/respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\">login</a> to the support ticket system <br /><br /><em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" alt=\"Powered by osTicket\" width=\"126\" height=\"19\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  457. (11, 1, 'assigned.alert', 'Ticket Assigned to you', '<h3><strong>Hi %{assignee.name.first},</strong></h3> Ticket <a href=\"%%7Bticket.staff_link%7D\">#%{ticket.number}</a> has been assigned to you by %{assigner.name.short} <br /><br /><table><tbody><tr><td> <strong>From</strong>: </td> <td> %{ticket.name} </td> </tr><tr><td> <strong>Subject</strong>: </td> <td> %{ticket.subject} </td> </tr></tbody></table><br /> %{comments} <br /><br /><hr /><div>To view/respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support ticket system</div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" alt=\"Powered by osTicket\" width=\"126\" height=\"19\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  458. (12, 1, 'transfer.alert', 'Ticket #%{ticket.number} transfer - %{ticket.dept.name}', '<h3>Hi %{recipient.name},</h3> Ticket <a href=\"%%7Bticket.staff_link%7D\">#%{ticket.number}</a> has been transferred to the %{ticket.dept.name} department by <strong>%{staff.name.short}</strong> <br /><br /><blockquote> %{comments} </blockquote> <hr /><div>To view or respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\">login</a> to the support ticket system. </div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><a href=\"http://osticket.com/\"><img width=\"126\" height=\"19\" alt=\"Powered By osTicket\" style=\"width:126px\" src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" /></a>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  459. (13, 1, 'ticket.overdue', 'Stale Ticket Alert', '<h3><strong>Hi %{recipient.name}</strong>,</h3> A ticket, <a href=\"%%7Bticket.staff_link%7D\">#%{ticket.number}</a> is seriously overdue. <br /><br /> We should all work hard to guarantee that all tickets are being addressed in a timely manner. <br /><br /> Signed,<br /> %{ticket.dept.manager.name} <hr /><div>To view or respond to the ticket, please <a href=\"%%7Bticket.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support ticket system. You\'re receiving this notice because the ticket is assigned directly to you or to a team or department of which you\'re a member.</div> <em style=\"font-size:small\">Your friendly <span style=\"font-size:smaller\">(although with limited patience)</span> Customer Support System</em><br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" height=\"19\" alt=\"Powered by osTicket\" width=\"126\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  460. (14, 1, 'task.alert', 'New Task Alert', '<h2>Hi %{recipient.name},</h2> New task <a href=\"%%7Btask.staff_link%7D\">#%{task.number}</a> created <br /><br /><table><tbody><tr><td> <strong>Department</strong>: </td> <td> %{task.dept.name} </td> </tr></tbody></table><br /> %{task.description} <br /><br /><hr /><div>To view or respond to the ticket, please <a href=\"%%7Btask.staff_link%7D\">login</a> to the support system</div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><a href=\"http://osticket.com/\"><img width=\"126\" height=\"19\" style=\"width:126px\" alt=\"Powered By osTicket\" src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" /></a>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  461. (15, 1, 'task.activity.notice', 'Re: %{task.title} [#%{task.number}]', '<h3><strong>Dear %{recipient.name.first},</strong></h3> <div> <em>%{poster.name}</em> just logged a message to a task in which you participate. </div> <br /> %{message} <br /><br /><hr /><div style=\"color:rgb(127, 127, 127);font-size:small;text-align:center\"> <em>You\'re getting this email because you are a collaborator on task #%{task.number}. To participate, simply reply to this email.</em> </div>', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  462. (16, 1, 'task.activity.alert', 'Task Activity [#%{task.number}] - %{activity.title}', '<h3><strong>Hi %{recipient.name},</strong></h3> Task <a href=\"%%7Btask.staff_link%7D\">#%{task.number}</a> updated: %{activity.description} <br /><br /> %{message} <br /><br /><hr /><div>To view or respond to the task, please <a href=\"%%7Btask.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support system</div> <em style=\"color:rgb(127,127,127);font-size:small\">Your friendly Customer Support System</em><br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" alt=\"Powered by osTicket\" width=\"126\" height=\"19\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  463. (17, 1, 'task.assignment.alert', 'Task Assigned to you', '<h3><strong>Hi %{assignee.name.first},</strong></h3> Task <a href=\"%%7Btask.staff_link%7D\">#%{task.number}</a> has been assigned to you by %{assigner.name.short} <br /><br /> %{comments} <br /><br /><hr /><div>To view/respond to the task, please <a href=\"%%7Btask.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support system</div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" alt=\"Powered by osTicket\" width=\"126\" height=\"19\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:23', '2019-09-24 00:46:23'),
  464. (18, 1, 'task.transfer.alert', 'Task #%{task.number} transfer - %{task.dept.name}', '<h3>Hi %{recipient.name},</h3> Task <a href=\"%%7Btask.staff_link%7D\">#%{task.number}</a> has been transferred to the %{task.dept.name} department by <strong>%{staff.name.short}</strong> <br /><br /><blockquote> %{comments} </blockquote> <hr /><div>To view or respond to the task, please <a href=\"%%7Btask.staff_link%7D\">login</a> to the support system. </div> <em style=\"font-size:small\">Your friendly Customer Support System</em> <br /><a href=\"http://osticket.com/\"><img width=\"126\" height=\"19\" alt=\"Powered By osTicket\" style=\"width:126px\" src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" /></a>', NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24'),
  465. (19, 1, 'task.overdue.alert', 'Stale Task Alert', '<h3><strong>Hi %{recipient.name}</strong>,</h3> A task, <a href=\"%%7Btask.staff_link%7D\">#%{task.number}</a> is seriously overdue. <br /><br /> We should all work hard to guarantee that all tasks are being addressed in a timely manner. <br /><br /> Signed,<br /> %{task.dept.manager.name} <hr /><div>To view or respond to the task, please <a href=\"%%7Btask.staff_link%7D\"><span style=\"color:rgb(84, 141, 212)\">login</span></a> to the support system. You\'re receiving this notice because the task is assigned directly to you or to a team or department of which you\'re a member.</div> <em style=\"font-size:small\">Your friendly <span style=\"font-size:smaller\">(although with limited patience)</span> Customer Support System</em><br /><img src=\"cid:b56944cb4722cc5cda9d1e23a3ea7fbc\" height=\"19\" alt=\"Powered by osTicket\" width=\"126\" style=\"width:126px\" />', NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24');
  466.  
  467. -- --------------------------------------------------------
  468.  
  469. --
  470. -- Table structure for table `ost_email_template_group`
  471. --
  472.  
  473. CREATE TABLE `ost_email_template_group` (
  474.   `tpl_id` int(11) NOT NULL,
  475.   `isactive` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  476.   `name` varchar(32) NOT NULL DEFAULT '',
  477.   `lang` varchar(16) NOT NULL DEFAULT 'en_US',
  478.   `notes` text,
  479.   `created` datetime NOT NULL,
  480.   `updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
  481. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  482.  
  483. --
  484. -- Dumping data for table `ost_email_template_group`
  485. --
  486.  
  487. INSERT INTO `ost_email_template_group` (`tpl_id`, `isactive`, `name`, `lang`, `notes`, `created`, `updated`) VALUES
  488. (1, 1, 'Ticket Default Template (HTML)', 'en_US', '', '2019-09-24 00:46:22', '2019-09-25 08:13:22');
  489.  
  490. -- --------------------------------------------------------
  491.  
  492. --
  493. -- Table structure for table `ost_event`
  494. --
  495.  
  496. CREATE TABLE `ost_event` (
  497.   `id` int(10) UNSIGNED NOT NULL,
  498.   `name` varchar(60) NOT NULL,
  499.   `description` varchar(60) DEFAULT NULL
  500. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  501.  
  502. --
  503. -- Dumping data for table `ost_event`
  504. --
  505.  
  506. INSERT INTO `ost_event` (`id`, `name`, `description`) VALUES
  507. (1, 'created', NULL),
  508. (2, 'closed', NULL),
  509. (3, 'reopened', NULL),
  510. (4, 'assigned', NULL),
  511. (5, 'released', NULL),
  512. (6, 'transferred', NULL),
  513. (7, 'referred', NULL),
  514. (8, 'overdue', NULL),
  515. (9, 'edited', NULL),
  516. (10, 'viewed', NULL),
  517. (11, 'error', NULL),
  518. (12, 'collab', NULL),
  519. (13, 'resent', NULL),
  520. (14, 'deleted', NULL);
  521.  
  522. -- --------------------------------------------------------
  523.  
  524. --
  525. -- Table structure for table `ost_faq`
  526. --
  527.  
  528. CREATE TABLE `ost_faq` (
  529.   `faq_id` int(10) UNSIGNED NOT NULL,
  530.   `category_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  531.   `ispublished` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  532.   `question` varchar(255) NOT NULL,
  533.   `answer` text NOT NULL,
  534.   `keywords` tinytext,
  535.   `notes` text,
  536.   `created` datetime NOT NULL,
  537.   `updated` datetime NOT NULL
  538. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  539.  
  540. -- --------------------------------------------------------
  541.  
  542. --
  543. -- Table structure for table `ost_faq_category`
  544. --
  545.  
  546. CREATE TABLE `ost_faq_category` (
  547.   `category_id` int(10) UNSIGNED NOT NULL,
  548.   `category_pid` int(10) UNSIGNED DEFAULT NULL,
  549.   `ispublic` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  550.   `name` varchar(125) DEFAULT NULL,
  551.   `description` text NOT NULL,
  552.   `notes` tinytext NOT NULL,
  553.   `created` datetime NOT NULL,
  554.   `updated` datetime NOT NULL
  555. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  556.  
  557. -- --------------------------------------------------------
  558.  
  559. --
  560. -- Table structure for table `ost_faq_topic`
  561. --
  562.  
  563. CREATE TABLE `ost_faq_topic` (
  564.   `faq_id` int(10) UNSIGNED NOT NULL,
  565.   `topic_id` int(10) UNSIGNED NOT NULL
  566. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  567.  
  568. -- --------------------------------------------------------
  569.  
  570. --
  571. -- Table structure for table `ost_file`
  572. --
  573.  
  574. CREATE TABLE `ost_file` (
  575.   `id` int(11) NOT NULL,
  576.   `ft` char(1) NOT NULL DEFAULT 'T',
  577.   `bk` char(1) NOT NULL DEFAULT 'D',
  578.   `type` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '',
  579.   `size` bigint(20) UNSIGNED NOT NULL DEFAULT '0',
  580.   `key` varchar(86) CHARACTER SET ascii NOT NULL,
  581.   `signature` varchar(86) CHARACTER SET ascii COLLATE ascii_bin NOT NULL,
  582.   `name` varchar(255) NOT NULL DEFAULT '',
  583.   `attrs` varchar(255) DEFAULT NULL,
  584.   `created` datetime NOT NULL
  585. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  586.  
  587. --
  588. -- Dumping data for table `ost_file`
  589. --
  590.  
  591. INSERT INTO `ost_file` (`id`, `ft`, `bk`, `type`, `size`, `key`, `signature`, `name`, `attrs`, `created`) VALUES
  592. (1, 'T', 'D', 'image/png', 9452, 'b56944cb4722cc5cda9d1e23a3ea7fbc', 'gjMyblHhAxCQvzLfPBW3EjMUY1AmQQmz', 'powered-by-osticket.png', NULL, '2019-09-24 00:46:21'),
  593. (2, 'T', 'D', 'text/plain', 24, 'ifNCxMWtx86n3ccfeGGNagoRoTDtol7o', 'MWtx86n3ccfeGGNafaacpitTxmJ4h3Ls', 'osTicket.txt', NULL, '2019-09-24 00:46:22'),
  594. (3, 'L', 'D', 'image/png', 6969, 'hFYsLfTIOL3KnfPLE9Flvbiw4WvtAqQ0', 'fTIOL3KnfPLE9FlvknHYHY22ArjeyngF', 'suraksha_newlogo_updated.png', NULL, '2019-09-24 01:26:39'),
  595. (4, 'L', 'D', 'image/png', 15154, '0rsf7R1l1CBz2nz5Tk3l_lvfhjf8In-4', 'R1l1CBz2nz5Tk3l_vVCiZaAVfRd_7V5V', 'logo.png', NULL, '2019-09-24 01:27:03');
  596.  
  597. -- --------------------------------------------------------
  598.  
  599. --
  600. -- Table structure for table `ost_file_chunk`
  601. --
  602.  
  603. CREATE TABLE `ost_file_chunk` (
  604.   `file_id` int(11) NOT NULL,
  605.   `chunk_id` int(11) NOT NULL,
  606.   `filedata` longblob NOT NULL
  607. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  608.  
  609. --
  610. -- Dumping data for table `ost_file_chunk`
  611. --
  612.  
  613. INSERT INTO `ost_file_chunk` (`file_id`, `chunk_id`, `filedata`) VALUES
  614. (1, 0, 0x89504e470d0a1a0a0000000d49484452000000da0000002808060000009847e4c900000a43694343504943432070726f66696c65000078da9d53775893f7163edff7650f5642d8f0b1976c81002223ac08c81059a21092006184101240c585880a561415119c4855c482d50a489d88e2a028b867418a885a8b555c38ee1fdca7b57d7aefededfbd7fbbce79ce7fcce79cf0f8011122691e6a26a003952853c3ad81f8f4f48c4c9bd80021548e0042010e6cbc26705c50000f00379787e74b03ffc01af6f00020070d52e2412c7e1ff83ba50265700209100e02212e70b01905200c82e54c81400c81800b053b3640a009400006c797c422200aa0d00ecf4493e0500d8a993dc1700d8a21ca908008d0100992847240240bb00605581522c02c0c200a0ac40222e04c0ae018059b632470280bd0500768e58900f4060008099422ccc0020380200431e13cd03204c03a030d2bfe0a95f7085b8480100c0cb95cd974bd23314b895d01a77f2f0e0e221e2c26cb142611729106609e4229c979b231348e7034cce0c00001af9d1c1fe383f90e7e6e4e1e666e76ceff4c5a2fe6bf06f223e21f1dffebc8c020400104ecfefda5fe5e5d60370c701b075bf6ba95b00da560068dff95d33db09a05a0ad07af98b7938fc401e9ea150c83c1d1c0a0b0bed2562a1bd30e38b3eff33e16fe08b7ef6fc401efedb7af000719a4099adc0a383fd71616e76ae528ee7cb0442316ef7e723fec7857ffd8e29d1e234b15c2c158af15889b850224dc779b952914421c995e212e97f32f11f96fd0993770d00ac864fc04eb607b5cb6cc07eee01028b0e58d27600407ef32d8c1a0b91001067343279f7000093bff98f402b0100cd97a4e30000bce8185ca894174cc608000044a0812ab041070cc114acc00e9cc11dbcc01702610644400c24c03c104206e4801c0aa11896411954c03ad804b5b0031aa0119ae110b4c131380de7e0125c81eb70170660189ec218bc86090441c8081361213a8811628ed822ce0817998e04226148349280a420e988145122c5c872a402a9426a915d4823f22d7214398d5c40fa90dbc820328afc8abc47319481b25103d4027540b9a81f1a8ac6a073d174340f5d8096a26bd11ab41e3d80b6a2a7d14be87574007d8a8e6380d1310e668cd9615c8c87456089581a26c71663e55835568f35631d583776151bc09e61ef0824028b8013ec085e8410c26c82909047584c5843a825ec23b412ba085709838431c2272293a84fb4257a12f9c478623ab1905846ac26ee211e219e255e270e135f9348240ec992e44e0a21259032490b496b48db482da453a43ed210699c4c26eb906dc9dee408b280ac209791b7900f904f92fbc9c3e4b7143ac588e24c09a22452a494124a35653fe504a59f324299a0aa51cda99ed408aa883a9f5a496da076502f5387a91334759a25cd9b1643cba42da3d5d09a696769f7682fe974ba09dd831e4597d097d26be807e9e7e983f4770c0d860d83c7486228196b197b19a718b7192f994ca605d39799c85430d7321b9967980f986f55582af62a7c1591ca12953a9556957e95e7aa545573553fd579aa0b54ab550fab5e567da64655b350e3a909d416abd5a91d55bba936aece5277528f50cf515fa3be5ffd82fa630db2868546a08648a35463b7c6198d2116c63265f15842d6725603eb2c6b984d625bb2f9ec4c7605fb1b762f7b4c534373aa66ac6691669de671cd010ec6b1e0f039d99c4ace21ce0dce7b2d032d3f2db1d66aad66ad7ead37da7adabeda62ed72ed16edebdaef75709d409d2c9df53a6d3af77509ba36ba51ba85badb75cfea3ed363eb79e909f5caf50ee9ddd147f56df4a3f517eaefd6efd11f373034083690196c313863f0cc9063e86b9869b8d1f084e1a811cb68ba91c468a3d149a327b826ee8767e33578173e66ac6f1c62ac34de65dc6b3c61626932dba4c4a4c5e4be29cd946b9a66bad1b4d374ccccc82cdcacd8acc9ec8e39d59c6b9e61bed9bcdbfc8d85a5459cc54a8b368bc796da967ccb05964d96f7ac98563e567956f556d7ac49d65ceb2ceb6dd6576c501b579b0c9b3a9bcbb6a8ad9badc4769b6ddf14e2148f29d229f5536eda31ecfcec0aec9aec06ed39f661f625f66df6cf1dcc1c121dd63b743b7c727475cc766c70bceba4e134c3a9c4a9c3e957671b67a1739df33517a64b90cb1297769717536da78aa76e9f7acb95e51aeebad2b5d3f5a39bbb9bdcadd96dd4ddcc3dc57dabfb4d2e9b1bc95dc33def41f4f0f758e271cce39da79ba7c2f390e72f5e765e595efbbd1e4fb39c269ed6306dc8dbc45be0bdcb7b603a3e3d65facee9033ec63e029f7a9f87bea6be22df3dbe237ed67e997e07fc9efb3bfacbfd8ff8bfe179f216f14e056001c101e501bd811a81b3036b031f049904a50735058d05bb062f0c3e15420c090d591f72936fc017f21bf96333dc672c9ad115ca089d155a1bfa30cc264c1ed6118e86cf08df107e6fa6f94ce9ccb60888e0476c88b81f69199917f97d14292a32aa2eea51b453747174f72cd6ace459fb67bd8ef18fa98cb93bdb6ab6727667ac6a6c526c63ec9bb880b8aab8817887f845f1971274132409ed89e4c4d8c43d89e37302e76c9a339ce49a54967463aee5dca2b917e6e9cecb9e773c593559907c3885981297b23fe5832042502f184fe5a76e4d1d13f2849b854f45bea28da251b1b7b84a3c92e69d5695f638dd3b7d43fa68864f4675c633094f522b79911992b923f34d5644d6deaccfd971d92d39949c949ca3520d6996b42bd730b728b74f662b2b930de479e66dca1b9387caf7e423f973f3db156c854cd1a3b452ae500e164c2fa82b785b185b78b848bd485ad433df66feeaf9230b82167cbd90b050b8b0b3d8b87859f1e022bf45bb16238b5317772e315d52ba647869f0d27dcb68cbb296fd50e2585255f26a79dcf28e5283d2a5a5432b82573495a994c9cb6eaef45ab9631561956455ef6a97d55b567f2a17955fac70aca8aef8b046b8e6e2574e5fd57cf5796ddadade4ab7caedeb48eba4eb6eacf759bfaf4abd6a41d5d086f00dad1bf18de51b5f6d4ade74a17a6af58ecdb4cdcacd03356135ed5bccb6acdbf2a136a3f67a9d7f5dcb56fdadabb7bed926dad6bfdd777bf30e831d153bdeef94ecbcb52b78576bbd457df56ed2ee82dd8f1a621bbabfe67eddb847774fc59e8f7ba57b07f645efeb6a746f6cdcafbfbfb2096d52368d1e483a70e59b806fda9bed9a77b5705a2a0ec241e5c127dfa67c7be350e8a1cec3dcc3cddf997fb7f508eb48792bd23abf75ac2da36da03da1bdefe88ca39d1d5e1d47beb7ff7eef31e36375c7358f579ea09d283df1f9e48293e3a764a79e9d4e3f3dd499dc79f74cfc996b5d515dbd6743cf9e3f1774ee4cb75ff7c9f3dee78f5df0bc70f422f762db25b74bad3dae3d477e70fde148af5b6feb65f7cbed573cae74f44deb3bd1efd37ffa6ac0d573d7f8d72e5d9f79bdefc6ec1bb76e26dd1cb825baf5f876f6ed17770aee4cdc5d7a8f78affcbedafdea07fa0fea7fb4feb165c06de0f860c060cfc3590fef0e09879efe94ffd387e1d247cc47d52346238d8f9d1f1f1b0d1abdf264ce93e1a7b2a713cfca7e56ff79eb73abe7dffde2fb4bcf58fcd8f00bf98bcfbfae79a9f372efaba9af3ac723c71fbcce793df1a6fcadcedb7defb8efbadfc7bd1f9928fc40fe50f3d1fa63c7a7d04ff73ee77cfefc2ff784f3fb803925110000001974455874536f6674776172650041646f626520496d616765526561647971c9653c0000032869545874584d4c3a636f6d2e61646f62652e786d7000000000003c3f787061636b657420626567696e3d22efbbbf222069643d2257354d304d7043656869487a7265537a4e54637a6b633964223f3e203c783a786d706d65746120786d6c6e733a783d2261646f62653a6e733a6d6574612f2220783a786d70746b3d2241646f626520584d5020436f726520352e362d633031342037392e3135363739372c20323031342f30382f32302d30393a35333a30322020202020202020223e203c7264663a52444620786d6c6e733a7264663d22687474703a2f2f7777772e77332e6f72672f313939392f30322f32322d7264662d73796e7461782d6e7323223e203c7264663a4465736372697074696f6e207264663a61626f75743d222220786d6c6e733a786d703d22687474703a2f2f6e732e61646f62652e636f6d2f7861702f312e302f2220786d6c6e733a786d704d4d3d22687474703a2f2f6e732e61646f62652e636f6d2f7861702f312e302f6d6d2f2220786d6c6e733a73745265663d22687474703a2f2f6e732e61646f62652e636f6d2f7861702f312e302f73547970652f5265736f75726365526566232220786d703a43726561746f72546f6f6c3d2241646f62652050686f746f73686f70204343203230313420284d6163696e746f7368292220786d704d4d3a496e7374616e636549443d22786d702e6969643a36453243393544454136373331314534424443444446393146414639344441352220786d704d4d3a446f63756d656e7449443d22786d702e6469643a3645324339354446413637333131453442444344444639314641463934444135223e203c786d704d4d3a4465726976656446726f6d2073745265663a696e7374616e636549443d22786d702e6969643a4346413734453446413637313131453442444344444639314641463934444135222073745265663a646f63756d656e7449443d22786d702e6469643a4346413734453530413637313131453442444344444639314641463934444135222f3e203c2f7264663a4465736372697074696f6e3e203c2f7264663a5244463e203c2f783a786d706d6574613e203c3f787061636b657420656e643d2272223f3e8bfef6ca0000170b4944415478daec5d099c53d5d53f2f7b32c9646680617118905d3637d0cfad282aa82d0af6f3b3b62ef52bd6d685ba206eb54a15c1adf6538b52b4d53a564454a42c0565d132a86c82a0ac82ec8b0233ccc24c9297f7dd9bfc6f73e64e92c90c5071ccf9fd0e249397f7eebbf7fccff99f73efbb31860f1f4e593936a4da74d2d8eeef53b17f2f51c4fd5d6b7e4ba19385ee177a9bd0ed8d3e832534dfa4d2351ebafaad3cb2d92cb219cd636c6d59f3ceca11920b849e27f4c742af68f4b7a342f34c5ab8de4d3f9b12a4b0005d7301991447d63ebed7e2125a283457a85d680d22d2be26463405995d8dfeb63f4a4b44241bfa463e5902642d7d518a5a59a065e5bb29ad849e2a7480d0d384b617ea05e024bb89080d093d287495d0e94267093d90c1b9edf85f82b4a2d19451006dc65617ed2bb3538f76618a449b57c76781f6fd908e42af14fabf42bb65f89dde42af12ba4ce848a10bd21c9b23741803f3bb42c709fd6d4657921015003b74c8205f8ed9ec4096cdd19abf7884de2e74210cbf5b13ce2123e05ca1f7e37cc9e45788921c3af703d80d47b3a049b3b739e989d21c2aca8d36cb81c802adf94a6ba15385fe41e87147c04e1e018dbc00399da49b4542ef4d13b97e2d343fed999d16d57ee3a0498b7dd426b779e56559ead8fce504a16f0aed7584cf7b2e72bbbd426b01b8d6691c763f8a97fa1f4c471bb71db4d194b51e6a17c8022d2bdf1d9151e695a30032253ee47c99caef285ecd1c9b92df0aea58e88fc672b3e654d2cf52c7e62d922af6ff96ae2de3d152a1cb8556b1bfcb4249cb3a47ca54cc23fec93569fe1a0f4522061946f31d946c443be65c5fe470befd736aca64f19193f5427f227487d00e427f29f432e477dfc4efcf8abbf76094e6adf4d0a4955e9ab6d14d6e41218de63cac59cb3e86bc9e11a592eda79019f60aab6b74f54de64a7725f9bb9c3c2eff0fddc2c342bf04555c47f142493f11e7a6935d00cc6fc6d0f4e55e07fdf4a502ba654690262ef791d76191c76135efb1cd9af7b123d2a36f3e14a4903d4c5eabd1fe5d468e9edadf4a854e04008347b9f9e385be56871afaa22171232119c50e96dbe9c036173d58eaa7399b5c541532c8efb2a87bab08990263d1e68db32cd08e297a61086bb36cb4fa4031f5cfdf127b9da104845ea3fd4d4694a1145f62d5e62837fd39a1a312ad11912b274aabd67b68f1976eea901fa1055b5cf468690eb5f34763343127271eb14debfb31b68eb3cf3e3b6be1c7904c9bbf8cdedcdd8bfab7d824dc7cc67ef02c8a97dd95940178df20b66c10dae22834572ed31a416ad58808c2729de2e37372c914579db5c94d0b05d00c579472dd227ab5689eab3eb211ed3b99a75994e7aa8a17452c8f30de8c5cbe5c31ef62ef1f12ba04afe522e12784be91c178cbfcea75d04c59ccc8a37839df29b412f95e5b009b50f45856e70c820e4e58e1a5cdbb9d542822598fb689758bdf57906581760c8add885255d843353541f2d84399d04759363f91bdff40e8abda316b8456537c82399dc849ee0758cae8a3c42a907244ca2280f64ca18384ce8e013d2a401834e9ab3d4eca775a146a19891539be2570c9f6ca2561edf17e8fd079420f6581969598f8edb5b4a2a20d95ecec4bc33b7f4854eb6fe82b8329be1e51c95f11c5b874a1d4eb1489196349ec559ec8b142229456daaac856673e4cca761457a653e2319b7cf258bbb6ee70d1b0c979b4eda09d5a78a37252ad1dc527b723a0b029fd0bc5579a48aa5b20d48df6ca08bab109dd2823f23d4207328afb43a1dbb240cb4a4c2c11481c24cbddb528f11b149f074e29329aa9b027170fbf9be498ae1ab5d42f2acff027725a9f4b44dcfb561e9d2828dfd567098c1db2c59b107b80c650935d6159c720b96adf8a3d42b39d0a22347e6e80566e7752f7b691588e46f155ff72517315ce904a64e4dc041a7abef437147f22e079a13765a963568e8a14b8aae9fdbddde8e4e00eea259442fe5460cb038553f24fd03b5d4e4e79b15819de7a37e2b61e731cb4d17df302f4e4877e6a2fa8dfac0d6eaa0e1bb4b7d246c37ad7d0c80b2a880ec46696db89e6b48c3529d7dc459ee8a1454b7cf4d66a0f15b73415c808f91c01340d492ef2c2969478b6cddbc42e8c6ac0361b88a8474a8e475ff786d39891055a7a31601c4e78e3508ae33c38a6065efec82418369376d40468555911f50aec8d47b6e4f36a72deac2f5eef448ea58ba461dd539aa3db9a496dc2b74c9c951b1afb5e20669d9d5acb0286413336ba636b0f0f08a0e57b2c1a39a052dcb14057b55125a0b05ae464f3b7d718e3576df6866f9e9627724b8a1dc74af68af65530c33759dea7447e26172aaf07d8f2d1ff9587317effe985263d50483a09efc76581d6b0c8817e01b98f7cd46434c59f3ae6d287e2eb0adbe3987b8ed4c5a30254c7b92b68b22cf38b88d6397777aacd7ae4fc5800afbf04fdd2e5062d874b80cc4e2f52dbf0cdcfcccc0ddd332d488581682b9f61150b70796d762bd2ca67c9a7a537b7f24523f3b63ae9ea92022ab9f28004db12ea5a3b78f906d7ce817715c92a89af4b71a83857e05180cc0580c8b63c04f07b589e269dd2a39478505452cf3b50c49120fc239c979b9ab225c2b727ed19c8482fbc648196a22641f179a90ef83f999517a0b2e54c6ac8870b36e1903d22b2391ca174391a5fa8bb32491e24dbf500e94bed2cda2d22d96801b2179ef9672eddfe76b0b038dfbcc9618b3da8d99e5d4d562a17442d7ab263303a7ff27a3779dfc9a347cfaf282f793dbf7cd2a75e5bb9d3bab66361e41671813ed1ba516a8bd0c729be624497afd96b79839f4a40e3fdd66398e5a44b96b7a1a0a36c657f16680d4b84d1c50329a8e341786e19fd761f8d46380d934ab69d4277772a25476c5ecd96cc8b2af944fb4c56dcfe86aa20972951d378c0e631d74e1054f1376fe69dd12edf7cce65a753a256ec3e5e84d1c8fce807422f911a8ed2bdc707cd715345def6c53e3b2ddeee143431fa74aff6a111a66944c5e7938d3855947d271fd11922f44f42cf107a9d9623f19ccdc5de77a2f8960b76383bb984ec1f49ba463ec83a18d4b91011b312e3b080e24f103444e5e5b3729782d606e18cc653dd6df22ea6f814462125a638e48a9b49ac827922faba9386a78be18465db2a1c48e04e45c366a3027435c5e74b1623c1ae4c929b0c42e2e7c54517c13311e3d936500895a0cbfd248a1156373203f6e33b1edce81e50221931fac393c8b9a0f9e0f2c40ca115dab91e83d4055c7913a8d520e42816aa72ff22aa57b23e139d9583aadd7a16fa53f17d1b8b14ea7c3f419fc8364ea3f88a0c79ce8b700e3948ab9200a2ad8a1ec436c2310c8b361fcaa750d41e075a7d69cd220fa78db2523706c512259206de4fdee8c48dfbedd18b1f6b4355216a2f403631e0b27a09ca27f3895b847ea5e577d7a3fa375600715fae2bf67dea986f5e651834221436b6898ebdc2a80ff47384fe1db6f421c5d75c72e2ca6b9e4a4e02ad54f29724409351f74eaabfae53c9f9a0a5e9e6cc241b795a285f16f53aeb7be9c0e4130757012c94a40db7012f8310b975b9041a73d60e7886e7d1b07168e80fd817e682e7abd02e9fde7d099e8a8b1cec6728be625b1ad673f04c37e3fc5246a1e42baf251fa128c1df47c33822f03412a47281ea29da3556c218168236498fd91946f50d3aef200658523e39b1da513b4729dab412efefa6f813c05e96d34cc8b052c6238bccd32e637f1b05e02fc2a0f5c0352f64d4497a6639b92ce79be6087d4f672b3e7b38be06b2be7871ef2aeaeec06bb9825edf5a6035a2ca72b975c0dc751efabacaa016bee81d22924990cd455b7507548b5cb50ad1718cc8df66e5ba2de90ccfb5e2cdba2f49342538b47b30c63722572b6ba01fab01bc54858c47615fe9641302433ab6f6a80632d9c6e1b8df7600dd59ecf3b5c82dbba3df7bc0b6fa30c79f4eec3656fdf1c2e0fb2131fd9a798817019a020040814c469979e8401f3af63a78e6103aac2f2b459fc3ae752e5e0710663d300809b25718c85622628510a64bd01935ac3347a0ed8468741e0cb823c02bc1f5193e3f0bf7e0c7bd3d82f698308e7d309ece1974a0c9bcd710b4750dfe5688b6ca39ac298c6674d1bc7e3bbc9e579f395874c874c68a23290a364578fd3972a2f3e138b8bc1feb5f4b80cc1fa5671704e80e919715e644fb8a9cec06ac9abf2b09c8b8bc0a1b90ece15aadf4fe759aef2d40df47f0dd4ccaf2a9a2dd4d1ac8c2601fd2f15e4ef10d825e461008a5c8ab09c7ddc8decf60202314b8ce624ce54644da7e9478d68e40379f84d31f053ac9dbfe216cf23119c06c1a979527fe394070298b6203e1010650624ee65550aef371ace2acf701040bf1fe7480e838189d92229627aa0d5c2621c2aa05b2b7e3264f4747d78262de0b6e1d66605d0bca3012e7e8064e3d1c6d3f9112cf6bf5c2ebdb1958ef46243f1714b5b1320614fc62500a15b106c1d89570b6309819eb7bf5124541196f68bf8c7caeea64f9591eebb7452cc7716a51659830d7ed5460d2cb4b7c3462662e15e444c9668bf5878cda6fb3e89e4ed444f87fc381aad2fd3d6c2c75d98131b95ca3a48d957614df558b8bbcee50b09a77c042ae475ffb293117a700bb034e9f6fa9b00481a196a51043d8e712c47fc6e726d281fbd8e79781cd3c0150717eff36aaaeb29d636d5a989ec0e6623ec609945c04a35586f104a302ff82272018f879f83e21dcb646bee447b42c0705cd47e408b2ca4d4f16c966200fca017551e7ec0bc0d5e0fd6e78aaa9888aaa48f019724c173cdc348a3f662fe517a07152a683ea124acabf078dc9a41225650522a389c8328e1d73211cd6a78c21a81caf27f37ecbeb700d234a65110fe5b92b523d759dcbfa6d03a35e4abe821155927ca8b2ca46ef6f709343bcf60bfa28685f6f16493399cc5d0e70754234fb2bae712ea2d6431897028db6495bd9494d9b6754116d288bfc0446f287469c672f22ea5896b7ae41fff05d99af003323b0a82949ce3507e3ad72d801acc063d3a87dcaaae347dafb8540a90340511bbe7c00bac2450128884e919ee57794d8cca5150cfe7544ce4b0096fe68d42ae459aa43a5112e8331dbe0557258343c9e79a2c5cc903bb2c8f95f42bf40874431707e166d78de56cbdeaf03e8bb6708b4355a65f22b78d0e3e048b602cc27c3500d44e9beac9feb806c77ad9ffa04f6500719cdcc64f978ec3e5d68f716fcad428bb09bd50f47bcbed447afadf052b7c2887cc8d260fd9ce98f51ec8113ea0276f011a2dbd3a0c00f42bf86432c45eeb688524ff8672a03b5f72f36f2fb39a070aa382103c4ad8ce613ec94afa07122425a0c3435781d4832c5a2072d473aa09949383325a9bed524f1827c998b1b615919db190015013c1edcb4a45abd19c857b39bd80f301bec26aad1e6cf61546ecde055b9d8c3a2d35a749a9d1213a6657008aa1ad8d4690e2345bf998c46a836ce06fde90c2adb07ed5c0be7f36f17bead26482709903dd06336b96d2210c4b636a85710e9c61cdc4a561451530f712aeab2a862a793a62cf3519ba0a99e64b6b17bce34d2f07b72b2b11c08ca7521c6b21fe8d71046a16ea3a62de8b592cc17963761aeed4cadb89183ea376940e37b509e4ce996ae252490c206281dd0f42771fbb063b6800214c31b77609e946040f90c8835180809b40b1065f6c0b0d4e31a97b2c8f239c01566d5a3a19a975625f508aeafa2939d4d2896c3abfa71ce61f0faea7307bedf17f75180e8a8775ecb0c9377d20a1c525a30c7b28b45cd4fe0746e60c587c5e897b86559063dde6d2e15f9f7922706325faafd434e60c6ae8a2821966bc7fb4dd0c48dfb1d34759d9bba251ebc3429b18f48a65b1cf8d02f11aa3b191b01f5fd107d5c8cfe389b152ae458fc8cd4063d4d77680d1a740ad1135c2722dc0ac684ec5a7e1b4d33b513812d39d938da523889a41f0e67865f4075574e7fc0e634bab2ea939acfb99b356235cbf3545e520c63530f10560268a762e03e62002318e48fd8353aa12cfb77cc6354a7a8506d619dd70ff9a2fabc27a620fe0f45096530c35815d48e42498b46785c791dbe95c055ecf522ad38a1728e1fe3f55bfc8445de723a217f0b051d358864494196c768ed275a345774b0b681b6af67ce3413e986b2f676e43cc751fd5d882df4ff5c140706e2d8412812351560116d0e2caf09e79a8cc2899256a81afa5864afd12aa6e750628ef53ca61742252bfb23632e562aa0e911ed14508e1994982c56d59979283a8c00b04623227c4675378699c1aa6c2b0028bf96b4efc580f462f3149fb282cc6078da975052fd1237d59d150f2a29f92e5e5528e85c8ece9c8af73b0186b6e884ab50d0990083790305971e1ac01b0299eac7f1e8fc001c886acb1bec3899a7fd1ac704d01f1ff393dedd7901d9648551e665a99fae1e0c5af309c6454fc0b7fddb68c206752988d0d0eeb5b468bb33b6210e9b5b5355c427a8e15f8c198871fc1ba2f5c7282efd94524f0eaf42d1621cf2ba579b18d1b668efafd48b470dc84e14abd6c0299eceeee90e7c56a61546fc68ffc126445deef4ea453413206b8f12797f366877e2f517a03ddfe0c43f44a9bd279bb3b99575fc622de1547310fb984795b29479ad7988ac07603897a20cdf1dc73c850a612b56c20d68f73209f31f11789aab31d7d1964d41bc817997296cde6b24b8fcb3ac1c1d4891c3799937fc1cfd740da2956acb48f4012f362dd34ac075263c7d22a251c4956e407bb36af04b1ab52e60112d4eb1420605da86e99ad3ab687fb54d2f5e95829d5cdf80111531765302c32f474a509421bd360f23a2bda339b611193a4362fdb10bf6f080e6181e44c48d52dd5fcc398df886430d8bfe53555d5345343bbcf218d0421faa6faf22a228f907f8f7507829278ce503ccb570cab20f03d409de9dd39c7b01885012ef340509fee5302c17403a15d14c958d7f815c6a13d55ff0f96718f930388230ee63068b2221dceb2c783737aef11a0a149df09d64fb227e8168e083e793e7ba19f9de7e50953949b8fd2c4653e7d43b6b6d4046323f0a25fb357a7c3afab83568d044eddb43d87447c254455493e57d2dfecb717a1ce77b0aa5fb6949eeb31051bf330cfe23e6cc6474fe2dc621d91c4457440cd223772365261cb09a1af1c0514e44fb7781950c80dd946aed71b2a2d47b70a4a318061e076b9b08a7a3162bdc8f7b180f675a0bc7ab72d0a56c0cabc122fc6c8e6d246cdb702449123f8031bb603cc9f8cb3a2493ea07ec4269e6629642939d635d9acedd806b38718db0768d43946492579315e87855de0f27b91f799ebfc0a118aca0f05192e90e2e07883d6f0419858133b581568598202596fe7c46f5d73d8a56ca072bad9e18248b45275e391b4ff5374bed01cf4cf51c83e8bdb25a1b850e19e4c8abb349ce3478f88761b0cfc24195e13ecec4679dd08fb7b3b3be00605f0b631c073a1ac1980d46b42844e49d7e184033d1b73329b1be533ab8df205f3f08f0b580935ca84d29e8b4ee1938d67e782f03c6efc1c64621d5506ee97f702f07d8bde502d8250c685b70dd8b5865732cdabec491a20a6965904cd311981fc9440ef7814a4b4b728fd675944198294ac0772202f664b4b1fef2a5785eb618cce257c8fb0a700fd310c9e624b9c60044f728a22d8b5d069d5d14a2d33a86686bb99de76984fc6433febf15aa8ff12bf0ee3bd8df556efe340a4bc9b650280350c768fdebd70a3b5e061ebbc6b2942c075d7c9e018458becbabb105547709569ec6de760004bc10750baabf8fe0be9e625328c114d5d9965a3f3d0c6718607892dad1a135c04d59391a92835c53816c33a8653a59096ae6426ea976a14a3597730306fb7ad27f9d53d0c62e27d4d2259b6a68cc9c80005a3d5ff01aa2f3a598f66801606f06655b9ae2bacb29f123f132a76907b0ec039d9f4dc937d7998e625618f7f515ab844e4074f253fd5f195d8aebfd08ff7766154875cd994865a6e37f0b6dd0e9ffdb486b06205ab544dbbdf8ee2728989d838ab91f4e541ebb15e77c5f3be722b4eb564a4c8dc99469bef1f2cb2ff742688ca0911bb3b838e222a9c62fe12177c2fb7f9aecc0ebca4635e5fc7654212b51c1ad2f4193464f0fd298d21cea10349b439f1a70306a43950a4acc2736b8a3519a7ed40b377644332fd84235a8aad540db5a2070c9e3cbfe5f800100b3e0af98735d4afd0000000049454e44ae426082),
  615. (2, 0, 0x43616e6e6564204174746163686d656e747320526f636b21),
  616. (3, 0, 0x89504e470d0a1a0a0000000d49484452000000c8000000530806000000daf9481e00001b0049444154789ced5c77981645d21f5031dda9170ca0b04b1010490640946c006409ae3be49c930909ea19eecce1d4339d590c8888f79978cc390106302b2a0a022aa28388242357bf99eedda6b767aa6677ef7b5f9f67fef8c1bbef7455575757755557f7bcded6ad5bbd0c1932b89173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219f9173013264c867e45c800c19f21939172043867c46ce05c890219fe105fb3588c30e841684c1847308b7121e243c46789430877019613ce168423d4593c433038fbd09b519fc390fe474a13aa19640feddf2405616710eb227e10cc27b84df085b85d844f8907041ae07f63bc73cc20f0cf255c735086f09e41f9107b2b2703908a2c58a40ee142e2c276c9febc1fd8e718f40c7a7e4819c71785d207fcf3c909385ed2067080626c16ac29f723db8df31ae12e8b86f1ec819874705f2b7ca033959980e729c6050526c2114e67a70bf639c2fd0f1517920671cee6564ff99b07f1ec8c9423b48e320da6f549583006d733db8df314e17e8f7b03c90330eb733b2af27ec970772b2d00e728a60425cf835885603d7b3e3733db8df31a608f4deecff418e6a849d08bb12764c41771323ffd784bfc4d06e47d859f59deb792875901b9901d9b83f8852b2e6840308ad090308971316107e214cb33a43e9af3fa15f0cf0ac6b82b0281f1e9bc0a3bf82adf8460ccdbe56fb7684b308b3822855689c20134aad1d099308570751f5693e611161316121e171c20d84a984ee84bf0a26e64446ff3f121a24d07764743d88d0d24107673886702ee19120aa462d0da2a2cb276a4cd85f5c1c447ba0da31fdff9b917f25e18f46fbc2203a2a981b4499cc6784b7953eb12f3e58a0331bbbabb99c40b892f030e115636e5e253c41b8993083501444e575a78370033271a1403838ce418e49e3787f90c0b3ba9a2c8e471b8b8e33b601aa5d0ba530fb792f872c38eb9949f82a85deccd513b407268c7512c36363109fa2c0987e64e87f71cccf38a5ff3463f93e463f5733749faa760d942ebe67da23623e446892a03313d710bea8c0dc7c4b984d3844f332532ce979876d8052b414f05ec8f05828e061af364399f67d089d1226c977c8b14fc01b2107e4e14362c6c9390864ddcb41873308498975bc41b30be1ff2a318ed31c72700e82151c11eedb947d7d43383c46671a88825f57726e3607d18251ea20486dbe1312235455e414b469c03be14b0c8fe704f2d9a9433fa6fd2d843509cf8739e46822188b0458c95de54ece416028ae1cfe1f823e1fb3686ea9e4182e73c8c139c886208a0a15e90fe9d99e8e3e3590327311498aa3b583e0cce2c11484c8e35a2408e902f62abf307c9f667870f575186d738ba6b8924a9ae090a353154d00708f833fe72048edf6b06824a9d5ba60dbbd4beb2a90ff0e87fc9c835416673bfad4c00259158b17f084790e02056f49410c650f4f10d40636cb3f313c1f6178cc65e8b12a35b568fa545249a73ae4e8cbd0fc94629290f76f67f13f81a159156c1bc591564852ab71563f97545237801d91806bab806f1290a25577f40b7465687f4e31379fdb27e9dc86d6856bd504710ed230e057b807181e7708066f6fe42aeb20e739e498613cc74281d410951de4d5389f40e50b916c24e14b863faa43352cfe273334cb83a8f4aadb5f2818c7838e7148f71ed0eb136a8ce710ae233c1344a9de47417907bfbe923ae7809b1a7604d51869b4c39d2f54ae9006a218d356cd0d4ae483951e93faf9c27517eb9a0a08fc62c09f9ce3e4948b50f7323c38c563e53ec0a2a9888360938755ea79a5705b0e9441ef574ae70ebc38e3fd3828ef20a73234cb8268738db6289ac49d4569ac25143864e34ebc35c63b6801140a8e71c8cf9d839898ade60877b3ee13d260d1897390c941541e1e1a336613dc81ecaab8dbbc150991b8e0d83941188983dccd0ce80a861e11aa914593e60a0d0a10b8b6cf5d25971e9a6123bd88e913b79fed8b9da731342893a2d40cc37c5330ae5131f27107921a696fdede26e4fb7707ed2c011d52ccdd2b393738877999eb27e97d90f384833481f2d8a0187e1207b99d19d4050c3df837b4684a84b273e95d1aa00c0ca35a22e8d7e520673134fa1c413247aed4ca94f31b010f549da607f14669e32e01cf176368910271a97892837040050c36fa9640c695dc0b53482f360a189940a5ca75d354e220b73083e30c020e6a9f307365dead6a8cf52ba870ace2072aa523377f8110a4d097cb41b871e2b419b70a38435a1e94bf296043a21f0d1cd40e13e84492ba754ba0e7a2220e01250e02bd3656634465edd920b9a46fa3dc26dd051ccc485642db50db597c249bf41b1959b8f08b7e6d431f2490f73e81b24dfc21883679b3956eb8f2755a07b994a17937881c91e31db74adb40de9ee65c02d5c4a42b33f733f4ae7d978987187a57995b0329161ce2ce205a48b8ca69a51dc453cab83b25f3f783e8d299e62129f35ecfc8f106438f4850d7a2192e90352e4777a1bd1a5b45952e7110ee7d9077080385fce3525e1b8848cb52c80d19eac5f07a84a17d9c9185abaea18ae5da27e25c87dbf3fd4f1c4463621095cea41d141bb408755cb5656642dffb09fa7639c868819cd2abe388a61baa7002e21ce406860697f9700ec0adb4008c5e7af3017b1254a0a4d1042bb42b923cc5d03dc5c8c18d6b8da35f1c5c4b6f83fccf1c441b89f4aecb5d069de4247d7e42bf12437739c8448606fb22c9fe03673d69de99015fdc6c7e8769e7729099dcc4059183e0cc477227ecdc94737c44204be100577afa1243f32cd3ff3c861e77b8cceb26db09fa3481851a07abdc5ea7d441e24e25e320c9eb81d70c1a6c64b99509065ee8e80fef062c16f4b7c1417f12438355a7a660cc3d846346e91039bdbe26cfdd8f7239c81c86c6bc2e2e39b7825ee2d2a138c0e8ce0cf8a80fd8af29bcc6b4e7f646dc95229ceb9857d33b0ae70657dc51dad6b72db83277a983e05d056cbc707559f22ef9314281b019d33f03849365c911ff758efea609fb83211458b4d3191aac4692773438437c53e9c5a6bb9ca1733908772f0e0765ba8a83f76cd60a747397d5877e198a1bb7e432e35c8be66da67d52a600b85e3b3081cb88e6a2c655fda0e3a2a0fc4b58e73074a50e625e6d40090d9b24dc07ea10442bf21e6a42908ae084f23381d200f39ed1c1421a38d1996ae281bf07f2bb332e07e1ce14700e207190a4bc1865dd7d62e8b88b7b2e07e15650a4b8e6267506d31e40f46e6fd0c058503544b4c28d0044bc5d826de5802e25d751702ea3ab52db05fc7b25af33ba7e4630cf66f9fa76a66d5c0a7d2ed34fa9832072ac8b6984dfbac28a05c7497399119867082349b14c7c17a4df74b9f620dc0f20d8e13a0e491725a1bbb8b7ebb8eb312e07799aa181439a4ebd8be2c3e967a1d59779250415c66541941e2105d2bf6d25d13b1619edb028b37ec2b47f9bd1f5f30c3dcaf9758cf649450dd86fdc5ba1dc35a05207691da42bf14931d410064618e7845505978370290e5e5c8a33ee34e118ab26d2395c5844d9785250de08e3e8eccb7edc86737d50dea9a5576acc92b6e4c721244046a123082e512e67dae3ec2869dffb22438fc244a1d19ebbdcf9a91a2be60687df5354ff173374a50e5210441b98aa34d625c1b6374e11d21754711f36b05ad89b51ee75624445c94fd0b44929cb13011ffe81f783f2c6c26d72ed144343527942054c1fb20da822bdcf3164402acebdee6aa6642ebcc2d023da996913aa79690e6bf59babdce2b95c3b084234f7ae451a2034bb5e8de4de73e08c9f539ccbd83903055c3f606003ab3c97fa98385dd17107acb6836021e136b94831ec4809e03ab7c450f4ef0a74a882b9c66a5efa0e7710955fb9fb5d705273f1b4c1bd5a8d31da9752b9ca9f898b140db73f5c669e835c5905ca02105e3bc50c1c8e5891280285a3943884698792a47dddfd3f02feed83f8c932d1404dae44667db3999b38a458a683608ff091609cb6816870efcc00586cea2a54e6ed3ba4cc2556ff28acac67e8cc2a9c0bdc8d09c86cffe8c5be02bd69e89f3de50e64979b0e8283b8cabccb8be37f5c478fabe668207796bede8b4884abd33a9c4a52023b1a4856fdde8cccb693706548acf07a13cd8d151b5ad341507ae55eb2728d53a32090edf5509dc2594a9acb7b1a288d2332bb7e65a430e09d0ef225bd57fe6e05c78fdb160f08680b55fb994cbb6d5e98420a01efc78f08e047dff076e1458a090c02757efd1b49d894bda7be8753f4750d7843cdbade0f848dfb147adfed5bdf1e4c9720ca019f0b22cf5f1644b929fac12540a463f67e0246772403fb5ac5c1029ad20def5ac2ba7deb79eb6ad573c96c0274ff0aa2b40f72af54bac1e45e6db46bcef46d5f73c13cb4abc0384db410d043ff3b281d17a9f9c69b77b8e487bb54d82823dae3e013afd5c221ce09a2979b92aa7e3b2bde497d23b52bdd8338f4dc5a207fe9ef6aad2d2f437b35168c61a99a1b447ed8eccd415951e400a68f2342077174100794f0902661954bfce53b38c5cb2ddb7ae7140ff2e674e8ea7d537b7fef7b32ba98f6db2bc53a0faea040c6582b0df0dfa41c7979bd26def2fa077a5fd7699824b3ad174cd8ae9c5eaa1aeb485ea18c550ed80d16c00d6a115c97728ea06bd07d55d028e493963e50fd63fc61ff6e3d546a6e4207d11dc04036d42c0c3b5d0fd0f7dfab95348513799bf72ef01e6bd3d13b6efc14afc7a4695ef749d3bdbf950cf15617340cf98a27402910ceb5a6764392af204e09a9260563d2930a40ded5e40c8fb6eee89de60ff3868d98e40d1d39d93b65c048ef93fd9b791ba84d9c71ae53ceebd2d15ad5e607154981b48e8ef6eb43790b4be5d573b5be565d6f0539f3d206cdc236697842964d219f82905f68a0021ed05d48473a039f85cddb7817f4eaefddddb19bf725193abed74e93e4b8e80bfab9a3f3b1dee861e3bd7f752f0e1d456a1f7a417be69076de0c9ab3d91dbb7a2bea1e10f68ff1a45934f41c99fa85bec1237490b38e1fecdd72544fef313290170e3adc7bbd592bef9d030ef63e68d42254feaac2c621132833a96318f41612f0d1369dbce27153bc6272107fecc921e02870923575f60f85e1848e26acbe37b7fd31dee44163bc13078ef61e6edbc5fb9c0c024a48bb6a86134b746bc8d93e6cd8c25bd0a28df754abf6de13ad3a9072bb7913068ff57a4e9ceaf59a702ac97e4a8822fa7b227dff6983a6e1b8f4c46f524a5c4913027956d76914461b6dc86b557fd0d92a6af36af3d6a121bd467a5d532772f4b58ca3847d511f5f90eedf6d7c90f7e2416dbdc7697e3047308a070fef1246e7e123267afd479fe8cd3bac73e8e89c21a06f18e2e2030ff566d1b86753747f92f4b0f8c04328721e18bb1287b4c4ff43b289796d3b7b371ed5cb9bda6f44a99e8a264ef3c60e1de7ddd7ee68eff5a6ad42fd2e213d6f0c1d795b7ef81b7d5c56e47bdd264ff7fa909d74a7ff4ff787964613de36ea793791cd82b6a7ea7fc4f089a1a33d4dfac19c2539a95e7820df0a3547b005e817ff43df186be820300a0c121df551065232ee64afdf9893bcc1b4928e1a36c19bde7798777b971ede47fb370f956c0f5a47a17bc9a01139e020da394a9d84f89f414e8249df18b32a43704cf4c7d4cfd9640070acde24531f252356f7db8e2c0a27737382a3ac55ab3a9ea3dd27a4b05b890eced69fc6051931ee48b953c3bf6d79013c3f819cf3154a175f6bd6da5b4086fe30190826177a194ef28c1b328e8c63bc776e9f81de7c320c4ccc5b4d0e0e0d680c7d0fde0026f3a401a36801e918ca0847839cdf1a0ebc5939221629f481d5157260fcbdd41cf55672e36fcc95e60fbe2e2759a774fa25e91d0e01798bc747860dfdf69a10f1193a7292773319dd8aba4dc2f63a3ae2330c7726cdff007246d014a979293174759c32d6e270aca7866daf228385a36c52514a47eb4b696ce0b38d7dd0dfa7970c0d0d36eabfbc8d41479f51fa7b7eeffedeb1d4fe78925bd3a3df22a59781d4f7b5dd8e0b53e590976127885288764b1a362727ebe50d27c78aec61aa5a24231d43fed0416ca32809714ad839808e4180010c1c7582775dd73ea17745a1285a51a1c0cb7b94841d9842dbc000260f1aedbd4d06b44585696dd0e0036399434e3698fa012f9bbe58a56d7014382c56f0720aa0cf515ab63f45c0a6e14a037ea0c3c441be9218f95c088d1b0b8732c49eca508bc385a0cc407b2a4743c81f4dcea31dafa454a727971af7c994be3ddeba4328ef4f7bd60e27ebae4eddbd7bc880cfef3d40adccd322fa047d96ea258c7a9193fcb8579d50afa58e417333a7c331de6872d6480753ca8dbfc4d02d5662a42c985344c387293ac1a9f0ac58208b1e2bf40c47eaaf8cf5fdc62dbd070e3fd21b4bbcb038b968f13dfa9fd5a95b98b9407e18341ce3d3fa4dc3c815671b2674dfa19d501aa79dee27d2cdfc1687850b0fe42a52f3e8b207f0703a88a4e3fe634e0c578137289ca2c38983c7840a94181e8c04d10906819463b3721484c6936985856114c7ace8b6a3c0fbefec142940ef275ea5951e291326151130e4e79ed8ed09bb1276216c2799746e7cda0938f9b5a320ca5c43c603599166e8153dc6297652f26eef74647210cc0fa238160818385254a43ee0eb88927afc3bda0b02da23bd8423879905331ece66c0a3ef9868dc1c2fdd3f22341c1b2931a2ff109acb0427dd418d6527979dc0e9b0df41fa3f881c0c8ee858c86b281e35f477da418e263c4e7892f014e105c22b84f98467097713c612fe680f5a47993eee15618ae20774b09506c191baa1da85fd894e1f2c1e0315bd96ada94b015829b07a2ea45c72d0a8c9619885a21d4aa84598a1787d4c58ad80cfcf13aef02387914c7e674bb6c363dafd5bb5b9c47e16a58e4ee3d56849b88cb080b092f0b592751e618c9ad06d8d911c6c12a592582462d247e8f02ec212c2578455844584c9b6a122e25ab487299b785a418f5feb407f8f362d4c5a87d3d7507280f63ec26e76ff582cb098f654e9a4455f933055f5bb54cd2374f416e15a4235d34ecc3da6c5e748c243844f158fcf090b09c76a07194ad82ac0bb8426f6a01352801b0ddadeae363a37773806b0a3320653864be3f860e0fdd4fe22469e12c29716bf2d84f5d677f563e86df4b7e8def4add558e13df5fc69215f4f4deec5841f0dfebf123639fa6ce6d2478c1e1a13be31e87f236c569f9f13c875bcd056808e0cafea8415aaed7784dd5ded6252f67e8eb9fc4d019f37f8b2850ecef18bc1e32743e7576b07c12abd457d39c78f3c1f4a3f88d08330d760f0816f441206971b7447c6b54b485b062bdaeffdc8a3f1791961e7383e09fb9f5e7e64605b9542ae231ce147abd05f0975958ce7abcf92f11de7308ae98e768bd4b3fb847c812b2c9dc3200a087b130e55f2ebe788008542be971874b7111a183ca1a3ea0cfd5e4a4fed086d09ff34f89de94711067aed42d843208f5e3c96fbf2c8dddd2f7304e0563f8ae6854a479001b6f30701af797ed9e27336a1b61f6519c8788ed20e32c02f5b452e8b6174b721d0f80a4c4607218d06f604dab0e6a8c9d0bc7aa5e40587fe5cd16275383e257d1c8a154fe8ee5bf5f9074223abdd9bead92c21df36c6583f22ec13d36e9ad16e8e90f74d06cd2155a083b106bf632b40af1d0429520d417b38d127469fe32a29ff4b8a0f22733987d60ed2cf2f0bddff8c61d4dc2f0b450f083bbfd418485c7e1e87de066d27f5dd9294fd6b0c3278dd5849859af015cfb584517e149e752a55cd68f7b6fa7ea690efb586bc0312da61b57fdf2f4b296a0a78171bbc91bb4b56f9244c36f81555805e3b088c7e0741fb1e467f8f54c11c9e66f0bbc1b722a87610e4d2da412e8e6184fc70b55f96f74a3a3753ac36298486903aa57ad2f87eaafa6ea32f4f83809b0d39ec540f4685703c5001ce248d7603fcb208f2673f8abe7694ad6618c1cd42be0b54fb757e94d224b5bddae8b3bd90ff5506cd6242c314ba4c7290ca441044cac44aa2c2b9be6cf1900255af470c9e0f13fea29f6b078151e88dc9f9318c10da749af29eb0f32b8d8e5ba710bac8a07bde8f1c0d39f9bdc6f7a7a7e0f7985f965e35b09ef534786acc15f21de29785e75a4a474bd57748b9f655ed3e50df5d2fe059dd2f339ad8fd9681e986dcdd52e8e43c830e959f2352d09a38b182fd03d50cdd2cf1f9fd0f708dd15fbb0aca6c033a9e65f07ddd570bb059c5fa593dfc470c13acb4badaf392b0637330691ce465bfbcd1da40454d129281ff281a8cb1b1f50c7f236a6255d5fb3089210323fcb28856a0be339d5b3bda87eaef6b847c5ff7cb9cec4f4c5b334a4b238806f60f3a2dc4dca6dd2702a71afd1f9d92160ea1d366e8a89a80e642a3bf8a44ac245c64f0c64257573bc848bfacc273560c715f83f83a618737f8e91da4b34183c2804e7b06a9cff71bcf632b6316ce36684a62da6015f94eb5b952c877b46a8f8d796de3fb5b8dfe90062c4ac9f74e83be07d376b15fe6a4fb0af99be8a5e4d769ceae29e96754603e34b029d71b6e69041960f4775505c6cb0167777aaf3d4f3b08f2655d369bea20aae997793a205d696ef3d33bc8937e59da52e0788ef2b376e67b843c5b1a34380475451eec21b4a1943bd08bc178dfed20e0f5997a8612ec57eab3f30cc781ae86dee05cbbc5b41b67b4abcc86d54c2f5aa5a4fd9b41db39252d16a5657eba3d084af281a241f9ffd04a8c3b0e7aff1b680731c3244236ca943810445e3ac9dfb6ac36334547b30dbab682f61d8df671c68f30fc8a5f6698d255f37683f7936a3251fedd41fd8fd54f9f055d28e4a9f36fdb410033d5d2903a1ec6681aed1b7e547dda5bc98af9c15e51a7c5a860b514f0c58a7d921a3b52371828cebc740a8895d3dea37130f7321d53d2c2f157295a1c083bafd03830d1e8738d1fd92816d35d15cf264a5f5c34dcd38faa58ad945ed1fe28c513bc5768073173af24ccf4f94da309b33ac0290f863adf689fb4693cc16877b650161c1acdb1c603452c3514a211771664e32cd5fe57df1ded665a7caf48a13b5457eeb0e8373864fdc28f228e94ef1b8a0e15b25516afdb53f0d130f79969f72030501db5218be41c4403c509f35601f6523859d7e751882edcc1231c4217a7bef1cb9fcc9fa61d042b214a8b5899115e5e53c0dff3d4c476a980f2108de62bde07316d9baa76f3d544256dd8b05abfa8e443be2fc95d35b0b223c77f4b2905b93b8c65991a334ebbbb0b798df3cbeeabb90ef3b0e23fe597dd6b9b54011d7655f2a22881d4020605637ade8f4eae6ba5e487b4104596958a1774b048f1da29252f6da87a8ed394f20194539f54f428a4a4711000e936f621707a2c1c5840e020d80e48cfbb2e50f3be5ad1231d469108fbcba88a857f3264c8e046ce05c890219f9173013264c867fc1717f89989cf1389330000000049454e44ae426082);
  617. INSERT INTO `ost_file_chunk` (`file_id`, `chunk_id`, `filedata`) VALUES
  618. (4, 0, 0x89504e470d0a1a0a0000000d4948445200000331000000aa08060000009ddfc19d000000017352474201d9c92c7f000000097048597300001ec200001ec2016ed0753e00003ad749444154789ced9d07d82d35b58643950ed2abe7202845ba22557a112917814d11a44b071b55e922520414e9081c0411290a7251110404a548519422520e45ba23bd23dcf5ddccf0cf3f67f64eb23265efb3bff779be473cff245999ddf24d9215f301218410420821840c0e6f99f43fde133d465114455114455114d5c77aff839c8979cc10420821841042481f23bee5259a18420821841042c8c0401343082184104208192868620821841042082103054d0c21841042082164a0a089218410420821840c14343184104208218490818226861042082184103250d0c410420821841042060a9a18420821841042c840411343082184104208192868620821841042082103054d0c21841042082164a0a089218410420821840c14343184104208218490818226861042082184103250d0c410420821841042060a9a18420821841042c840411343082184104208192868620821841042082103054d0c21841042082164a0a089218410420821840c143431841042082184908182268610420821841032500ca289995bb4aa6863d10ea26f888e141d2cda53b4b5e80ba2e54533b6142321c4984945f38b5631f673b99fe83ba21345678ace129d243a4a7480685bd1eaa2054593b7102f21fdc07ca275445b887611ed6bec6fdc21a2bd8dfd9c6c245ad1f0378e1032c40c8289594ab4bfe872d193a20f02f4bee811d165a26f8bd630d50f8ece168d0bd4da15c750c6e28ab8a05922da5c4ad966379d273a4374ace85bc69ad42f8bd615cd1111a796954cf5fd3b5d748ce820d11ea26d446b8966ada3033583cf1662c7eb75bde81513f679cdeb75d11f8d353ceb8ba66cb01f656c65aa7d4f1f2f3a54f435d14ea2cd452b8866a829fe22d378c6dbaf3adea38f83003e336b1afb3ebf419498f0cfca78d195c61a1d989f2a3f2b9b9af65feba234fddba382763754b4ab6583c0d876f5ac77a7c07afb4dcb78f4111cd107b1e675a067dc45cea8a8fd73453f121d9dc682b154f630646133c00f0dfbd5c44c25da4e749bd10f82bae945d145c63ee5aae229d65b8a18be5a41bb2e3eaf880b1a13d1e646ca36b57a4af42bd161c63e95ac9b6d1beedfe3a25f1a3bcbf89906faa705332de344ff31f5dd8b9745178a566ba44713729223be2a858735bf159d60ec2072ea1afa335383fda943e3abbf258db2b6e81cd1bf4df5f7060f0ff0e00edf57b10f43be5b437cb19a46d18f4b2a68f719d1f48ab6357c2b30b69f7ad67b6e60bdfda62f7af6f32f7d106b5e377ac65de4b586e27b5bf437d1cf8c7de0ef6b165ba71f4dcc8ea69e2ff632bd23bad4d8a7579328e3a58919a1691353d47dc63ed99e39a20fbd68dac414852fe6dd4d7f2c21c15231dc8f367e2cd0e636690c4dd1a48929ea5563072978125cd553769a9876c06b788769ee3ebd6baca15955192f4dcc681da3685b034d4cb968629ad33f8d9ddd5d54197b23f49389c15e97ab4d7b2fd8a3c63ad0b902e3a68919a16d139309af099667687eec7ad1b689c984a556d847f2918afbe70b66bdee74c4d884ee12ad5c735f33da3431793d27dad9c41b389a9866c15254bc5fdbbc677f3776d951c8f7224dcc68e189f5028af643a18929174d4c3bfabdb15b14fa8e7e31311888d4b91425447b04c64e133342bf98984cd80fb57a447f8af48b89c974bfb1092c9a02a6e96463f79ab5ddf7bc4e33f51bba7e3131996022639650d2c43403d69ae381c37ba6fd7b9669b180f8696226d4958af643a18929174d4c7bc27718f6d57c54d9975ae80713b3b4e825d3fe0b0461d946e89a579a9811facdc44018709f10d1a73cfd6662a0ff1abb41bc6ef0f4f1ee16fae72b0ceac7d6d579d37f26267b6f7f4bd91f9a98faf9b86976e9988f6e0dec034d4cb9d656c410024d4cb96862dad7b326ec4148adb46d629015e179d3fe8b92e934451f686246e8471393a90a23d38f2626d3c115f4af1b4b18bb8ca9ed3ebaf42fd1276bba07fd6862321daee80f4d4cbd7c4af4b469ff3e15b563603f6862ca85fd97756674a28929174d4c7fe80563b3d1b64e9b26066bbadb5e235c94c65dd2c48cd0cf26063a22a26fa09f4d0cf4f5c8fe9581ac68fdb2d4d34718382e54c37de86713031d15d81f9a98fa58d634979c2644c8f0376d605f6862ba6b6f451cbed0c4948b26a67f8471c1d2ca7e55469b26064f84da7e11f2ba49d90f9a9811faddc4409b45f4afdf4d0cb45644ff8a7ccc0cc60c4c5148d21173de5119fd6e62a0cf05f48726a61eb0f935e67ca43a7586a23f3431dd85415cd5df33193431e5a289e92fdd6b5a3e63a62d13837d275857d7f60b90d716cabed0c48c300826e661a34f533b0826e6afa69ad4c3d3a675b5dd1fad70d866955fae836062f07a4de6d91f9a98eac1efda83a6fd7bd34d9f56f48926a6b7344bd07da08929174d4cffa989f16c57da3231bb996a6e1ea6c7b1d918a9996f36d6156acc110eb19a42d9179a981106c1c4c4dcff413031d076cafee539bb86b89038e321633fab38bbe2e7c69e528ecf6d1d7be362970fe619041303ede9d91f9a98eac1996355f733313635f235a23f187b76c3ab8a7aee56f68926a6b790b1a98ed4b33431e5a289e93f2131d7eccafe45d39689f95fa3bf6158de821fead97ad48f295e2cabd94ff46bd19b8e3abf13d1179a9811b426e67bc61e5259d4bec6be3648eb8bd7b1aa8db258afaef921d49a9843bbf40fef4fec6538c5d8414a554bb79e30fe4fe4cb58b3a238a07b8c7d0db14fc075a02cf6b21c28fa73456de330db25f4b761141a1383654565aff961a2e344e7193b30ad7203f8e39efdc1fb7f5c05d2ec977aa882768ff7ec6753e0fc952a5e3fbc672e34f6bbb4d77714060d583d7096b1cb275df5eeaeec97c6c4e037b1ecfbae2a696658eb3231d0f58a785cd465627632f19fbd9b0363cb7451056dfb9e24af31312853d77b56bb8c5d63627e57d2fe41c68e357e20ba3cedebeb8ababbe91065ffa269c3c4e08bd9652abae94cd174ca36f1a3f06333613a673c499957dd1b9a983c5a13b348401b1894c2d468df4399d657f44f6b62420e50c5467abccfdf89ec9ff60c112cb57b24b26d08cbf6d655c6007076d43d15c40143e4324f3e684cccb301f5c3c02131c3038a768aaacab8f9a05972785e83f13501ce4d88ddc88fcf3b660ea752c680ef0d2c6d7ab1a46e0c566650d6ab3131af28dbaa933a4d0cb469c5f1d66562aa40fb3bd8e4f9221a13737183f1f9a23131be0fe571b61a1ef69faa6c27afdba37a19411b26663da3bb493798b8a7cb19538bb649ebc3390bbf88ac8f266684264c4c06d273c79c5bf223459b4d98980ca42f8c19d01ea9681354f144f968a31f8ce5c1e71d03fbd8830237ae2096ba4d4c060cd796c62e95d5f6577b768c069a18fb7433e6fd09b35e55ba527ceef0fb969fcd8cb9df34317e1a6faaf9cecba089898326260cac5e8a596a88b1f41c8a76a369c3c4ec61c26f108cc29c35c482c3c862cf95a08919a1491303b0a4d0672945991e52b4d7a48901f319fd52a33f2bdac32ccce3caf632d591e61983b2f72362c20f5aec6c4c532626635153fe54dd47b744b41bcab09b18cca0bd6bf4efcddb4c78da635f56307660b642441d3431fefa7685f1d2c4c44113a3e350457b9942cfa0aa84364c0c9e106bbee8fb159a98119a3631602d659bd0c702db6adac4808eb2cdff1abb793b84ad956d65aa730660f7c8d8624fd86edac4801d146d42af45b61bc2b09b182c51d6be2791d062e6e6430e62184d8c7616149fbb792a8a9726260e9a181dc86cfa47459bd04911edaa69c3c4602362e8cd39a581b8b4d0c48cd0868901b72adb5d39b09d364c0c6610ee57b61b7a78ebb5ca76a05f2afb17c28511f1c5fec8b76162f0daff4bd12e347564dbbe0cb389c14302ede658641dab6ac05b27c368624e3436918ce675bda0a2786962e2a089d1b3bea2cda6df831fd28689c11e94d09b7378037169a18919a12d137390b25ddf748d196d981870acb2ddd502dac0acd47f95ed20c9c2fcfaee7983419f7603e21b46bfb919b46162c0c98a76633fc7210cb389c1f7b8e6b5817c5361b7cd309a98738cdd73a959268865af31cbf7326862e2a089d183e34634b391bf8b6c57451b264673fec44f1a884b0b4dcc086d99989595edee12d84e5b26660365bb9d8036620664559ec7e2426b58a12f45b4db9689d94bd12ef4990adaf661984d8c36f106ce7da922494d130ca389b92c2da34dd8504546449a98386862e2d06406fd4b05ed06d38689c18027f4e660eabda9e511a1d0c48cd096895950d96ee81e8eb64ccc6794edee11d086f6ec26cc704c1fd3b940d09636bdf6b911edb66562b650b40bad5941db3e0cab89c1867ecdeb027dbe8578b50ca389c99e28c7a4cede3e325e9a98386862e2d02c2d1f5f41bbc1b46162f0f45bf30168ed301d07343123b465626651b67b74603b6d9918ad49dbcfb37e4c1f6b97695d12d9370d9a25a9d093116db66562b653b40b2d5b41db3e0cab89d1ce90e13d58c5b9454d318c26267fe685269b2af48c897bb8431313074d4c1c9acdfdf754d06e306d98982f18dd07006b4db76c20be5068624668cbc48c51b61b6a8cdb32314b2adbddcbb3fee594f543559cc112ca9611f16af7eeb46562f653b40b2d5841db3e0cab89b9d2e85e97e3da083682613431ffc895c3b2bfbf0794cdebd888786962e2a08989e39f8a766fa8a0dd60da3031d3197d46171819e462efa72759343123b465629655b6fbcdc076da3231eb28dbf5cddbae9d1dc5e6bf8f44f64d03ced5d02e29fb1f659b6d9998cb14ede270d0692a68db87613431931b7d1adeaa0eb56c8a6134314f17ca6ad3f8bf6df40f136862e2a089d133abd11d307d7e64bb2ada3031001f38cd8720134e6a5fada1585dd0c48cd09689d14ef96f11d84e5b2626f4072dd33a9ef59faaacfffac87ec570678fb87ae960657b6d981818915715edde1dd96e08c368627010a9e6bdf7580bb1c6328c26e6f592f2da99b72b95f1d2c4c44113a36747459b50c81edcca68cbc46807d8455d61c2cfc2a81a9a9811da3231572bdb0ddd37d09689b945d9aeef53c09b94f5ff20b25f318ceb12934bda1faa364c8c6600099d1ad96e08c36862309ba7795dae6823d84886d1c4409317cae3bbf4edc03a32690edaa58989832646071e9c8d57b409b532cbdc9689c13ad3878cee4615852566978a966828f622343123b461629631baf34d305d3a5d605b6d9898d5956de209be6f1ad7c7946df82e57ab837d7bc4d54bb72adb6bdac4e0f3ab1d34851ee21ac3309a18ed7bafc954e455a13131ef88cea841ab46f423d4c4cc5c52c7f18a7b01dd672634452e6862e2d09898874d3defdb5922fad1a489c178e1278af6a007946d46d3968901dac15937c1cc206bd1d20df601d0c48cd0b48941daeddb956ddea568af691383c319ef53b6f97bcf36b0bf4c3b586eea2c9232b4efefc795ed35656230d8c1f7c33b8af6a0fb359d8b60184dcc5946f7da6cd246b091686703eb50cc7295501353960004dfc7cf2963df27305e9a98383426a62e8d8de8475326663ea35fd1027d5dd3b92a68d3c400cdc1973ec2b47d533333343123346962a612fd56d91e74bca2cd264d0cd2736ad21c66f23d0367b68836629e30c5b2488fb87a09e6409318a46e133356b4b7e84165bf326dafe85b0cc36862ae33bad7e6936d041bc9b09a984f75a9e72bcad8ff63c2be2f6962e2a089718399975544271b7da21ce805d14c117d8ca26d13838e3f6aea79e36066e667a6fe1f0e9a98119a323138c84f9302302fcd391a4d99980d8d9d3188e9df273cdbd29a0168cac07e55c97c3de272a96ca9880b8d894106abed0bdac958b372a0e8fba2ab448f44f425afdb4cf3991b87d1c468934accda46b0910cab8959a64b3d931add7b1e3a2d205e9a983886d9c4fcca4cf8bbb3abb1b325486c83c9839b452f56d4bf5d22fa174ddb260660da160780d5f506c2de074cff6b062e3ed0c48c509789c1ac0b9609622dfaddca36f2ba4fd9bfba4c0c36d36169167eb8eeada07f7f0ae8d332ca36de0e68a30e6632fafb338fa23d8d896952f81eea36f0aa93613431dad9b236d291c732ac2666c51e75ada68c1f6311df15223431710cb389695230439346f42f9a7e303100b32538e1b6ce9bfdbc68eb1a62a78919416b62b07fe38a9c9096124b36fe6cec663b4dcef25efab2b27fda2fefdf94f40f7dbec3d899484d62825eda20a04f2b2adb4802daa883c98cfefe2ca068afdf4dcc568a3e55c1309a189c2312dae7775a89349e6135316b38eabb5cd907dfb4f40705d64b13331a9a98fa85b1cb6c117dab847e31316021d13da6fe1b8f7d14b1296ff3d0c48ca035314d0aefb1d04c3119da2fef26857d34214b8ad650b6f358401b75f186d1c5de6dbd7b2ffad9c41ca8e84f550ca389d10c2cda36fd5a86d5c4ace7a80f2b4834bffdd0a61ef17e33b04e9a98d1d0c4d42b24b85834a25f95d14f260660bafd0463f7b3d4f90260d667a58a62a68919a1df4d0c663c3e1bd1bf7e373158e2a5d95fa469eb91c076ea40fb05bfb8a2ad7e3431783fefaee84b950ca38979d784f7f9a956228d67584dcc173deafc9eb21fe38d5d22dd8bbd02eba489190d4d4c7dc26fbfef1974b5d36f2626632d53ef3e1908d3fbbb56102b4dcc08fd6e62f68de81be87713b3b3a24f2b29db7a5ed15695601daef66187e60bb8df4c0c32c26ca8e847d50ca389d10c2c5e6a25d27886d5c4f82ccfc43963da65f0df76d41d9a058d2666343431f508cbfce78ce84fe5f4ab89013803647f63a7e1eb7c51be1219274dcc08fd6c62ce8ae857463f9b98e3947dd26eec7f53d95e554c6ff4f76a5e457bfd646290d16c0e451fea60184d0c0c64689fdf6b25d27886d5c4f8ee9bdc41d9170c4e7b251809fdada189190d4d4cb5c2d26d9c75d474f64b27fd6c623266141d65ea7b31b124c3678d6a37686246e8571373aaa9e6c3d7af26e6bb117d5a34a25deddea22a98bb475c2e6952ddf68389c17ea7b514b1d7c9309a18ed2a81a9db0836129a98dee077459b72fbc21ef56e1158174dcc686862aa111e56fed0d8dfdbbe64104c4c069e3ce266c61ccad34daf883ea68c8b2666847e3331d82312f3c357a4df4ccceb694c31cc1ed17e933f4a4516ea11572fe1a185c67cb56d62ae51c4dc04c36862b469d0676f23d848342606dfbb07d6a09814e2759918b07260dd99b01c76852e756e1c58174dcc68342606497fea78dfce18d18fb64dcc6611b137c22099980c6416fb81a9deccfc46190f4dcc08fd64626e112d15d19732fac9c42045f3c215f4094f12df51c6d0667692d5bac4e4d233caf6da3631d01794b1d7c9309a986bcde07d5eb4684ccc2bad44da9b3a4d0cb838b0fe4c3846a06c95c07a81f5d0c48c4663622e6e303e5fda36310f197b8e5ddf32882626039b8b30b0d0a6592dd33a8a38686246e8071383a729d89459c7dacd7e3031f8d1dbb8e27e3dae8c65f38ae30861cf1e71f5d29dcaf6fac1c4fccbd8433efb896134311718ddebd7f74f354ba089f1032b39b46391ed4bea5b25b00e9a98d1d0c454a71fd4decb0806d9c4646066063f8a55a465fea5a27d8d89f986a29d50d657c4058d8968b32d13f3a2e81c63d305d7495b26061b89cf3076d9421dfc5119d7776a8ac787d37bc4d54b5728dbd398180c6acee8a17f2bea3c5f197f5d0ca38941120dcd7beff016628d8526c69f2303dbc884d9e1e90b7585265ca18919cd309b98bb4cf7df1ccd21ad185baf527747b54c0c2626e3d3463f18cb840c32a1e9e33426e670550fc3d84a11173426a2cd264c0cf634204ff9ff8a0e35364570531bcc9b3031780f620af757a26f899633f674fa3a394319abc6f457c5cd3de2eaa5a395ed694cccb38e3ab753f6a11f522b670ca389d9c9e85eb7cbdb0836129a187fa63576b654f3de38b65057e89e3f9a98d10cb389e9f570112b546e52d48931d7b495f6ac2226261303707604062931b3329dc0363553c8272afb17c2ae8ab8206d8203a0353118ac6f5fd076a2ad459b18bb170083f931c61e88da16da2f6f2c1fdcde4cd8bf2f19db3fac7f5e56349f68ca467a321a1c98a8e9d7e32dc40a605a5ff28cb1289ff31fcaa8c3c4801b14f53e6dda4daa9067184d0c36636bde7b0fb5116c243431616c13d84e262443c89f5f356f60799a98d1d0c474077bf334fb604fa9ae5bd531b199988ced8cdec87c3fb02dcd3936e7a87be6cf018ab8a09923dad49a98d053e6db42fbe53d571bc106b0a2d1f50b5aae8578d789887731659b7599182467785b5177aff4ac4d328c266606a37fff7db2857863a08909034fba6f0b6c2bd395b97a660a2c4b13331a9a98de1cada81763ead5abe956754cac26061c6c741fb4eb02dbd14c1fff51df2d6fce53c405c52ccda2892957bf9b18cc6e6937a5b6b1e9efc7ca58f1c06152659b759918a05d4b5f7582070dc36862c08346f79a1ddc46b011d0c48483073bda87a85972a12902cbd1c48c8626a63738b3ea1145dde345d355d2b38a98984d0c06e39a17e9af81eddca368e35553ffc9a79a0ff11b916dd2c494abdf4d0cf89dd1f50d4b9bb4c640037edcffa38c35e647aa4e133395b14b8d34f5cf12d1a72a185613a34d2c714f1bc1464013a3439bc1ee3e33f2203164c90f4dcc686862dc6833d89e1edfadea98984d0cf8b6097f819e0c6ce34a451bd042fa6e3981cbd6ac79bc3fb25d9a98720d8289d9cfe8fa066dd9609cdb45c4b94344bb759a18b096b24f3f8be853150cab89c1de49edfb70d916e2d54213a3631e630f23d6bc3ff649eb0879584313331a9a183f7eaea81fb38c6bc575ab3a267613137aea2d9404b6a13d3fe25bfa6e39f99232a68b22dba58929d72098984f185ddfa0278c35ce7583bd08cf2a6384a99f35a2edba4d0cf8a9a20d68537db7a219561383bd83da436271106fdd33f1554113a3e790c03633c1bc6086f5c980323431a3a189f10363134d921c24f529a6056f8589ddc4849e7a0bfd23b00d6d2ae307f5dd72a23d51fa80c8766962ca35082606c4a4283fac81f84e8c882f361d741326660e63cf3c0a6de7791367d0621856130390065dfb7edcb6857835d0c4e8c1831ded41c258b2f38f80eb6962464313e38ff6e0e8b3f4ddaa8ea64d0c32038da9b98d3cbb99f017e6c6c036c628dac854c71354a4ffd46e2a5c31b26d9a98720d8a89d9d9e8dfcb6f8a56ad3136a4d97e3722bed84df04d9818a04d8d7e89ae5bd10cb389d9c2e8df8fcf893ede7cc8c1d0c4c411f31e09f91da789190d4d8c3fd8d37abba21d689d92fa1aa56913b397b18715e209d6baa6fe29f55f9b66dec8f729dac97ec8aa7c828a2c530f2863c1d475eceb411353ae413131d318fb9ed4f41142c28ae56b886b0d634d9236ae874dfc81a84d99187c066f51b4056daeea591cc36c62909041bbbc111a6fecd950fd0c4d4c3cb18770fb882666343431612c65ec41dba16d6129f90caa9e55441b26267f03fe29fabab139d1ab0683a9ff9af0174573a2f7e18a7632e10b2ee66c960cfca05e1611c74915c4401353ae4131312066833f84e550556efac37b4af3459ed7f615c4d19489014b18ddacd30ba2d9956d6a196613030e3471ef4dfc062e50637c78caba92b14b31350fa96862e2f9b4893b80db473431a3a1890947bb5cbb89730fbbd2b689c9f496e82a63b3075531a0c7a058bb165573781f9605680c5326ac7d5d46d16ebefd9b22dac717ece211ed67d0c4946b904cccb4266e3626137e54e78888638ce88a0ae2c02031761606346962c0718af6a0cb23dad430ec266646a3db189b1766190f37f6415415602f069679605fc533b9766862fc55a58901e705b6aff9be6d0a9a98e668d2c4e0fc972714ed41eb29db8ca65f4c4c5e7802898de94833084311f2c58ed3904f33fad4867801b54baa2e55b699d7d5c62eb39bc6a33d0cccb087e57c13b757e08334f62aa08929d7209918a04d5651140677678ad6377e9f637c896e221a67f49fe1a2d6d4dd820968dac4c04c3ea66813da2aa2dd5086ddc400fc5655f15e7dd4d8c330170b6c1f99ac30fb89c1cbcda2b7bbd4df9489c1c06b6c8dd2f4a36d1333a7b1cb6dab789f94892666341a138307e9636bd29cca7e3469628026a32f8443dfeb5851e5a41f4d4c51486379b7b1a7741f61ec0fc6d6a20d8d5d2682b3604e155d67e2a76c639654610988664d61b73edf6aec8ffd09691ff7171d636c46886b4cfc129b4c55cdc2009a98720d9a8901f842afe2fd9509a6e40fc6e6a53fd9d814e318b0fdc858138d65956f55dc6695d3dc4d9b18b081a24d0869e2b53f9aa1d0c4183399d10d9a7a09073523e53d9678e0bb7f7bd18ea26f888e149d616c129ae703ea6ccac4d42d9f877c45da3631e0a0c018424413339aaa3f8fb1ba51d98fa64d0cd09e7d382eb25d158360629a12a6f463b3c568cf8c69532744f6390f4d4cb906d1c420663c5d69fbfda9159668ce58e1fd68c3c480cb15ed42bfaaa06d1f68622c580e5cb509af5a3431feaac3c420f1cea38171f88a26663434317a3ea66c17da28b2ed60686246747005fdc3729890dcee6deb6fc67eb156054d4cb906d1c4006c487dc3b4ff3e0d1596b12d54f1bd68cbc4e0e4ef57146d43db57d0be0b9a98117631edbff77b8926c65f759818b069601cbea289190d4d4c1cdf54b40be1376f960adaf78626c60ac663ca8afa88f5cc8330f04316a94f55d4e70c9a98720daa89015823ab3d99bc0d6146b5caec68196d9918f05545db10cc5cdd297c69624683655e6d7f06ba8926c65f7599187063602c3ea289190d4d4c1cd873adf96e871a3db38c26c60ee663328395814c0ddd3657f683ea3acf8326a65c836c62c0a018197ce1af51d33d68d3c460cfc55d8af6212449a9f33c2e9a98d120a5f138d3fe67a14c3431feaad3c4e04c8e986ca665a289190d4d4c3c48aca57d9f6e59510c4e86ddc4c0c07ca6a6be62536e3fcec8a0cfabd6d4679a98720dba89019f17fdc7b4fffeeda6a78dcdd657176d9a1880ef29ed0fca1e15c6518426664260649095afedcf44513431feaad3c480b302e371892666343431d5709aa27d08c9651a19f70cb389c180ac2e039381199e27fba0af99f0c1aef360359a98724d0c26068c11dd6eda7f1f1785d986ba0f796cdbc48093153140f8215cb0e258326862bab3abe9af19799a187fd56d62f07df572604cbd4413331a9a986a40729cfc595321fadf0ae3e8cab09a18dcdc796bee6bc66cc6a6956db3bf3847e607a6bac3d4ba411353ae89c5c4802944fb19fd66f32a85a73dbb1bfbe4bb6efac1c4cc207a4a11078414d675dc279a98dee041d61da6fdcf0a4413e3afba4d0cd83730a65ea289190d4d4c756ca98821d38e15c732014d9b98e9457b8aee33edbc915e107da9e63e760303fc36fa8d54ab55676aea064d4cb926261393813e9d6dda492b8b336770be4c935950fac1c480cd147164daaf86786862dcc03c62491f963c36fd59c9748b32769a98fa4032a18702e3ea269a98d1d0c454cb358a3820cc367eac86783ea46913936775636728aa9c52ed266c8a85796ae544d11cf831c369da37997afb8ba7e4a78b966ea65b1f421353ae89d1c4646059c4e1a2274cfd9fe3878d3df8afc91fc38c7e3131e06a452c100c67d519096962fc413afbaf98e61e663d60ecd10131e79fd1c4d48bf637b3289a98d1d0c4540bb621bca98805fabda931b94c9b262603a9dc56121d61ecd3a22ad610a38e3b8d1d782cd95c5782f884e840d10da69acc4fe38d3da11c2669ba06fb918726a65c13b389c9c097d46745c71afbd9abe23d8d41f7adc67e37b4fd39ee271333bfb1b3519a7b8ad766f20a63a189d1013379b8e83653ddbe19fc069c2fdac9d8df972aa089a99f6b03632b134dcc686862aae7db8a5832ed55534c7d61628a209d2836a122bb170edc4196974b45bf15fdc9d8031af144f61e636734b05cea026337bd627dfcb2a6da031c9b007b55b0767a3b637f34f04304f78a19243cb57bc4d8a76a585b7d83b17d3e45b48fb1e99cc7341f32213dc16710291a77161d65ec67f47a631303e033fc50aabfa5ff86f7fb38630d0bd6d122e9c6144d074d480be0b3b282b189008e317685027edb6038ef37f6fbff5e630dcf75a22b44e78a0e116d9d96ad3bb1052184f41dfd686208218410420821a42b343184104208218490818226861042082184103250d0c410420821841042060a9a18420821841042c84041134308218410124132ef82538896146d233a4c748ee80ad16f44bf165d2c3a5eb49b686dd1c751a6edb8071db9877388e67368e6b6e32c43e29a5434b747fc33b41d6bbf42134308218410a2400698b389be25ba57f4bee8034fbd217a40f4ddb6fb30c8c8fdbb4af4aa437d798f25ae29457ff5887f87b663ed57686208218410420249675d9e08302e657a4c54e501b44385dcbb9f79dce3afb71d673724b63b3ce2dfb0ed38fb159a18420821849000d2d99718f392e9595193a7d94f54c8bdfba1c73ddebced38bb91d8a586aef8976d3bce7e85268610420821c41319547eb1220303bd251adb769f0615b9774779dce3b5da8eb31b12dbcf1db1bf2bfa44db71f62b343184104208211ec88072e1c4ee7fa9cac4402bb4ddaf4145eedd411ef777f9b6e3ec86c436ce11fb2ba279db8eb35fa1892184104208f14006945f571a95ffa64fd5cbfeb669dbfd1a54e4de7dc3e3be2fde401c9388a6124d2bfa4840b9b31cf13f279aa54bd9c94453a3edea7a3258d0c41042082184782003c63303cdcb2f12bbfc6c09d122a2cf8ab6129d20ba55f49e68bf421b48bbbba5688b2ec2dfd6ed112352f77ea1471d5ba69aa5506e214799790ad7af2c3a4474616297452ddc23a69945ab8af6149d9cd8ac62b788ee12dd2dba4df45bd119a27d45eb8966f5783df671dcffb7450bf628bfaae35e6f2d5aaaa41c0ccb3aa22345572736cbd8c3894dd4f050da27ec773946b4b968be2eed9fe688ff49d1f4b9ebc726364df725899d117c54744f7a3fb14f6b19d73d2b8961c6f4b5dc5d7492e857a23fe55e9bdb45d788ce161d20da403447683b7540134308218410e281c7a033afa33dea83b959baf06fab7ad47d7f8f3a274d07d4ae3a962b94731982add2eb964c07b5c5bf6f54120bcecf394ff44cc07dcbcf42a0eca77af4754f471daf275d966361c09f5893d3abfc7b25afcfaeb8ff817d79b9cbfd39d951ee91f4ba05d37bf1b2e37acc3c5d295ab4db3d2bb4ff23d1538ad7e6dfa28b449ff669a72e686208218410423c48ec7232dff3609673d758dac6521e75dfe6a8e3368f3a962994d9d671fdc6a2d57a0ca43b2571cce961145cc2be902f77e9a7cbc420d6d94bcae18c169ff4c6bbe5ca4c23ba3ca21f0796c4e132319809d932350d216dbd205ad1f11ec16cd27391afcd9ba25d7bb55327343184104208211ec8806d5dd18b9e033c2ccb093e6d5dca2c96b88dd2cd8e3a6ef0886fa942992d1cd7ff58f47c8fbf6f5712c7a21e7df11166442648359cb84d0c06f313ec29917f3bc2a3cddf14cafc38b20fc797c4e13231af25767645d31e96a2cdd6e33d324fe29ed9f1d5dabdde8f7541134308218410e2810cd63e2aba226070877d054b06b6b1483a68ef55ef758e3a5ce78fc0582c5128b349e44076f7923856ab68900cfdaca47e9789c132b6990a657c9691bd94e4f6d224762f536cfce797c4ef3231b13ab4c77b64a9a41a83095dd3ebfd5817343184104208219ea483e0b702067818106f1f503f36d8bfe3a8f36a471d9738cae3e9fe6285321b470e64bf5912c7e68e32ef040ca4b10f65b242fd7b3bcafc2bc9cd8625760995cf32b25d0bed1c5bc1407fd4cc4e5aef2915d4db4b588e366997f7c8ba8eb2ef06bc368ff77a3fd6054d0c218410424800897b137c9930609dcaa3ee4f26ee99825f3aea38df6380ba68a14cac89f94e491c07e4fe0e337773623376619fc7f2893d7707c90d76143deda81f59bfa62cd4ff354719640b9b3677fdd11efdb8a2a41fbe7b61705faf49fb7898e854d1ef13bbacedc1644213767ae43d77e9d9a430139571ef5c633f7c0fbf6013202023d9f1a2ad9e99678195d2d76671d136e97decd5ce53bdde8f7541134308218410124862333b850e2a6f128d75d4fb89c43dd3f373471daec1316640162994d198186c0cc7d3fe1b453b96c48114c448338db4d23d0f6df43018ff4c263431df7494192f9a26bd76b9a4fb593d99fe231a5312dbcf3defc76ec5b269f9d9139b92b918bfeb9c98bc2e4a5fa30d45977a9681312c3531f2ef7b253635f3b6657d2e5ceb3a54f45fbdcad7054d0c21841042888244b71ce809d1ea3deaf431313f75c475a2a33c667a162a94f962401f90b4606dd1cc8e38bc0e7e94eb6649ecfea15e6d3e209abc50ee40479947129be619d9c8fee2d1af9dbac4e73a5433d30e3efdcdd57bae67bd879794bdd0a31c96d3cdd8a56ddfd7667ad11f6962082184104226226400f71d8591416adaadbbd4e76362c63962faaea33ceaff64a1cc669eb1f75cca1678ef90827907d13f3cda2d333187b84c4c7a9dcf6b34c132b2429c2f78d4816c62fb77330e25f55ee051e74d5dca62b9976bd9615713e311db6c893decf3af1e313ea96923169a1842082184900812bba7e3f54023830c649b97d4e563627eec88c7356887895ab050c69562f983b48f0b28ef1166433e950e8cb157e40fa224e07e959918573f71aafd173c06fbd8f3318f237e9ffb9309878d4e9072baa44e9f656a9fef51de35bb84832c9d2606f735b1a6087d44c6b4eb93dee9b48be2c67e4208218490414406722b267e330a4533b172a11e9f8dfd673a62712d357ab368465273e18af7d2c07b325d6237865f94de1b57eae85013739ca3ccdf136b965c7597ce7694f407fb4842ce6d4196b8597bd4f70b47f909f60115ca5fe9283f418ae95cd98f24d6b4fc24b166cf95118f2686104208216462040356d14f030780f789a6ced5e19362f974471c773aca634665fe4299ed3d622ddd33d22586cfa57dd30e8c7d4ccc0f1d65fef6829f39834a97f795f40b333be303e2fe9be8e35deabada51f6b78e585c59d3909d6c827d4b893df7c6b5078926861042082164989041dd1ea2570306819be4ca62598f2b8bd6793dda9ed7a3ed3213b3b3479ccb7bf61fb352af553848ee6662ce709479543469e29eb180604c66e8d6a742bbd82383cc62beb33298e998604646feed5a47b96b1d71b8faf57cb15df9ff4b8a5eacf8b5a189218410420899184807f2cf790e022fc8955b24712fbbbaa547bb3e66a4ccc4ece128837d3acefd30893d50f2de800130eabd35b13316a126e63cd7e03ab12666d1c4bd440f3a32f035c6792a3ecbd5a00996e225f6dc9c5e65ae77b47f95a3fcbf45b3e5ae9fcca3cdbc60a67138a86bef0d4d0c2184104248bf927439fdbcc7f5be4b99fe9c2b83cdefae27fc3021634bda9b24b1e7b6b8da7bad585efeff571d65f0f47e2e8f3eafefd967a4edc51e9385d3724738ae2f3331173bca3c299a3ebdd6e75c1fdc97d2a55f3dfa0b637070e29e3d83d62d94fdb3e3fa9e7b75e4efbf7694c7b93773e4ae5fd5f3b5b93db169a5174bcbb9524cd3c41042082184f42b3258db37b19bb537127dd4e3fa753c078dd8c03d455a0627d8bfef51e6d492f6f6f36c0f83f53185b2fb3bcae0a97ed74deab97a5c66014ff5d729297782a35c9989b9c25106873dce985e3b773aa877dd9b0b0a6dc0184ee5d1ef1f7bd47d49a1cc3d8eebbbceb8a5e5af71947f39c919cfc49dcd0df77803f4b9d0ce618e7234318410420821fd8a0cd6be961bb8217d2d3656ef2d5a453456341306cda205127b12faa39ea6e27ed164691bcb789681d139381d9c4387277ee6a79b89719db98273527c4c4caf7d1a48a93c679772277b0cb08b26c6351381e57c33e7ae3fc0e3de6016ec73b9323031672676d667abc4ee599aa610c798c4bdc91ec2e19b53a665264b5ff75ed7dfe1b8d7bff7789de7c95d3fce716de97241f9f7231dedd0c41042082184f42b899d8179a9cb40ee8dc43ef987b9719df352d455b9367c9693e5f56212be51bb6c4fcc518e32a39626f5b84797f4a803f76ebe2ee54e77b45f6662ae739481699a3577fd34693daefb735bbeadc46ee2cffe86cc71e313bb14eca6c41e06e99bc4014670e6b44ea4387ec871fd3d8e7b7da3a33c52697f2c777daf440878ff2edca59da31dedd0c41042082184f42b894d4d3b3ed030f868db5c1b7324dd8d52552a3331aee55caf245d0c48a19ec31cf560f6014bd7b614ed24da332d779647b9c90a6db936a923e6390a65bee8798f76ca9539a8a2fb8e99b96c2666dac41eb2d9eb7a9cadd3751f56624d54aff24866303677fdd71cd73f92f615af0d0e70c55e18244638c6518e268610420821a45f49ecb2a1db2b1ad0e607aad3e6dac0f2a55b2b6ea3283c75ff78a16fa739ca6076e9131ef768b9c058ae49cbf55aea04dd571cd027ee8df1a39653e5caf964144366b399d2ebb7aae8be5f9c8b01cb0e9f725cffe1f2b32ef7fa4f8ef298355a20773db2b4851c387a5b5ace65701f73bd2fea80268610420821c483c42e47eab55c2a545886b462493b7b47d4f986c7e076024392b84d04b494c73dc25e0fd732afbc0e4acbb90e091d6562126bf65c1be3b19c6afe921857f01ccc1f9d5ebf4a05af3566453e9d8b61b6c42e2feb5506466ada62fcb93a6e7394471f172a94716574cbeb7b6919d77ea5f1aef7451dd0c41042082184782203b6932a18d042584ab45a9736609634b3311814af2bfab2e33aa4035ea4d0e6651ef57fae2cde92f8174c07e03e31af9e96710daeb19c2c6f6226173de8d1cf85bac478be476c3084f3a7f24d9a50262c0fdcacd03e9231bce228f76176b52e7db8d3511e317faa50661e8ffb9669c3b48ceb50d1c77cde175543134308218410e249620f937c396240fbace8c4a44b96ae5c3bd81be34a219c09333ae726e9d2a1c46ff9d35285f67c664ffe27e03ec1c8b8520063a664d6f47a575fb1093e6f62a64a07f941fdcc951f93f8ed3d42d6b1e945cf2b5e6ba4a5c60cd7a225ed239b9dcb1821bed9cae24febf8bba6fff26ff38a7ee951766c7afd798eeb9ef27d5f54094d0c218410428827895d2e85a7e8cb8a3615ed23fa5e3ad0c3a01de7a03c9cd899166ce4be37fd771897cd7b0d4abbb4b74662f724dc90d827e8e313bb5702ed5c94d8a567c5fd2db38ad67468864299653cca38b39395c48f723f48ec1237c4fd647a6f30003f3977dd128eb6972f791d560eed67a18e253dcae3fe4f817b9cd83354f07a1f2ffa89e8eac46eaec7ac190eeffc4d624dcb61a28d7bdd2ff9dbd469ddbddac632b65e7b623eeb11fff43dca7f2eedcb4de97b16afcde3e97bf6ec6424edf7228e3656ead6469dd0c41042082184544862d3e7624918660b267197f0ae77f274f0eb3c7cb11f49ef0b6635a6adf2be907806f1b5a189218410420821840c14343184104208218490818226861042082184103250d0c410420821841042060a9a184208218410d295ce2e5f9b5c34ad681ad1646dc7e342629c2a8d77f28aeacbfaff912aea6b13e9c314695fd4c921a4ec94691d5d33a735014d0c21841042880732685b5bf45bd1ef44d78afe20fa93e816d1f5a29f8a7611754d6bdba5de6fa4f541ab2863fb525a3e8b6d314d3db9fae6161d90d6f54fd1b3a9f0df378a4e84a9f1ac6bf5426c2b76b9eeb4f49a6315f12e253a5e74abe849d17369ac5789be8241b7a2cec5441788fe217a46f42fd15da2bd3cca2e9fbe27ae4b95f53fbb07d9bfe39a251d754d99c681b2978abaa68dee527e2ed1be69bb0fa7af23eed15f45a788bcb291c9756b8aae143d92d6f1b8e836d11742e2a90a9a1842082184100f64b0b6ade8030ffd5d34c101873dea3d3357d6fb40c95cf98fa403f67c0cc785d693ab6f33d1d385fade12bd52f8b7053cebdbb250ee2f9d92590df9b77bd3bf5f1710eb24a263446fe7eaffafe88d9236170fa87761d10bb9f2ef8bde4cfffb068ff29b7abe57a0551d754d2a7a22bdf645d18c01fdd8a2e4b57c3f15fefbb58e87194d0dcc7bb93adec9ddf3935de5eb80268610420821c4838e9ded782b1db85d8c27e818188b9616ad2fba2437c8bbbfe3392323d79d902bb7a622ae6dd2b22fa74fc6f1dfe345532beada2835011fa483d653452b75ecd3fc5945f3a703daa3f0df9e757eb164e0be7fc97577a57fbb3420de130bf71c83f631a239449f49e3cffe8e9994b19ef51e9b2b77ae68c15c9db847933acacf9edea795452b88be9fabefe08e9da9c17d5d433493473c99c17bccc774a465d6cb9915e89c8e9d151b9bdea3e5d3f7ce741e755dd5193188878ae6ebd8d9ba55446bf9c45335343184104208211ec8606dabcec8d3f8e3bb5cf3d3dca07137cf7af303e6a0e56472fd64b9c1ffc5e98039ab6ba3c0baa6efd825421fa44fd9370d29dfa3de4dd23a71effe9dfef7aba2850ad7fd25fddb859ef52e97ebeb83a239bb5cb75feeba8b3deb3e2b57e6d33e651cf5ed92ab2f78f955cec4603998732f4ac7ee5f7a28d7e6aebac83facefe6b49e377c4c5713d0c4104208218478903ee5cf96297dbfcb354b744696ddfcd2b3dee37283cdd2fd223dcafe4faeec6ae9bffd23a4fd5c5d5be7ea3a33a4aca3de4e5ae77f443b75ec52a4ff5f36d6c9edc790ffbe27fdf7f33ceb3d2517ef563daec372acfb3a23cba7e6f2a87b935cddd7c60edca5fc5eb9fa365094cf4c0c8cc9141ed7af9f6bef6a5dd4a3ea3b3057df191dc74c5413d0c4104208218478d0b17b3b3213734c976b66ecd84dcfffbf0fc3b3defc72b2e502e2c1e03c5b3ef6bbdcbfef9bfedbeb1dcf255f69b9b37371ac59f81b969361e9d19752c1f078cd1a75ec0c5636133373c76ec01f355bd5b17b5bb281fad99ef5de9a5eff926876c7b527e7dafc9c67fd3fcc95b95bf4499f725deaca9b98989918cc383933c4c93547fa18bc80f691f1edea5c9dbf12cd125b6f0c343184104208211ea403f76c33f3515daec1329e6c49d6bd9ef59e941b1c7e36209e0d72e56e4ccd10f688fc3cf7ef0705d4f79bcec852b2050b7fdb305767a64b3cebfd72676429d2dce93d7a38fd372c2f9b27bdeefef4df4ef7a873d2dcc0deb9ff47febe7f2eeecffbc49d96fb4eae1c327aade45bb650cf3e9af6d3b293e4ee0d66d99cb32072cd8f72edadac89b9a4cea94517e6eabda3136092ab86268610420821c4838ecd4ef66e3a803ba2cb3598b1c8b278ddec596f7ec0196262fe58622c8a42a634e7f2a3b4becbd232e8e3c285bf215b17b280617622db17e4341b69d91d3a23334363d27fcb1bb04bd27f7b20fdff3ff2acf78e9c11faa8e3dafc6c97d74c4cae2cf6b3644be0f0da06a7c19632dfccb5bf7660d9493b234b04718f9c2991e59aa373ed559a0259eafb5eaeee87db3232343184104208211ec8606dc7ce48e6ae43ba5cb3796e8077aa67bd67849a988ecd3295954132816c89d7d6e97fff22f777af8c671d9b752a2bb359976bf034fec5f49a933cebdd39bd1e9bf9e7cbfdfb39b9f6b0e4ecaec07a7f922bbfbee3dabb73466a1e9ffa0be5374ae3cf9674059d3bd3b167ee04bd1eb9b2382726dba4ef3b13b355aebd1f86b4e71913ce36caf67e5d5575fd3ed0c41042082184782083b5dd3a23296bf72df9fb5cb927e61ff83eb1efd814bea126e6779d91255a634afebe78ce70fdccb3cea572657090e70433381dbba7251bcc7b1d4a99deb7321383ba1e4dff86f4c7cfa4ffed75c68d5cb76eeebec100951e0229ffbe6bee3af526f7cee8a554cb0696fd76aeecea8165611cc7e70c94cf9e18a4c34ed23248bdfd9990363de3caf6632555d7ed034d0c2184104288079dd14b82b03c6921d1a21d7bdec79e9dd1296dbd326ca5f55e942bb782c7f5abe6ae2f35281dbb8fe24f39f3e035fb20d78dcbd50da384191fa45e9e22fd5f9c7d929d9573b4679dfb744a4c4cfab7fcb2b24cbee6689282b1b8b363b38acd91c68ad707e7d9644b0091996c298f7a31f3f1d5b4ef1f4d4d04ce04ca96bb61066241573d853af37b6b7a1e6e59527686d4e4a12c0e359ddcb3dc1eb9369f4fdfa36344d3a6752e9adeaf9eb34af2f7d93a363bd9b2e97d45f9b5d23a51f71321fda90a9a1842082184100f3aa3f702f4d2799d8083263ba3b33eb94e6f8799b825777dd78de6f2b7bd73d71dea19cb741d7bde4cbe3f18ac3e9c1bb4662a3d2ba7a4ce43d2eb31cb53366b745ea1de137dea4dcb226bd6f985f2af95c4fa9468dd807aef4ccbbd94331099c6f9d693ab2fbfef29744f0c4c4436fb85589ce7c4e4ca22a1c11bb9b6b1b7e7e9cec8793d98a5e97978666a5ab284162fa4e5f3f7e3c090fe54054d0c2184104288071d3ba380b4be98e1c0529a3fa7c2ffc789e6c80cb686a2de13526382ba97765cbb587a1daec7ac49d74dde1d7baafa4d697cd87fe27db647c7ce9060cfc95fd381ebebe9807e7cdae74b45eb79d6b56b1aeff59d9203293b76e6e4da344e5cb7a76f9cb93ad64de3452283241df463c08fac6d078be60eac0f4be070c0e393695db80777a5754da5886fffdc6bec9d463b2d3b4bc7ce8aa1fc652126262d8fa5853f4c8dd9f3a9c98389c1d247aff380e4baefa6affbb369792cfd4362899d4362a9129a18420821841042c840411343082184104208192868620821841042082103054d0c21841042082164a0a089218410420821840c14343184104208218490818226861042082184103250d0c410420821841042060a9a18420821841042c840411343082184104208192868620821841042082103054d0c21841042082164a0a089218410420821840c14343184104208218490818226861042082184103250d0c410420821841042060a9a18420821841042c840411343082184104208192868620821841042082103054d0c21841042082164a0289a98f76064288aa2288aa2288aa2fa58ef7f903331841042082184103208bcf57f65316bac3e0ce0820000000049454e44ae426082);
  619.  
  620. -- --------------------------------------------------------
  621.  
  622. --
  623. -- Table structure for table `ost_filter`
  624. --
  625.  
  626. CREATE TABLE `ost_filter` (
  627.   `id` int(11) UNSIGNED NOT NULL,
  628.   `execorder` int(10) UNSIGNED NOT NULL DEFAULT '99',
  629.   `isactive` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  630.   `flags` int(10) UNSIGNED DEFAULT '0',
  631.   `status` int(11) UNSIGNED NOT NULL DEFAULT '0',
  632.   `match_all_rules` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  633.   `stop_onmatch` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  634.   `target` enum('Any','Web','Email','API') NOT NULL DEFAULT 'Any',
  635.   `email_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  636.   `name` varchar(32) NOT NULL DEFAULT '',
  637.   `notes` text,
  638.   `created` datetime NOT NULL,
  639.   `updated` datetime NOT NULL
  640. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  641.  
  642. --
  643. -- Dumping data for table `ost_filter`
  644. --
  645.  
  646. INSERT INTO `ost_filter` (`id`, `execorder`, `isactive`, `flags`, `status`, `match_all_rules`, `stop_onmatch`, `target`, `email_id`, `name`, `notes`, `created`, `updated`) VALUES
  647. (1, 99, 1, 0, 0, 0, 0, 'Email', 0, 'SYSTEM BAN LIST', 'Internal list for email banning. Do not remove', '2019-09-24 00:46:21', '2019-09-24 00:46:21');
  648.  
  649. -- --------------------------------------------------------
  650.  
  651. --
  652. -- Table structure for table `ost_filter_action`
  653. --
  654.  
  655. CREATE TABLE `ost_filter_action` (
  656.   `id` int(11) UNSIGNED NOT NULL,
  657.   `filter_id` int(10) UNSIGNED NOT NULL,
  658.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '0',
  659.   `type` varchar(24) NOT NULL,
  660.   `configuration` text,
  661.   `updated` datetime NOT NULL
  662. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  663.  
  664. -- --------------------------------------------------------
  665.  
  666. --
  667. -- Table structure for table `ost_filter_rule`
  668. --
  669.  
  670. CREATE TABLE `ost_filter_rule` (
  671.   `id` int(11) UNSIGNED NOT NULL,
  672.   `filter_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  673.   `what` varchar(32) NOT NULL,
  674.   `how` enum('equal','not_equal','contains','dn_contain','starts','ends','match','not_match') NOT NULL,
  675.   `val` varchar(255) NOT NULL,
  676.   `isactive` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  677.   `notes` tinytext NOT NULL,
  678.   `created` datetime NOT NULL,
  679.   `updated` datetime NOT NULL
  680. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  681.  
  682. -- --------------------------------------------------------
  683.  
  684. --
  685. -- Table structure for table `ost_form`
  686. --
  687.  
  688. CREATE TABLE `ost_form` (
  689.   `id` int(11) UNSIGNED NOT NULL,
  690.   `pid` int(10) UNSIGNED DEFAULT NULL,
  691.   `type` varchar(8) NOT NULL DEFAULT 'G',
  692.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '1',
  693.   `title` varchar(255) NOT NULL,
  694.   `instructions` varchar(512) DEFAULT NULL,
  695.   `name` varchar(64) NOT NULL DEFAULT '',
  696.   `notes` text,
  697.   `created` datetime NOT NULL,
  698.   `updated` datetime NOT NULL
  699. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  700.  
  701. --
  702. -- Dumping data for table `ost_form`
  703. --
  704.  
  705. INSERT INTO `ost_form` (`id`, `pid`, `type`, `flags`, `title`, `instructions`, `name`, `notes`, `created`, `updated`) VALUES
  706. (1, NULL, 'U', 1, 'Contact Information', NULL, '', NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  707. (2, NULL, 'T', 1, 'Ticket Details', 'Please Describe Your Issue', '', 'This form will be attached to every ticket, regardless of its source. You can add any fields to this form and they will be available to all tickets, and will be searchable with advanced search and filterable.', '2019-09-24 00:46:21', '2019-10-17 03:25:59'),
  708. (3, NULL, 'C', 1, 'Company Information', 'Details available in email templates', '', NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  709. (4, NULL, 'O', 1, 'Organization Information', 'Details on user organization', '', NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  710. (5, NULL, 'A', 1, 'Task Details', 'Please Describe The Issue', '', 'This form is used to create a task.', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  711. (6, NULL, 'L1', 1, 'Ticket Status Properties', 'Properties that can be set on a ticket status.', '', NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  712. (7, NULL, 'G', 1, 'open form', NULL, '', NULL, '2019-10-22 13:37:59', '2019-10-22 13:37:59');
  713.  
  714. -- --------------------------------------------------------
  715.  
  716. --
  717. -- Table structure for table `ost_form_entry`
  718. --
  719.  
  720. CREATE TABLE `ost_form_entry` (
  721.   `id` int(11) UNSIGNED NOT NULL,
  722.   `form_id` int(11) UNSIGNED NOT NULL,
  723.   `object_id` int(11) UNSIGNED DEFAULT NULL,
  724.   `object_type` char(1) NOT NULL DEFAULT 'T',
  725.   `sort` int(11) UNSIGNED NOT NULL DEFAULT '1',
  726.   `extra` text,
  727.   `created` datetime NOT NULL,
  728.   `updated` datetime NOT NULL
  729. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  730.  
  731. --
  732. -- Dumping data for table `ost_form_entry`
  733. --
  734.  
  735. INSERT INTO `ost_form_entry` (`id`, `form_id`, `object_id`, `object_type`, `sort`, `extra`, `created`, `updated`) VALUES
  736. (8, 4, 2, 'O', 1, NULL, '2019-09-25 07:37:40', '2019-09-25 07:37:40'),
  737. (2, 3, NULL, 'C', 1, NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24'),
  738. (11, 1, 6, 'U', 1, NULL, '2019-09-25 07:40:34', '2019-09-25 07:40:34'),
  739. (9, 1, 4, 'U', 1, NULL, '2019-09-25 07:39:40', '2019-09-25 07:39:40'),
  740. (13, 2, 4, 'T', 0, '{\"disable\":[]}', '2019-10-11 16:18:16', '2019-10-11 16:18:16'),
  741. (12, 2, 3, 'T', 0, '{\"disable\":[]}', '2019-09-25 08:46:20', '2019-09-25 08:46:20'),
  742. (14, 1, 7, 'U', 1, NULL, '2019-10-14 01:15:08', '2019-10-14 01:15:08'),
  743. (15, 2, 5, 'T', 0, '{\"disable\":[]}', '2019-10-14 01:15:08', '2019-10-14 01:15:08'),
  744. (16, 1, 8, 'U', 1, NULL, '2019-10-16 04:50:14', '2019-10-16 04:50:14'),
  745. (17, 2, 6, 'T', 0, '{\"disable\":[]}', '2019-10-16 04:50:14', '2019-10-16 04:50:14'),
  746. (18, 2, 7, 'T', 0, '{\"disable\":[]}', '2019-10-16 05:29:11', '2019-10-16 05:29:11'),
  747. (19, 2, 8, 'T', 0, '{\"disable\":[]}', '2019-10-16 09:41:42', '2019-10-16 09:41:42'),
  748. (20, 1, 9, 'U', 1, NULL, '2019-10-16 22:58:25', '2019-10-16 22:58:25'),
  749. (21, 2, 9, 'T', 0, '{\"disable\":[]}', '2019-10-16 22:58:25', '2019-10-16 22:58:25'),
  750. (22, 2, 10, 'T', 0, '{\"disable\":[]}', '2019-10-17 06:24:49', '2019-10-17 06:24:49'),
  751. (23, 1, 10, 'U', 1, NULL, '2019-10-17 11:14:47', '2019-10-17 11:14:47'),
  752. (24, 2, 11, 'T', 0, '{\"disable\":[]}', '2019-10-17 11:14:47', '2019-10-17 11:14:47'),
  753. (25, 1, 11, 'U', 1, NULL, '2019-10-17 11:16:10', '2019-10-17 11:16:10'),
  754. (26, 2, 12, 'T', 0, '{\"disable\":[]}', '2019-10-17 11:21:28', '2019-10-17 11:21:28'),
  755. (27, 2, 13, 'T', 0, '{\"disable\":[]}', '2019-11-07 00:22:01', '2019-11-07 00:22:01'),
  756. (28, 2, 14, 'T', 0, '{\"disable\":[]}', '2019-11-18 02:44:35', '2019-11-18 02:44:35'),
  757. (29, 2, 15, 'T', 0, '{\"disable\":[]}', '2019-11-18 03:19:01', '2019-11-18 03:19:01'),
  758. (30, 2, 16, 'T', 0, '{\"disable\":[]}', '2020-01-30 15:17:14', '2020-01-30 15:17:14'),
  759. (31, 2, 17, 'T', 0, '{\"disable\":[]}', '2020-03-22 14:39:30', '2020-03-22 14:39:30');
  760.  
  761. -- --------------------------------------------------------
  762.  
  763. --
  764. -- Table structure for table `ost_form_entry_values`
  765. --
  766.  
  767. CREATE TABLE `ost_form_entry_values` (
  768.   `entry_id` int(11) UNSIGNED NOT NULL,
  769.   `field_id` int(11) UNSIGNED NOT NULL,
  770.   `value` text,
  771.   `value_id` int(11) DEFAULT NULL
  772. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  773.  
  774. --
  775. -- Dumping data for table `ost_form_entry_values`
  776. --
  777.  
  778. INSERT INTO `ost_form_entry_values` (`entry_id`, `field_id`, `value`, `value_id`) VALUES
  779. (13, 22, NULL, 1),
  780. (14, 3, NULL, NULL),
  781. (9, 4, NULL, NULL),
  782. (8, 28, 'DG-12/1, Action Area 1D, Premises no. 02-0327 Street no. 327, Newtown, Rajarhat Kolkata-700156, West', NULL),
  783. (8, 29, '03366059700X720', NULL),
  784. (8, 30, 'https://www.surakshanet.com', NULL),
  785. (8, 31, NULL, NULL),
  786. (9, 3, '03366059700X720', NULL),
  787. (2, 23, 'Suraksha Diagnostic Private Limited', NULL),
  788. (2, 24, 'https://www.surakshanet.com', NULL),
  789. (2, 25, '03366059700', NULL),
  790. (2, 26, 'DG-12/1, Action Area 1D, Premises no. 02-0327 Street no. 327, Newtown, Rajarhat Kolkata-700156, West', NULL),
  791. (11, 4, NULL, NULL),
  792. (11, 3, '03366059700', NULL),
  793. (13, 20, 'test', NULL),
  794. (12, 20, 'test', NULL),
  795. (12, 22, 'High', 3),
  796. (14, 4, NULL, NULL),
  797. (15, 20, 'ticket testing', NULL),
  798. (15, 22, NULL, 1),
  799. (16, 3, NULL, NULL),
  800. (16, 4, NULL, NULL),
  801. (17, 20, 'test mail', NULL),
  802. (17, 22, NULL, 2),
  803. (18, 20, 'test', NULL),
  804. (18, 22, NULL, 2),
  805. (19, 20, 'sfghsgsfghsfg', NULL),
  806. (19, 22, NULL, 2),
  807. (20, 3, NULL, NULL),
  808. (20, 4, NULL, NULL),
  809. (21, 20, 'SR2718274', NULL),
  810. (21, 22, NULL, 2),
  811. (22, 20, 'CustomQueue::getHierarchicalQueues($thisstaff)', NULL),
  812. (22, 22, NULL, 2),
  813. (23, 3, '08697807050', NULL),
  814. (23, 4, NULL, NULL),
  815. (24, 20, 'test', NULL),
  816. (24, 22, 'Normal', 2),
  817. (25, 3, NULL, NULL),
  818. (25, 4, NULL, NULL),
  819. (26, 20, 'test', NULL),
  820. (26, 22, 'Normal', 2),
  821. (27, 37, 'tyest', NULL),
  822. (27, 20, 'this is information', NULL),
  823. (27, 22, NULL, 2),
  824. (28, 37, NULL, NULL),
  825. (28, 20, 'sdfgsdfgsdf', NULL),
  826. (28, 22, NULL, 2),
  827. (29, 37, 'fgfgfg', NULL),
  828. (29, 20, 'dvd', NULL),
  829. (29, 22, NULL, 3),
  830. (14, 38, NULL, NULL),
  831. (11, 38, NULL, NULL),
  832. (30, 37, 'fdfgdfgdfgzdf', NULL),
  833. (30, 20, 'zdfgzdfgz', NULL),
  834. (30, 22, NULL, 1),
  835. (31, 37, 'dfdfvdfvdfvdfvd', NULL),
  836. (31, 20, 'dfvdf', NULL),
  837. (31, 22, NULL, 1);
  838.  
  839. -- --------------------------------------------------------
  840.  
  841. --
  842. -- Table structure for table `ost_form_field`
  843. --
  844.  
  845. CREATE TABLE `ost_form_field` (
  846.   `id` int(11) UNSIGNED NOT NULL,
  847.   `form_id` int(11) UNSIGNED NOT NULL,
  848.   `flags` int(10) UNSIGNED DEFAULT '1',
  849.   `type` varchar(255) NOT NULL DEFAULT 'text',
  850.   `label` varchar(255) NOT NULL,
  851.   `name` varchar(64) NOT NULL,
  852.   `configuration` text,
  853.   `sort` int(11) UNSIGNED NOT NULL,
  854.   `hint` varchar(512) DEFAULT NULL,
  855.   `created` datetime NOT NULL,
  856.   `updated` datetime NOT NULL
  857. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  858.  
  859. --
  860. -- Dumping data for table `ost_form_field`
  861. --
  862.  
  863. INSERT INTO `ost_form_field` (`id`, `form_id`, `flags`, `type`, `label`, `name`, `configuration`, `sort`, `hint`, `created`, `updated`) VALUES
  864. (1, 1, 489379, 'text', 'Email Address', 'email', '{\"size\":\"40\",\"length\":\"64\",\"validator\":\"email\",\"regex\":\"\",\"validator-error\":\"\",\"placeholder\":\"\"}', 1, NULL, '2019-09-24 00:46:21', '2019-09-25 05:07:58'),
  865. (2, 1, 489379, 'text', 'Full Name', 'name', '{\"size\":40,\"length\":64}', 2, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  866. (3, 1, 13057, 'phone', 'Phone Number', 'phone', NULL, 3, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  867. (4, 1, 12289, 'memo', 'Internal Notes', 'notes', '{\"rows\":4,\"cols\":40}', 4, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  868. (20, 2, 489249, 'text', 'Issue Summary', 'subject', '{\"size\":40,\"length\":50}', 2, NULL, '2019-09-24 00:46:21', '2019-11-07 00:18:44'),
  869. (21, 2, 480547, 'thread', 'Issue Details', 'message', NULL, 3, 'Details on the reason(s) for opening the ticket.', '2019-09-24 00:46:21', '2019-11-07 00:18:44'),
  870. (22, 2, 274609, 'priority', 'Priority Level', 'priority', NULL, 4, NULL, '2019-09-24 00:46:21', '2019-11-07 00:18:44'),
  871. (23, 3, 291233, 'text', 'Company Name', 'name', '{\"size\":40,\"length\":64}', 1, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  872. (24, 3, 12545, 'text', 'Website', 'website', '{\"size\":40,\"length\":64}', 2, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  873. (25, 3, 12545, 'phone', 'Phone Number', 'phone', '{\"ext\":false}', 3, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  874. (26, 3, 12545, 'memo', 'Address', 'address', '{\"rows\":2,\"cols\":40,\"html\":false,\"length\":100}', 4, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  875. (27, 4, 489379, 'text', 'Name', 'name', '{\"size\":40,\"length\":64}', 1, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  876. (28, 4, 13057, 'memo', 'Address', 'address', '{\"rows\":2,\"cols\":40,\"length\":100,\"html\":false}', 2, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  877. (29, 4, 13057, 'phone', 'Phone', 'phone', NULL, 3, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  878. (30, 4, 13057, 'text', 'Website', 'website', '{\"size\":40,\"length\":0}', 4, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  879. (31, 4, 12289, 'memo', 'Internal Notes', 'notes', '{\"rows\":4,\"cols\":40}', 5, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  880. (32, 5, 290977, 'text', 'Title', 'title', '{\"size\":40,\"length\":50}', 1, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  881. (33, 5, 282867, 'thread', 'Description', 'description', NULL, 2, 'Details on the reason(s) for creating the task.', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  882. (34, 6, 487665, 'state', 'State', 'state', '{\"prompt\":\"State of a ticket\"}', 1, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  883. (35, 6, 471073, 'memo', 'Description', 'description', '{\"rows\":2,\"cols\":40,\"html\":false,\"length\":100}', 3, NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  884. (36, 7, 13057, 'text', 'Printer Problem', '', '{\"size\":\"16\",\"length\":\"30\",\"validator\":\"\",\"regex\":\"\",\"validator-error\":\"\",\"placeholder\":\"YES \\/No\"}', 1, NULL, '2019-10-22 13:37:59', '2019-10-22 13:58:03'),
  885. (37, 2, 13057, 'memo', 'Patient Name', '', NULL, 1, NULL, '2019-11-07 00:17:55', '2019-11-07 00:18:44'),
  886. (38, 1, 13057, 'text', 'Patient Name', '', NULL, 5, NULL, '2019-11-07 00:23:56', '2019-11-07 00:23:56');
  887.  
  888. -- --------------------------------------------------------
  889.  
  890. --
  891. -- Table structure for table `ost_group`
  892. --
  893.  
  894. CREATE TABLE `ost_group` (
  895.   `id` int(10) UNSIGNED NOT NULL,
  896.   `role_id` int(11) UNSIGNED NOT NULL,
  897.   `flags` int(11) UNSIGNED NOT NULL DEFAULT '1',
  898.   `name` varchar(120) NOT NULL DEFAULT '',
  899.   `notes` text,
  900.   `created` datetime NOT NULL,
  901.   `updated` datetime NOT NULL
  902. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  903.  
  904. -- --------------------------------------------------------
  905.  
  906. --
  907. -- Table structure for table `ost_help_topic`
  908. --
  909.  
  910. CREATE TABLE `ost_help_topic` (
  911.   `topic_id` int(11) UNSIGNED NOT NULL,
  912.   `topic_pid` int(10) UNSIGNED NOT NULL DEFAULT '0',
  913.   `ispublic` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  914.   `noautoresp` tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  915.   `flags` int(10) UNSIGNED DEFAULT '0',
  916.   `status_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  917.   `priority_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  918.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  919.   `staff_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  920.   `team_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  921.   `sla_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  922.   `page_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  923.   `sequence_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  924.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '0',
  925.   `topic` varchar(32) NOT NULL DEFAULT '',
  926.   `number_format` varchar(32) DEFAULT NULL,
  927.   `notes` text,
  928.   `created` datetime NOT NULL,
  929.   `updated` datetime NOT NULL
  930. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  931.  
  932. --
  933. -- Dumping data for table `ost_help_topic`
  934. --
  935.  
  936. INSERT INTO `ost_help_topic` (`topic_id`, `topic_pid`, `ispublic`, `noautoresp`, `flags`, `status_id`, `priority_id`, `dept_id`, `staff_id`, `team_id`, `sla_id`, `page_id`, `sequence_id`, `sort`, `topic`, `number_format`, `notes`, `created`, `updated`) VALUES
  937. (1, 0, 1, 0, 2, 0, 2, 0, 0, 0, 0, 0, 0, 1, 'General Inquiry', NULL, 'Questions about products or services', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  938. (2, 0, 1, 0, 2, 0, 1, 0, 0, 0, 0, 0, 0, 0, 'Feedback', NULL, 'Tickets that primarily concern the sales and billing departments', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  939. (10, 0, 1, 0, 2, 0, 2, 3, 0, 0, 0, 0, 0, 0, 'Report a Problem', NULL, 'Product, service, or equipment related issues', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  940. (11, 10, 1, 0, 2, 0, 3, 0, 0, 0, 1, 0, 0, 1, 'Access Issue', NULL, 'Report an inability access a physical or virtual asset', '2019-09-24 00:46:21', '2019-09-24 00:46:21');
  941.  
  942. -- --------------------------------------------------------
  943.  
  944. --
  945. -- Table structure for table `ost_help_topic_form`
  946. --
  947.  
  948. CREATE TABLE `ost_help_topic_form` (
  949.   `id` int(11) UNSIGNED NOT NULL,
  950.   `topic_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  951.   `form_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  952.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '1',
  953.   `extra` text
  954. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  955.  
  956. --
  957. -- Dumping data for table `ost_help_topic_form`
  958. --
  959.  
  960. INSERT INTO `ost_help_topic_form` (`id`, `topic_id`, `form_id`, `sort`, `extra`) VALUES
  961. (1, 1, 2, 1, '{\"disable\":[]}'),
  962. (2, 2, 2, 1, '{\"disable\":[]}'),
  963. (3, 10, 2, 1, '{\"disable\":[]}'),
  964. (4, 11, 2, 1, '{\"disable\":[]}');
  965.  
  966. -- --------------------------------------------------------
  967.  
  968. --
  969. -- Table structure for table `ost_list`
  970. --
  971.  
  972. CREATE TABLE `ost_list` (
  973.   `id` int(11) UNSIGNED NOT NULL,
  974.   `name` varchar(255) NOT NULL,
  975.   `name_plural` varchar(255) DEFAULT NULL,
  976.   `sort_mode` enum('Alpha','-Alpha','SortCol') NOT NULL DEFAULT 'Alpha',
  977.   `masks` int(11) UNSIGNED NOT NULL DEFAULT '0',
  978.   `type` varchar(16) DEFAULT NULL,
  979.   `configuration` text NOT NULL,
  980.   `notes` text,
  981.   `created` datetime NOT NULL,
  982.   `updated` datetime NOT NULL
  983. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  984.  
  985. --
  986. -- Dumping data for table `ost_list`
  987. --
  988.  
  989. INSERT INTO `ost_list` (`id`, `name`, `name_plural`, `sort_mode`, `masks`, `type`, `configuration`, `notes`, `created`, `updated`) VALUES
  990. (1, 'Ticket Status', 'Ticket Statuses', 'SortCol', 13, 'ticket-status', '{\"handler\":\"TicketStatusList\"}', 'Ticket statuses', '2019-09-24 00:46:21', '2019-09-24 00:46:21');
  991.  
  992. -- --------------------------------------------------------
  993.  
  994. --
  995. -- Table structure for table `ost_list_items`
  996. --
  997.  
  998. CREATE TABLE `ost_list_items` (
  999.   `id` int(11) UNSIGNED NOT NULL,
  1000.   `list_id` int(11) DEFAULT NULL,
  1001.   `status` int(11) UNSIGNED NOT NULL DEFAULT '1',
  1002.   `value` varchar(255) NOT NULL,
  1003.   `extra` varchar(255) DEFAULT NULL,
  1004.   `sort` int(11) NOT NULL DEFAULT '1',
  1005.   `properties` text
  1006. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1007.  
  1008. -- --------------------------------------------------------
  1009.  
  1010. --
  1011. -- Table structure for table `ost_lock`
  1012. --
  1013.  
  1014. CREATE TABLE `ost_lock` (
  1015.   `lock_id` int(11) UNSIGNED NOT NULL,
  1016.   `staff_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1017.   `expire` datetime DEFAULT NULL,
  1018.   `code` varchar(20) DEFAULT NULL,
  1019.   `created` datetime NOT NULL
  1020. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1021.  
  1022. -- --------------------------------------------------------
  1023.  
  1024. --
  1025. -- Table structure for table `ost_note`
  1026. --
  1027.  
  1028. CREATE TABLE `ost_note` (
  1029.   `id` int(11) UNSIGNED NOT NULL,
  1030.   `pid` int(11) UNSIGNED DEFAULT NULL,
  1031.   `staff_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1032.   `ext_id` varchar(10) DEFAULT NULL,
  1033.   `body` text,
  1034.   `status` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1035.   `sort` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1036.   `created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  1037.   `updated` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP
  1038. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1039.  
  1040. -- --------------------------------------------------------
  1041.  
  1042. --
  1043. -- Table structure for table `ost_organization`
  1044. --
  1045.  
  1046. CREATE TABLE `ost_organization` (
  1047.   `id` int(11) UNSIGNED NOT NULL,
  1048.   `name` varchar(128) NOT NULL DEFAULT '',
  1049.   `manager` varchar(16) NOT NULL DEFAULT '',
  1050.   `status` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1051.   `domain` varchar(256) NOT NULL DEFAULT '',
  1052.   `extra` text,
  1053.   `created` timestamp NULL DEFAULT NULL,
  1054.   `updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP
  1055. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1056.  
  1057. --
  1058. -- Dumping data for table `ost_organization`
  1059. --
  1060.  
  1061. INSERT INTO `ost_organization` (`id`, `name`, `manager`, `status`, `domain`, `extra`, `created`, `updated`) VALUES
  1062. (2, 'Suraksha Diagnostic Private Limited', '', 8, '', NULL, '2019-09-25 11:37:40', '2019-09-25 11:37:40');
  1063.  
  1064. -- --------------------------------------------------------
  1065.  
  1066. --
  1067. -- Table structure for table `ost_organization__cdata`
  1068. --
  1069.  
  1070. CREATE TABLE `ost_organization__cdata` (
  1071.   `org_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1072.   `name` mediumtext,
  1073.   `address` mediumtext,
  1074.   `phone` mediumtext,
  1075.   `website` mediumtext,
  1076.   `notes` mediumtext
  1077. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1078.  
  1079. --
  1080. -- Dumping data for table `ost_organization__cdata`
  1081. --
  1082.  
  1083. INSERT INTO `ost_organization__cdata` (`org_id`, `name`, `address`, `phone`, `website`, `notes`) VALUES
  1084. (1, NULL, '420 Desoto Street\nAlexandria, LA 71301', '3182903674', 'http://osticket.com', 'Not only do we develop the software, we also use it to manage support for osTicket. Let us help you quickly implement and leverage the full potential of osTicket\'s features and functionality. Contact us for professional support or visit our website for documentation and community support.'),
  1085. (2, NULL, 'DG-12/1, Action Area 1D, Premises no. 02-0327 Street no. 327, Newtown, Rajarhat Kolkata-700156, West', '03366059700X720', 'https://www.surakshanet.com', '');
  1086.  
  1087. -- --------------------------------------------------------
  1088.  
  1089. --
  1090. -- Table structure for table `ost_plugin`
  1091. --
  1092.  
  1093. CREATE TABLE `ost_plugin` (
  1094.   `id` int(11) UNSIGNED NOT NULL,
  1095.   `name` varchar(30) NOT NULL,
  1096.   `install_path` varchar(60) NOT NULL,
  1097.   `isphar` tinyint(1) NOT NULL DEFAULT '0',
  1098.   `isactive` tinyint(1) NOT NULL DEFAULT '0',
  1099.   `version` varchar(64) DEFAULT NULL,
  1100.   `installed` datetime NOT NULL
  1101. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1102.  
  1103. -- --------------------------------------------------------
  1104.  
  1105. --
  1106. -- Table structure for table `ost_queue`
  1107. --
  1108.  
  1109. CREATE TABLE `ost_queue` (
  1110.   `id` int(11) UNSIGNED NOT NULL,
  1111.   `parent_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1112.   `columns_id` int(11) UNSIGNED DEFAULT NULL,
  1113.   `sort_id` int(11) UNSIGNED DEFAULT NULL,
  1114.   `flags` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1115.   `staff_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1116.   `sort` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1117.   `title` varchar(60) DEFAULT NULL,
  1118.   `config` text,
  1119.   `filter` varchar(64) DEFAULT NULL,
  1120.   `root` varchar(32) DEFAULT NULL,
  1121.   `path` varchar(80) NOT NULL DEFAULT '/',
  1122.   `created` datetime NOT NULL,
  1123.   `updated` datetime NOT NULL
  1124. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1125.  
  1126. --
  1127. -- Dumping data for table `ost_queue`
  1128. --
  1129.  
  1130. INSERT INTO `ost_queue` (`id`, `parent_id`, `columns_id`, `sort_id`, `flags`, `staff_id`, `sort`, `title`, `config`, `filter`, `root`, `path`, `created`, `updated`) VALUES
  1131. (1, 0, NULL, 1, 3, 0, 1, 'Open', '{\"criteria\":[[\"status__state\",\"includes\",{\"open\":\"Open\"}]],\"conditions\":[]}', NULL, 'T', '/1/', '2019-09-24 00:46:21', '2020-01-02 12:03:27'),
  1132. (2, 1, NULL, 4, 11, 0, 1, 'Open', '{\"criteria\":[[\"isanswered\",\"nset\",null],[\"thread__lastmessage\",\"set\",null],[\"thread__lastresponse\",\"set\",null]],\"conditions\":[{\"crit\":[\"thread__lastmessage\",\"set\",null],\"prop\":{\"text-transform\":\"lowercase\"}}]}', NULL, 'T', '/1/2/', '2019-09-24 00:46:21', '2020-02-04 11:53:08'),
  1133. (3, 1, NULL, 4, 43, 0, 2, 'Answered', '{\"criteria\":[[\"isanswered\",\"set\",null]],\"conditions\":[]}', NULL, 'T', '/1/3/', '2019-09-24 00:46:21', '2019-12-24 05:57:54'),
  1134. (4, 1, NULL, 4, 43, 0, 3, 'Overdue', '{\"criteria\":[[\"isoverdue\",\"set\",null]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1135. (5, 0, NULL, 3, 3, 0, 3, 'My Tickets', '{\"criteria\":[[\"assignee\",\"includes\",{\"M\":\"Me\",\"T\":\"One of my teams\"}],[\"status__state\",\"includes\",{\"open\":\"Open\"}]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1136. (6, 5, NULL, NULL, 43, 0, 1, 'Assigned to Me', '{\"criteria\":[[\"assignee\",\"includes\",{\"M\":\"Me\"}]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1137. (7, 5, NULL, NULL, 43, 0, 2, 'Assigned to Teams', '{\"criteria\":[[\"assignee\",\"!includes\",{\"M\":\"Me\"}]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1138. (8, 0, NULL, 5, 3, 0, 4, 'Closed', '{\"criteria\":[[\"status__state\",\"includes\",{\"closed\":\"Closed\"}]],\"conditions\":[{\"crit\":[\"cdata__subject\",\"set\",null],\"prop\":[]}]}', NULL, 'T', '/8/', '2019-09-24 00:46:21', '2020-01-02 12:01:42'),
  1139. (9, 8, NULL, 5, 43, 0, 1, 'Today', '{\"criteria\":[[\"closed\",\"period\",\"td\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1140. (10, 8, NULL, 5, 43, 0, 2, 'Yesterday', '{\"criteria\":[[\"closed\",\"period\",\"yd\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1141. (11, 8, NULL, 5, 43, 0, 3, 'This Week', '{\"criteria\":[[\"closed\",\"period\",\"tw\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1142. (12, 8, NULL, 5, 43, 0, 4, 'This Month', '{\"criteria\":[[\"closed\",\"period\",\"tm\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1143. (13, 8, NULL, 6, 43, 0, 5, 'This Quarter', '{\"criteria\":[[\"closed\",\"period\",\"tq\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  1144. (14, 8, NULL, 7, 43, 0, 6, 'This Year', '{\"criteria\":[[\"closed\",\"period\",\"ty\"]],\"conditions\":[]}', NULL, 'T', '/', '2019-09-24 00:46:21', '0000-00-00 00:00:00');
  1145.  
  1146. -- --------------------------------------------------------
  1147.  
  1148. --
  1149. -- Table structure for table `ost_queue_column`
  1150. --
  1151.  
  1152. CREATE TABLE `ost_queue_column` (
  1153.   `id` int(11) UNSIGNED NOT NULL,
  1154.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1155.   `name` varchar(64) NOT NULL DEFAULT '',
  1156.   `primary` varchar(64) NOT NULL DEFAULT '',
  1157.   `secondary` varchar(64) DEFAULT NULL,
  1158.   `filter` varchar(32) DEFAULT NULL,
  1159.   `truncate` varchar(16) DEFAULT NULL,
  1160.   `annotations` text,
  1161.   `conditions` text,
  1162.   `extra` text
  1163. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1164.  
  1165. --
  1166. -- Dumping data for table `ost_queue_column`
  1167. --
  1168.  
  1169. INSERT INTO `ost_queue_column` (`id`, `flags`, `name`, `primary`, `secondary`, `filter`, `truncate`, `annotations`, `conditions`, `extra`) VALUES
  1170. (1, 0, 'Ticket #', 'number', NULL, 'link:ticketP', 'wrap', '[{\"c\":\"TicketSourceDecoration\",\"p\":\"b\"}]', '[{\"crit\":[\"isanswered\",\"nset\",null],\"prop\":{\"font-weight\":\"bold\"}}]', NULL),
  1171. (2, 0, 'Date Created', 'created', NULL, 'date:full', 'wrap', '[]', '[]', NULL),
  1172. (3, 0, 'Subject', 'cdata__subject', NULL, 'link:ticket', 'ellipsis', '[{\"c\":\"TicketThreadCount\",\"p\":\">\"},{\"c\":\"ThreadAttachmentCount\",\"p\":\"a\"},{\"c\":\"OverdueFlagDecoration\",\"p\":\"<\"},{\"c\":\"LockDecoration\",\"p\":\"<\"}]', '[{\"crit\":[\"isanswered\",\"nset\",null],\"prop\":{\"font-weight\":\"bold\"}}]', NULL),
  1173. (4, 0, 'User Name', 'user__name', NULL, NULL, 'wrap', '[{\"c\":\"ThreadCollaboratorCount\",\"p\":\">\"}]', '[]', NULL),
  1174. (5, 0, 'Priority', 'cdata__priority', NULL, NULL, 'wrap', '[]', '[]', NULL),
  1175. (6, 0, 'Status', 'status__id', NULL, NULL, 'wrap', '[]', '[]', NULL),
  1176. (7, 0, 'Close Date', 'closed', NULL, 'date:full', 'wrap', '[]', '[]', NULL),
  1177. (8, 0, 'Assignee', 'assignee', NULL, NULL, 'wrap', '[]', '[]', NULL),
  1178. (9, 0, 'Due Date', 'duedate', 'est_duedate', 'date:human', 'wrap', '[]', '[]', NULL),
  1179. (10, 0, 'Last Updated', 'lastupdate', NULL, 'date:full', 'wrap', '[]', '[]', NULL),
  1180. (11, 0, 'Department', 'dept_id', NULL, NULL, 'wrap', '[]', '[]', NULL),
  1181. (12, 0, 'Last Message', 'thread__lastmessage', NULL, 'date:human', 'wrap', '[]', '[]', NULL),
  1182. (13, 0, 'Last Response', 'thread__lastresponse', NULL, 'date:human', 'wrap', '[]', '[]', NULL),
  1183. (14, 0, 'Team', 'team_id', NULL, NULL, 'wrap', '[]', '[]', NULL),
  1184. (15, 0, 'message', 'thread__lastmessage', 'thread__lastresponse', NULL, 'wrap', '[]', '[{\"crit\":[\"thread__lastmessage\",\"set\",null],\"prop\":{\"background-color\":\"#b5da8a\",\"color\":\"#000000\"}}]', NULL),
  1185. (16, 0, 'Details', 'thread_count', NULL, NULL, 'clip', '[]', '[]', NULL),
  1186. (17, 0, 'Message', 'thread__lastmessage', 'isanswered', NULL, 'wrap', '[]', '[]', NULL);
  1187.  
  1188. -- --------------------------------------------------------
  1189.  
  1190. --
  1191. -- Table structure for table `ost_queue_columns`
  1192. --
  1193.  
  1194. CREATE TABLE `ost_queue_columns` (
  1195.   `queue_id` int(11) UNSIGNED NOT NULL,
  1196.   `column_id` int(11) UNSIGNED NOT NULL,
  1197.   `staff_id` int(11) UNSIGNED NOT NULL,
  1198.   `bits` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1199.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '1',
  1200.   `heading` varchar(64) DEFAULT NULL,
  1201.   `width` int(10) UNSIGNED NOT NULL DEFAULT '100'
  1202. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1203.  
  1204. --
  1205. -- Dumping data for table `ost_queue_columns`
  1206. --
  1207.  
  1208. INSERT INTO `ost_queue_columns` (`queue_id`, `column_id`, `staff_id`, `bits`, `sort`, `heading`, `width`) VALUES
  1209. (1, 1, 0, 1, 0, 'Ticket', 100),
  1210. (1, 10, 0, 1, 1, 'Last Updated', 150),
  1211. (1, 3, 0, 1, 2, 'Subject', 300),
  1212. (1, 4, 0, 1, 3, 'From', 185),
  1213. (1, 5, 0, 1, 4, 'Priority', 85),
  1214. (1, 8, 0, 1, 5, 'Assigned To', 160),
  1215. (2, 1, 0, 1, 0, 'Ticket', 100),
  1216. (2, 10, 0, 1, 1, 'Last Updated', 150),
  1217. (2, 3, 0, 1, 2, 'Subject', 300),
  1218. (2, 4, 0, 1, 3, 'From', 185),
  1219. (2, 5, 0, 1, 4, 'Priority', 85),
  1220. (2, 8, 0, 1, 5, 'Assigned To', 160),
  1221. (3, 1, 0, 1, 0, 'Ticket', 100),
  1222. (3, 10, 0, 1, 1, 'Last Updated', 150),
  1223. (3, 3, 0, 1, 2, 'Subject', 300),
  1224. (3, 4, 0, 1, 3, 'From', 185),
  1225. (3, 5, 0, 1, 4, 'Priority', 85),
  1226. (3, 8, 0, 1, 5, 'Assigned To', 160),
  1227. (4, 1, 0, 1, 1, 'Ticket', 100),
  1228. (4, 9, 0, 1, 9, 'Due Date', 150),
  1229. (4, 3, 0, 1, 3, 'Subject', 300),
  1230. (4, 4, 0, 1, 4, 'From', 185),
  1231. (4, 5, 0, 1, 5, 'Priority', 85),
  1232. (4, 8, 0, 1, 6, 'Assigned To', 160),
  1233. (5, 1, 0, 1, 1, 'Ticket', 100),
  1234. (5, 10, 0, 1, 2, 'Last Update', 150),
  1235. (5, 3, 0, 1, 3, 'Subject', 300),
  1236. (5, 4, 0, 1, 4, 'From', 185),
  1237. (5, 5, 0, 1, 5, 'Priority', 85),
  1238. (5, 11, 0, 1, 6, 'Department', 160),
  1239. (6, 1, 0, 1, 1, 'Ticket', 100),
  1240. (6, 10, 0, 1, 2, 'Last Update', 150),
  1241. (6, 3, 0, 1, 3, 'Subject', 300),
  1242. (6, 4, 0, 1, 4, 'From', 185),
  1243. (6, 5, 0, 1, 5, 'Priority', 85),
  1244. (6, 11, 0, 1, 6, 'Department', 160),
  1245. (7, 1, 0, 1, 1, 'Ticket', 100),
  1246. (7, 10, 0, 1, 2, 'Last Update', 150),
  1247. (7, 3, 0, 1, 3, 'Subject', 300),
  1248. (7, 4, 0, 1, 4, 'From', 185),
  1249. (7, 5, 0, 1, 5, 'Priority', 85),
  1250. (7, 14, 0, 1, 6, 'Team', 160),
  1251. (8, 1, 0, 1, 0, 'Ticket', 100),
  1252. (8, 7, 0, 1, 1, 'Date Closed', 150),
  1253. (8, 3, 0, 1, 2, 'Subject', 300),
  1254. (8, 4, 0, 1, 3, 'From', 185),
  1255. (8, 8, 0, 1, 4, 'Closed By', 160),
  1256. (9, 1, 0, 1, 1, 'Ticket', 100),
  1257. (9, 7, 0, 1, 2, 'Date Closed', 150),
  1258. (9, 3, 0, 1, 3, 'Subject', 300),
  1259. (9, 4, 0, 1, 4, 'From', 185),
  1260. (9, 8, 0, 1, 6, 'Closed By', 160),
  1261. (10, 1, 0, 1, 1, 'Ticket', 100),
  1262. (10, 7, 0, 1, 2, 'Date Closed', 150),
  1263. (10, 3, 0, 1, 3, 'Subject', 300),
  1264. (10, 4, 0, 1, 4, 'From', 185),
  1265. (10, 8, 0, 1, 6, 'Closed By', 160),
  1266. (11, 1, 0, 1, 1, 'Ticket', 100),
  1267. (11, 7, 0, 1, 2, 'Date Closed', 150),
  1268. (11, 3, 0, 1, 3, 'Subject', 300),
  1269. (11, 4, 0, 1, 4, 'From', 185),
  1270. (11, 8, 0, 1, 6, 'Closed By', 160),
  1271. (12, 1, 0, 1, 1, 'Ticket', 100),
  1272. (12, 7, 0, 1, 2, 'Date Closed', 150),
  1273. (12, 3, 0, 1, 3, 'Subject', 300),
  1274. (12, 4, 0, 1, 4, 'From', 185),
  1275. (12, 8, 0, 1, 6, 'Closed By', 160),
  1276. (13, 1, 0, 1, 1, 'Ticket', 100),
  1277. (13, 7, 0, 1, 2, 'Date Closed', 150),
  1278. (13, 3, 0, 1, 3, 'Subject', 300),
  1279. (13, 4, 0, 1, 4, 'From', 185),
  1280. (13, 8, 0, 1, 6, 'Closed By', 160),
  1281. (14, 1, 0, 1, 1, 'Ticket', 100),
  1282. (14, 7, 0, 1, 2, 'Date Closed', 150),
  1283. (14, 3, 0, 1, 3, 'Subject', 300),
  1284. (14, 4, 0, 1, 4, 'From', 185),
  1285. (14, 8, 0, 1, 6, 'Closed By', 160),
  1286. (1, 1, 1, 1, 0, 'Ticket', 100),
  1287. (1, 10, 1, 1, 1, 'Last Updated', 150),
  1288. (1, 3, 1, 1, 2, 'Subject', 300),
  1289. (1, 4, 1, 1, 3, 'From', 185),
  1290. (1, 5, 1, 1, 4, 'Priority', 85),
  1291. (1, 11, 1, 1, 5, 'Department', 100),
  1292. (1, 1, 2, 1, 0, 'Ticket', 100),
  1293. (1, 10, 2, 1, 1, 'Last Updated', 150),
  1294. (1, 3, 2, 1, 2, 'Subject', 300),
  1295. (1, 4, 2, 1, 3, 'From', 185),
  1296. (1, 5, 2, 1, 4, 'Priority', 85),
  1297. (1, 11, 2, 1, 5, 'Department', 100),
  1298. (1, 6, 2, 1, 6, 'Status', 100),
  1299. (2, 1, 2, 1, 1, 'Ticket', 100),
  1300. (2, 10, 2, 1, 1, 'Last Updated', 150),
  1301. (2, 3, 2, 1, 2, 'Subject', 300),
  1302. (2, 4, 2, 1, 3, 'From', 185),
  1303. (2, 5, 2, 1, 4, 'Priority', 85),
  1304. (2, 11, 2, 1, 5, 'Department', 100),
  1305. (1, 16, 0, 1, 6, 'Details', 100),
  1306. (8, 1, 1, 1, 0, 'Ticket', 100),
  1307. (8, 7, 1, 1, 1, 'Date Closed', 150),
  1308. (2, 15, 0, 1, 8, 'message', 100),
  1309. (2, 12, 0, 1, 7, 'Last Message', 100),
  1310. (1, 14, 1, 1, 6, 'Team', 100),
  1311. (2, 11, 0, 1, 6, 'Department', 100),
  1312. (8, 15, 0, 1, 5, 'message', 100),
  1313. (1, 16, 1, 1, 7, 'Details', 100),
  1314. (2, 16, 0, 1, 9, 'Details', 100),
  1315. (8, 3, 1, 1, 2, 'Subject', 300),
  1316. (8, 4, 1, 1, 3, 'From', 185),
  1317. (8, 8, 1, 1, 4, 'Closed By', 160),
  1318. (8, 15, 1, 1, 5, 'message', 100),
  1319. (2, 17, 0, 1, 10, 'Message', 100);
  1320.  
  1321. -- --------------------------------------------------------
  1322.  
  1323. --
  1324. -- Table structure for table `ost_queue_config`
  1325. --
  1326.  
  1327. CREATE TABLE `ost_queue_config` (
  1328.   `queue_id` int(11) UNSIGNED NOT NULL,
  1329.   `staff_id` int(11) UNSIGNED NOT NULL,
  1330.   `setting` text,
  1331.   `updated` datetime NOT NULL
  1332. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1333.  
  1334. --
  1335. -- Dumping data for table `ost_queue_config`
  1336. --
  1337.  
  1338. INSERT INTO `ost_queue_config` (`queue_id`, `staff_id`, `setting`, `updated`) VALUES
  1339. (1, 1, '{\"sort_id\":1,\"filter\":\"\",\"inherit-columns\":false,\"criteria\":[]}', '2019-10-16 05:35:45'),
  1340. (1, 2, '{\"sort_id\":6,\"filter\":\"\",\"inherit-columns\":false,\"criteria\":[[\"isanswered\",\"set\",null]]}', '2019-10-16 09:43:43'),
  1341. (2, 2, '{\"sort_id\":4,\"filter\":\"\",\"inherit-columns\":false,\"criteria\":[]}', '2019-10-16 05:40:16'),
  1342. (8, 1, '{\"sort_id\":5,\"filter\":\"\",\"inherit-columns\":false,\"criteria\":[]}', '2020-01-02 12:29:13');
  1343.  
  1344. -- --------------------------------------------------------
  1345.  
  1346. --
  1347. -- Table structure for table `ost_queue_export`
  1348. --
  1349.  
  1350. CREATE TABLE `ost_queue_export` (
  1351.   `id` int(11) UNSIGNED NOT NULL,
  1352.   `queue_id` int(11) UNSIGNED NOT NULL,
  1353.   `path` varchar(64) NOT NULL DEFAULT '',
  1354.   `heading` varchar(64) DEFAULT NULL,
  1355.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '1'
  1356. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1357.  
  1358. --
  1359. -- Dumping data for table `ost_queue_export`
  1360. --
  1361.  
  1362. INSERT INTO `ost_queue_export` (`id`, `queue_id`, `path`, `heading`, `sort`) VALUES
  1363. (1, 2, 'number', 'Ticket Number', 1),
  1364. (2, 2, 'created', 'Date Created', 2),
  1365. (3, 2, 'cdata__subject', 'Subject', 3),
  1366. (4, 2, 'user__name', 'From', 4),
  1367. (5, 2, 'user__emails__address', 'From Email', 5),
  1368. (6, 2, 'cdata__priority', 'Priority', 6),
  1369. (7, 2, 'dept_id', 'Department', 7),
  1370. (8, 2, 'topic_id', 'Help Topic', 8),
  1371. (9, 2, 'source', 'Source', 9),
  1372. (10, 2, 'status__id', 'Current Status', 10),
  1373. (11, 2, 'lastupdate', 'Last Updated', 11),
  1374. (12, 2, 'est_duedate', 'SLA Due Date', 12),
  1375. (13, 2, 'duedate', 'Due Date', 13),
  1376. (14, 2, 'closed', 'Closed Date', 14),
  1377. (15, 2, 'isoverdue', 'Overdue', 15),
  1378. (16, 2, 'isanswered', 'Answered', 16),
  1379. (17, 2, 'staff_id', 'Agent Assigned', 17),
  1380. (18, 2, 'team_id', 'Team Assigned', 18),
  1381. (19, 2, 'thread_count', 'Thread Count', 19),
  1382. (89, 2, 'reopen_count', 'Reopen Count', 22),
  1383. (21, 2, 'attachment_count', 'Attachment Count', 20),
  1384. (22, 2, 'cdata__field_37', 'Patient Name', 21),
  1385. (23, 3, 'number', 'Ticket Number', 1),
  1386. (24, 3, 'created', 'Date Created', 2),
  1387. (25, 3, 'cdata__subject', 'Subject', 3),
  1388. (26, 3, 'user__name', 'From', 4),
  1389. (27, 3, 'user__emails__address', 'From Email', 5),
  1390. (28, 3, 'cdata__priority', 'Priority', 6),
  1391. (29, 3, 'dept_id', 'Department', 7),
  1392. (30, 3, 'topic_id', 'Help Topic', 8),
  1393. (31, 3, 'source', 'Source', 9),
  1394. (32, 3, 'status__id', 'Current Status', 10),
  1395. (33, 3, 'lastupdate', 'Last Updated', 11),
  1396. (34, 3, 'est_duedate', 'SLA Due Date', 12),
  1397. (35, 3, 'isanswered', 'Answered', 13),
  1398. (36, 3, 'duedate', 'Due Date', 14),
  1399. (37, 3, 'closed', 'Closed Date', 15),
  1400. (38, 3, 'isoverdue', 'Overdue', 16),
  1401. (39, 3, 'staff_id', 'Agent Assigned', 17),
  1402. (40, 3, 'team_id', 'Team Assigned', 18),
  1403. (41, 3, 'thread_count', 'Thread Count', 19),
  1404. (42, 3, 'reopen_count', 'Reopen Count', 20),
  1405. (43, 3, 'attachment_count', 'Attachment Count', 21),
  1406. (44, 3, 'cdata__field_37', 'Patient Name', 22),
  1407. (45, 8, 'number', 'Ticket Number', 1),
  1408. (46, 8, 'created', 'Date Created', 2),
  1409. (47, 8, 'cdata__subject', 'Subject', 3),
  1410. (48, 8, 'user__name', 'From', 4),
  1411. (49, 8, 'user__emails__address', 'From Email', 5),
  1412. (50, 8, 'cdata__priority', 'Priority', 6),
  1413. (51, 8, 'dept_id', 'Department', 7),
  1414. (52, 8, 'topic_id', 'Help Topic', 8),
  1415. (53, 8, 'source', 'Source', 9),
  1416. (54, 8, 'status__id', 'Current Status', 10),
  1417. (55, 8, 'lastupdate', 'Last Updated', 11),
  1418. (56, 8, 'est_duedate', 'SLA Due Date', 12),
  1419. (57, 8, 'duedate', 'Due Date', 13),
  1420. (58, 8, 'closed', 'Closed Date', 14),
  1421. (59, 8, 'isoverdue', 'Overdue', 15),
  1422. (60, 8, 'isanswered', 'Answered', 16),
  1423. (61, 8, 'staff_id', 'Agent Assigned', 18),
  1424. (62, 8, 'team_id', 'Team Assigned', 19),
  1425. (63, 8, 'thread_count', 'Thread Count', 20),
  1426. (64, 8, 'reopen_count', 'Reopen Count', 17),
  1427. (65, 8, 'attachment_count', 'Attachment Count', 21),
  1428. (66, 8, 'cdata__field_37', 'Patient Name', 22),
  1429. (67, 1, 'number', 'Ticket Number', 1),
  1430. (68, 1, 'created', 'Date Created', 2),
  1431. (69, 1, 'cdata__subject', 'Subject', 3),
  1432. (70, 1, 'user__name', 'From', 4),
  1433. (71, 1, 'user__emails__address', 'From Email', 5),
  1434. (72, 1, 'cdata__priority', 'Priority', 6),
  1435. (73, 1, 'dept_id', 'Department', 7),
  1436. (74, 1, 'topic_id', 'Help Topic', 8),
  1437. (75, 1, 'source', 'Source', 9),
  1438. (76, 1, 'status__id', 'Current Status', 10),
  1439. (77, 1, 'lastupdate', 'Last Updated', 11),
  1440. (78, 1, 'est_duedate', 'SLA Due Date', 12),
  1441. (79, 1, 'duedate', 'Due Date', 13),
  1442. (80, 1, 'closed', 'Closed Date', 14),
  1443. (81, 1, 'isoverdue', 'Overdue', 15),
  1444. (82, 1, 'isanswered', 'Answered', 16),
  1445. (83, 1, 'staff_id', 'Agent Assigned', 17),
  1446. (84, 1, 'team_id', 'Team Assigned', 18),
  1447. (85, 1, 'thread_count', 'Thread Count', 19),
  1448. (86, 1, 'reopen_count', 'Reopen Count', 20),
  1449. (87, 1, 'attachment_count', 'Attachment Count', 21),
  1450. (88, 1, 'cdata__field_37', 'Patient Name', 22);
  1451.  
  1452. -- --------------------------------------------------------
  1453.  
  1454. --
  1455. -- Table structure for table `ost_queue_sort`
  1456. --
  1457.  
  1458. CREATE TABLE `ost_queue_sort` (
  1459.   `id` int(11) UNSIGNED NOT NULL,
  1460.   `root` varchar(32) DEFAULT NULL,
  1461.   `name` varchar(64) NOT NULL DEFAULT '',
  1462.   `columns` text,
  1463.   `updated` datetime DEFAULT NULL
  1464. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1465.  
  1466. --
  1467. -- Dumping data for table `ost_queue_sort`
  1468. --
  1469.  
  1470. INSERT INTO `ost_queue_sort` (`id`, `root`, `name`, `columns`, `updated`) VALUES
  1471. (1, NULL, 'Priority + Most Recently Updated', '[\"-cdata__priority\",\"-lastupdate\"]', '2019-09-24 00:46:21'),
  1472. (2, NULL, 'Priority + Most Recently Created', '[\"-cdata__priority\",\"-created\"]', '2019-09-24 00:46:21'),
  1473. (3, NULL, 'Priority + Due Date', '[\"-cdata__priority\",\"-est_duedate\"]', '2019-09-24 00:46:21'),
  1474. (4, NULL, 'Due Date', '[\"-est_duedate\"]', '2019-09-24 00:46:21'),
  1475. (5, NULL, 'Closed Date', '[\"-closed\"]', '2019-09-24 00:46:21'),
  1476. (6, NULL, 'Create Date', '[\"-created\"]', '2019-09-24 00:46:21'),
  1477. (7, NULL, 'Update Date', '[\"-lastupdate\"]', '2019-09-24 00:46:21'),
  1478. (8, 'T', 'details', '[\"cdata__subject\"]', '2020-01-02 11:58:16');
  1479.  
  1480. -- --------------------------------------------------------
  1481.  
  1482. --
  1483. -- Table structure for table `ost_queue_sorts`
  1484. --
  1485.  
  1486. CREATE TABLE `ost_queue_sorts` (
  1487.   `queue_id` int(11) UNSIGNED NOT NULL,
  1488.   `sort_id` int(11) UNSIGNED NOT NULL,
  1489.   `bits` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1490.   `sort` int(10) UNSIGNED NOT NULL DEFAULT '0'
  1491. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1492.  
  1493. --
  1494. -- Dumping data for table `ost_queue_sorts`
  1495. --
  1496.  
  1497. INSERT INTO `ost_queue_sorts` (`queue_id`, `sort_id`, `bits`, `sort`) VALUES
  1498. (1, 1, 0, 0),
  1499. (1, 2, 0, 1),
  1500. (1, 3, 0, 2),
  1501. (1, 4, 0, 3),
  1502. (1, 6, 0, 4),
  1503. (1, 7, 0, 5),
  1504. (5, 1, 0, 0),
  1505. (5, 2, 0, 0),
  1506. (5, 3, 0, 0),
  1507. (5, 4, 0, 0),
  1508. (5, 6, 0, 0),
  1509. (5, 7, 0, 0),
  1510. (6, 1, 0, 0),
  1511. (6, 2, 0, 0),
  1512. (6, 3, 0, 0),
  1513. (6, 4, 0, 0),
  1514. (6, 6, 0, 0),
  1515. (6, 7, 0, 0),
  1516. (7, 1, 0, 0),
  1517. (7, 2, 0, 0),
  1518. (7, 3, 0, 0),
  1519. (7, 4, 0, 0),
  1520. (7, 6, 0, 0),
  1521. (7, 7, 0, 0),
  1522. (8, 5, 0, 4),
  1523. (8, 1, 0, 0),
  1524. (8, 2, 0, 1),
  1525. (8, 3, 0, 2),
  1526. (8, 4, 0, 3),
  1527. (8, 6, 0, 5),
  1528. (8, 7, 0, 6),
  1529. (9, 5, 0, 0),
  1530. (9, 1, 0, 0),
  1531. (9, 2, 0, 0),
  1532. (9, 3, 0, 0),
  1533. (9, 4, 0, 0),
  1534. (9, 6, 0, 0),
  1535. (9, 7, 0, 0),
  1536. (10, 5, 0, 0),
  1537. (10, 1, 0, 0),
  1538. (10, 2, 0, 0),
  1539. (10, 3, 0, 0),
  1540. (10, 4, 0, 0),
  1541. (10, 6, 0, 0),
  1542. (10, 7, 0, 0),
  1543. (11, 5, 0, 0),
  1544. (11, 1, 0, 0),
  1545. (11, 2, 0, 0),
  1546. (11, 3, 0, 0),
  1547. (11, 4, 0, 0),
  1548. (11, 6, 0, 0),
  1549. (11, 7, 0, 0),
  1550. (12, 5, 0, 0),
  1551. (12, 1, 0, 0),
  1552. (12, 2, 0, 0),
  1553. (12, 3, 0, 0),
  1554. (12, 4, 0, 0),
  1555. (12, 6, 0, 0),
  1556. (12, 7, 0, 0),
  1557. (13, 5, 0, 0),
  1558. (13, 1, 0, 0),
  1559. (13, 2, 0, 0),
  1560. (13, 3, 0, 0),
  1561. (13, 4, 0, 0),
  1562. (13, 6, 0, 0),
  1563. (13, 7, 0, 0),
  1564. (14, 5, 0, 0),
  1565. (14, 1, 0, 0),
  1566. (14, 2, 0, 0),
  1567. (14, 3, 0, 0),
  1568. (14, 4, 0, 0),
  1569. (14, 6, 0, 0),
  1570. (14, 7, 0, 0),
  1571. (2, 1, 0, 0),
  1572. (2, 2, 0, 1),
  1573. (2, 3, 0, 2),
  1574. (2, 4, 0, 3),
  1575. (2, 6, 0, 4),
  1576. (2, 7, 0, 5),
  1577. (8, 8, 0, 7),
  1578. (1, 8, 0, 6);
  1579.  
  1580. -- --------------------------------------------------------
  1581.  
  1582. --
  1583. -- Table structure for table `ost_reports`
  1584. --
  1585.  
  1586. CREATE TABLE `ost_reports` (
  1587.   `3d` tinyint(4) NOT NULL,
  1588.   `graphWidth` int(11) NOT NULL,
  1589.   `graphHeight` int(11) NOT NULL,
  1590.   `resolution` varchar(255) NOT NULL,
  1591.   `viewable` varchar(255) NOT NULL
  1592. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1593.  
  1594. --
  1595. -- Dumping data for table `ost_reports`
  1596. --
  1597.  
  1598. INSERT INTO `ost_reports` (`3d`, `graphWidth`, `graphHeight`, `resolution`, `viewable`) VALUES
  1599. (1, 400, 240, 'hours', 'admins'),
  1600. (1, 400, 240, 'hours', 'admins');
  1601.  
  1602. -- --------------------------------------------------------
  1603.  
  1604. --
  1605. -- Table structure for table `ost_role`
  1606. --
  1607.  
  1608. CREATE TABLE `ost_role` (
  1609.   `id` int(11) UNSIGNED NOT NULL,
  1610.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '1',
  1611.   `name` varchar(64) DEFAULT NULL,
  1612.   `permissions` text,
  1613.   `notes` text,
  1614.   `created` datetime NOT NULL,
  1615.   `updated` datetime NOT NULL
  1616. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1617.  
  1618. --
  1619. -- Dumping data for table `ost_role`
  1620. --
  1621.  
  1622. INSERT INTO `ost_role` (`id`, `flags`, `name`, `permissions`, `notes`, `created`, `updated`) VALUES
  1623. (1, 1, 'All Access', '{\"ticket.assign\":1,\"ticket.close\":1,\"ticket.create\":1,\"ticket.delete\":1,\"ticket.edit\":1,\"thread.edit\":1,\"ticket.reply\":1,\"ticket.refer\":1,\"ticket.release\":1,\"ticket.transfer\":1,\"task.assign\":1,\"task.close\":1,\"task.create\":1,\"task.delete\":1,\"task.edit\":1,\"task.reply\":1,\"task.transfer\":1,\"canned.manage\":1}', 'Role with unlimited access', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  1624. (2, 1, 'Expanded Access', '{\"ticket.assign\":1,\"ticket.close\":1,\"ticket.create\":1,\"ticket.edit\":1,\"ticket.reply\":1,\"ticket.refer\":1,\"ticket.release\":1,\"ticket.transfer\":1,\"task.assign\":1,\"task.close\":1,\"task.create\":1,\"task.edit\":1,\"task.reply\":1,\"task.transfer\":1,\"canned.manage\":1}', 'Role with expanded access', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  1625. (3, 1, 'Limited Access', '{\"ticket.assign\":1,\"ticket.create\":1,\"ticket.refer\":1,\"ticket.release\":1,\"ticket.transfer\":1,\"task.assign\":1,\"task.reply\":1,\"task.transfer\":1}', 'Role with limited access', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  1626. (4, 1, 'View only', NULL, 'Simple role with no permissions', '2019-09-24 00:46:21', '2019-09-24 00:46:21');
  1627.  
  1628. -- --------------------------------------------------------
  1629.  
  1630. --
  1631. -- Table structure for table `ost_sequence`
  1632. --
  1633.  
  1634. CREATE TABLE `ost_sequence` (
  1635.   `id` int(11) UNSIGNED NOT NULL,
  1636.   `name` varchar(64) DEFAULT NULL,
  1637.   `flags` int(10) UNSIGNED DEFAULT NULL,
  1638.   `next` bigint(20) UNSIGNED NOT NULL DEFAULT '1',
  1639.   `increment` int(11) DEFAULT '1',
  1640.   `padding` char(1) DEFAULT '0',
  1641.   `updated` datetime NOT NULL
  1642. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1643.  
  1644. --
  1645. -- Dumping data for table `ost_sequence`
  1646. --
  1647.  
  1648. INSERT INTO `ost_sequence` (`id`, `name`, `flags`, `next`, `increment`, `padding`, `updated`) VALUES
  1649. (1, 'General Tickets', 1, 1, 1, '0', '0000-00-00 00:00:00'),
  1650. (2, 'Tasks Sequence', 1, 1, 1, '0', '0000-00-00 00:00:00');
  1651.  
  1652. -- --------------------------------------------------------
  1653.  
  1654. --
  1655. -- Table structure for table `ost_session`
  1656. --
  1657.  
  1658. CREATE TABLE `ost_session` (
  1659.   `session_id` varchar(255) CHARACTER SET ascii NOT NULL DEFAULT '',
  1660.   `session_data` blob,
  1661.   `session_expire` datetime DEFAULT NULL,
  1662.   `session_updated` datetime DEFAULT NULL,
  1663.   `user_id` varchar(16) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0' COMMENT 'osTicket staff/client ID',
  1664.   `user_ip` varchar(64) COLLATE utf8_unicode_ci NOT NULL,
  1665.   `user_agent` varchar(255) COLLATE utf8_unicode_ci NOT NULL
  1666. ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
  1667.  
  1668. --
  1669. -- Dumping data for table `ost_session`
  1670. --
  1671.  
  1672. INSERT INTO `ost_session` (`session_id`, `session_data`, `session_expire`, `session_updated`, `user_id`, `user_ip`, `user_agent`) VALUES
  1673. ('2aaa1f699073d597f83068412a828068', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2234663664666135633632316363393566656537323666323430633233323161313836393366313539223b733a343a2274696d65223b693a313537383135343239303b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2231646361323336363737626436633032633639663838333831666132393161373a313537383135343239303a6332303031343332353437383138313238643933306465666264323564346433223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31303b733a323a227132223b643a333b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31303b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313537383135343035373b7d7d6c61737463726f6e63616c6c7c693a313537383135343035383b, '2020-01-05 11:11:30', NULL, '1', '103.217.231.155', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),
  1674. ('561c0f60a9ed71adef8053c1b9653be9', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2266653939333533396339653631323937633334326533373135633563646262663436666566633131223b733a343a2274696d65223b693a313537383135383430343b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2261623538326466636434646564336436626236643131363730323530626339633a313537383135383430333a6332303031343332353437383138313238643933306465666264323564346433223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31303b733a323a227132223b643a333b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31303b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313537383135383430343b7d7d6c61737463726f6e63616c6c7c693a313537383135373132343b4578706f72743a51317c613a333a7b733a363a226669656c6473223b613a32323a7b693a303b733a363a226e756d626572223b693a313b733a373a2263726561746564223b693a323b733a31343a2263646174615f5f7375626a656374223b693a333b733a31303a22757365725f5f6e616d65223b693a343b733a32313a22757365725f5f656d61696c735f5f61646472657373223b693a353b733a31353a2263646174615f5f7072696f72697479223b693a363b733a373a22646570745f6964223b693a373b733a383a22746f7069635f6964223b693a383b733a363a22736f75726365223b693a393b733a31303a227374617475735f5f6964223b693a31303b733a31303a226c617374757064617465223b693a31313b733a31313a226573745f64756564617465223b693a31323b733a373a2264756564617465223b693a31333b733a363a22636c6f736564223b693a31343b733a393a2269736f766572647565223b693a31353b733a31303a226973616e737765726564223b693a31363b733a383a2273746166665f6964223b693a31373b733a373a227465616d5f6964223b693a31383b733a31323a227468726561645f636f756e74223b693a31393b733a31323a2272656f70656e5f636f756e74223b693a32303b733a31363a226174746163686d656e745f636f756e74223b693a32313b733a31353a2263646174615f5f6669656c645f3337223b7d733a383a2266696c656e616d65223b733a32373a224f70656e205469636b657473202d2032303230303130342e637376223b733a393a2264656c696d69746572223b4e3b7d, '2020-01-05 12:20:04', NULL, '1', '103.217.231.155', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),
  1675. ('c2d572bac11d6acfed59eca103abba55', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2239323366666532613264376233633464336165373962326139363231323934636166646463373666223b733a343a2274696d65223b693a313537383330313935303b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a31363a222f7363702f7469636b6574732e706870223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2264666265313232666638356536356530313365303663313835316338306661313a313537383330313935303a3638316263643964666530613764356334623433336165633062303866323066223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31303b733a323a227132223b643a333b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31303b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313537383330313935303b7d7d6c61737463726f6e63616c6c7c693a313537383133383830303b, '2020-01-07 04:12:30', NULL, '1', '182.74.131.154', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.13; rv:71.0) Gecko/20100101 Firefox/71.0'),
  1676. ('1a6f40a4881ac6228ff5195eb8fc5738', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2237363636643265393332643565393962626361663034323832313765663266386230376465663830223b733a343a2274696d65223b693a313537383230393830303b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b4e3b7d, '2020-01-06 02:36:40', NULL, '0', '103.217.231.149', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.88 Safari/537.36'),
  1677. ('79321a0b8c8f6c65f31510c6b96a27ea', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2231633938303332626532396463366430633736363235323862323334656337653433346435356239223b733a343a2274696d65223b693a313538303431323237303b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2265376331336137333038363565633533303163623362313031346265616235323a313538303431323237303a3662346230373535316435656630303661313462333161386136336661653263223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31303b733a323a227132223b643a333b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31303b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538303431323038373b7d7d6c61737463726f6e63616c6c7c693a313538303430383036333b, '2020-01-31 14:24:30', NULL, '1', '223.191.22.134', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1678. ('ef11a64bba3a7f4e53312538a47933ee', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2237313563313430336536366234353062323737643833613938386233663735386266313464613535223b733a343a2274696d65223b693a313538303431363036333b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2266313965343564326631616336326338386430626465666535663765373462373a313538303431363036333a3662346230373535316435656630303661313462333161386136336661653263223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31313b733a323a227132223b643a343b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31303b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538303431363033333b7d7d6c61737463726f6e63616c6c7c693a313538303431363033333b3a513a75736572737c433a383a225175657279536574223a3737313a7b613a31363a7b733a353a226d6f64656c223b733a343a2255736572223b733a31313a22636f6e73747261696e7473223b613a303a7b7d733a31363a22706174685f636f6e73747261696e7473223b613a303a7b7d733a383a226f72646572696e67223b613a313a7b693a303b733a343a226e616d65223b7d733a373a2272656c61746564223b623a303b733a363a2276616c756573223b613a373a7b733a323a226964223b733a323a226964223b733a343a226e616d65223b733a343a226e616d65223b733a32323a2264656661756c745f656d61696c5f5f61646472657373223b733a32323a2264656661756c745f656d61696c5f5f61646472657373223b733a31313a226163636f756e745f5f6964223b733a31313a226163636f756e745f5f6964223b733a31353a226163636f756e745f5f737461747573223b733a31353a226163636f756e745f5f737461747573223b733a373a2263726561746564223b733a373a2263726561746564223b733a373a2275706461746564223b733a373a2275706461746564223b7d733a353a226465666572223b613a303a7b7d733a31303a2261676772656761746564223b623a303b733a31313a22616e6e6f746174696f6e73223b613a313a7b733a31323a227469636b65745f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b733a373a227469636b657473223b733a383a2264697374696e6374223b623a303b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31323a227469636b65745f636f756e74223b7d7d733a353a226578747261223b613a303a7b7d733a383a2264697374696e6374223b613a303a7b7d733a343a226c6f636b223b623a303b733a353a22636861696e223b613a303a7b7d733a373a226f7074696f6e73223b613a303a7b7d733a343a2269746572223b693a323b733a383a22636f6d70696c6572223b733a31333a224d7953716c436f6d70696c6572223b7d7d3a553a7469636b6574737c433a383a225175657279536574223a343034303a7b613a31363a7b733a353a226d6f64656c223b733a363a225469636b6574223b733a31313a22636f6e73747261696e7473223b613a323a7b693a303b433a313a2251223a313032333a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a31333a227469636b65745f69645f5f696e223b433a383a225175657279536574223a3934393a7b613a31363a7b733a353a226d6f64656c223b733a363a225469636b6574223b733a31313a22636f6e73747261696e7473223b613a313a7b693a303b433a313a2251223a35313a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a373a22757365725f6964223b693a31313b7d7d7d7d733a31363a22706174685f636f6e73747261696e7473223b613a303a7b7d733a383a226f72646572696e67223b613a303a7b7d733a373a2272656c61746564223b623a303b733a363a2276616c756573223b613a313a7b693a303b733a393a227469636b65745f6964223b7d733a353a226465666572223b613a303a7b7d733a31303a2261676772656761746564223b623a303b733a31313a22616e6e6f746174696f6e73223b613a303a7b7d733a353a226578747261223b613a303a7b7d733a383a2264697374696e6374223b613a303a7b7d733a343a226c6f636b223b623a303b733a353a22636861696e223b613a313a7b693a303b613a323a7b693a303b433a383a225175657279536574223a3436353a7b613a31363a7b733a353a226d6f64656c223b733a363a225469636b6574223b733a31313a22636f6e73747261696e7473223b613a313a7b693a303b433a313a2251223a37353a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a33303a227468726561645f5f636f6c6c61626f7261746f72735f5f757365725f6964223b693a31313b7d7d7d7d733a31363a22706174685f636f6e73747261696e7473223b613a303a7b7d733a383a226f72646572696e67223b613a303a7b7d733a373a2272656c61746564223b623a303b733a363a2276616c756573223b613a313a7b693a303b733a393a227469636b65745f6964223b7d733a353a226465666572223b613a303a7b7d733a31303a2261676772656761746564223b623a303b733a31313a22616e6e6f746174696f6e73223b613a303a7b7d733a353a226578747261223b613a303a7b7d733a383a2264697374696e6374223b613a303a7b7d733a343a226c6f636b223b623a303b733a353a22636861696e223b613a303a7b7d733a373a226f7074696f6e73223b613a303a7b7d733a343a2269746572223b693a333b733a383a22636f6d70696c6572223b733a31333a224d7953716c436f6d70696c6572223b7d7d693a313b623a303b7d7d733a373a226f7074696f6e73223b613a303a7b7d733a343a2269746572223b693a333b733a383a22636f6d70696c6572223b733a31333a224d7953716c436f6d70696c6572223b7d7d7d7d7d693a313b433a313a2251223a3432383a7b613a333a7b693a303b693a303b693a313b693a323b693a323b613a323a7b693a303b433a313a2251223a3137383a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a323a7b733a31333a227374617475735f5f7374617465223b733a343a226f70656e223b693a303b433a313a2251223a39373a7b613a333a7b693a303b693a303b693a313b693a323b693a323b613a323a7b733a383a2273746166665f6964223b693a313b733a33343a227468726561645f5f726566657272616c735f5f6167656e745f5f73746166665f6964223b693a313b7d7d7d7d7d7d693a313b433a313a2251223a3138323a7b613a333a7b693a303b693a303b693a313b693a323b693a323b613a323a7b733a31313a22646570745f69645f5f696e223b613a353a7b693a303b693a313b693a313b693a333b693a323b693a343b693a333b693a353b693a343b693a383b7d733a33313a227468726561645f5f726566657272616c735f5f646570745f5f69645f5f696e223b613a353a7b693a303b693a313b693a313b693a333b693a323b693a343b693a333b693a353b693a343b693a383b7d7d7d7d7d7d7d7d733a31363a22706174685f636f6e73747261696e7473223b613a313a7b733a343a226c6f636b223b613a313a7b693a303b433a313a2251223a3133313a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a31363a226c6f636b5f5f6578706972655f5f6774223b4f3a31313a2253716c46756e6374696f6e223a333a7b733a353a22616c696173223b4e3b733a343a2266756e63223b733a333a224e4f57223b733a343a2261726773223b613a303a7b7d7d7d7d7d7d7d733a383a226f72646572696e67223b613a313a7b693a303b733a383a222d63726561746564223b7d733a373a2272656c61746564223b623a303b733a363a2276616c756573223b613a32313a7b733a383a2273746166665f6964223b733a383a2273746166665f6964223b733a31363a2273746166665f5f66697273746e616d65223b733a31363a2273746166665f5f66697273746e616d65223b733a31353a2273746166665f5f6c6173746e616d65223b733a31353a2273746166665f5f6c6173746e616d65223b733a31303a227465616d5f5f6e616d65223b733a31303a227465616d5f5f6e616d65223b733a373a227465616d5f6964223b733a373a227465616d5f6964223b733a31333a226c6f636b5f5f6c6f636b5f6964223b733a31333a226c6f636b5f5f6c6f636b5f6964223b733a31343a226c6f636b5f5f73746166665f6964223b733a31343a226c6f636b5f5f73746166665f6964223b733a393a2269736f766572647565223b733a393a2269736f766572647565223b733a393a227374617475735f6964223b733a393a227374617475735f6964223b733a31323a227374617475735f5f6e616d65223b733a31323a227374617475735f5f6e616d65223b733a31333a227374617475735f5f7374617465223b733a31333a227374617475735f5f7374617465223b733a363a226e756d626572223b733a363a226e756d626572223b733a31343a2263646174615f5f7375626a656374223b733a31343a2263646174615f5f7375626a656374223b733a393a227469636b65745f6964223b733a393a227469636b65745f6964223b733a363a22736f75726365223b733a363a22736f75726365223b733a373a22646570745f6964223b733a373a22646570745f6964223b733a31303a22646570745f5f6e616d65223b733a31303a22646570745f5f6e616d65223b733a373a22757365725f6964223b733a373a22757365725f6964223b733a32383a22757365725f5f64656661756c745f656d61696c5f5f61646472657373223b733a32383a22757365725f5f64656661756c745f656d61696c5f5f61646472657373223b733a31303a22757365725f5f6e616d65223b733a31303a22757365725f5f6e616d65223b733a31303a226c617374757064617465223b733a31303a226c617374757064617465223b7d733a353a226465666572223b613a303a7b7d733a31303a2261676772656761746564223b623a303b733a31313a22616e6e6f746174696f6e73223b613a333a7b733a31323a22636f6c6c61625f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b733a32313a227468726561645f5f636f6c6c61626f7261746f7273223b733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31323a22636f6c6c61625f636f756e74223b7d733a31363a226174746163686d656e745f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b4f3a373a2253716c43617365223a353a7b733a353a226361736573223b613a313a7b693a303b613a323a7b693a303b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a33363a227468726561645f5f656e74726965735f5f6174746163686d656e74735f5f696e6c696e65223b7d693a313b4e3b7d7d733a343a22656c7365223b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a32383a227468726561645f5f656e74726965735f5f6174746163686d656e7473223b7d733a353a22616c696173223b4e3b733a343a2266756e63223b733a343a2243415345223b733a343a2261726773223b613a303a7b7d7d733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31363a226174746163686d656e745f636f756e74223b7d733a31323a227468726561645f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b4f3a373a2253716c43617365223a353a7b733a353a226361736573223b613a313a7b693a303b613a323a7b693a303b433a313a2251223a37343a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a33303a227468726561645f5f656e74726965735f5f666c6167735f5f686173626974223b693a343b7d7d7d693a313b4e3b7d7d733a343a22656c7365223b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a31393a227468726561645f5f656e74726965735f5f6964223b7d733a353a22616c696173223b4e3b733a343a2266756e63223b733a343a2243415345223b733a343a2261726773223b613a303a7b7d7d733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31323a227468726561645f636f756e74223b7d7d733a353a226578747261223b613a303a7b7d733a383a2264697374696e6374223b613a313a7b693a303b733a393a227469636b65745f6964223b7d733a343a226c6f636b223b623a303b733a353a22636861696e223b613a303a7b7d733a373a226f7074696f6e73223b613a303a7b7d733a343a2269746572223b693a323b733a383a22636f6d70696c6572223b733a31333a224d7953716c436f6d70696c6572223b7d7d4578706f72743a51317c613a333a7b733a363a226669656c6473223b613a32323a7b693a303b733a363a226e756d626572223b693a313b733a373a2263726561746564223b693a323b733a31343a2263646174615f5f7375626a656374223b693a333b733a31303a22757365725f5f6e616d65223b693a343b733a32313a22757365725f5f656d61696c735f5f61646472657373223b693a353b733a31353a2263646174615f5f7072696f72697479223b693a363b733a373a22646570745f6964223b693a373b733a383a22746f7069635f6964223b693a383b733a363a22736f75726365223b693a393b733a31303a227374617475735f5f6964223b693a31303b733a31303a226c617374757064617465223b693a31313b733a31313a226573745f64756564617465223b693a31323b733a373a2264756564617465223b693a31333b733a363a22636c6f736564223b693a31343b733a393a2269736f766572647565223b693a31353b733a31303a226973616e737765726564223b693a31363b733a383a2273746166665f6964223b693a31373b733a373a227465616d5f6964223b693a31383b733a31323a227468726561645f636f756e74223b693a31393b733a31323a2272656f70656e5f636f756e74223b693a32303b733a31363a226174746163686d656e745f636f756e74223b693a32313b733a31353a2263646174615f5f6669656c645f3337223b7d733a383a2266696c656e616d65223b733a32373a224f70656e205469636b657473202d2032303230303133302e637376223b733a393a2264656c696d69746572223b4e3b7d3a3a513a417c733a303a22223b3a51413a3a736f72747c613a323a7b693a303b733a373a2263726561746564223b693a313b693a303b7d3a513a7461736b737c433a383a225175657279536574223a323438393a7b613a31363a7b733a353a226d6f64656c223b733a343a225461736b223b733a31313a22636f6e73747261696e7473223b613a323a7b693a303b433a313a2251223a3130363a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b693a303b433a313a2251223a35373a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a31333a22666c6167735f5f686173626974223b693a313b7d7d7d7d7d7d693a313b433a313a2251223a3430373a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b693a303b433a313a2251223a3335373a7b613a333a7b693a303b693a303b693a313b693a323b693a323b613a333a7b693a303b433a313a2251223a37363a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a323a7b733a31333a22666c6167735f5f686173626974223b693a313b733a383a2273746166665f6964223b693a313b7d7d7d693a313b433a313a2251223a3130303a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a323a7b733a31363a227469636b65745f5f73746166665f6964223b693a313b733a32313a227469636b65745f5f7374617475735f5f7374617465223b733a343a226f70656e223b7d7d7d693a323b433a313a2251223a39373a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a31313a22646570745f69645f5f696e223b613a353a7b693a303b693a313b693a313b693a333b693a323b693a343b693a333b693a353b693a343b693a383b7d7d7d7d7d7d7d7d7d7d7d733a31363a22706174685f636f6e73747261696e7473223b613a303a7b7d733a383a226f72646572696e67223b613a313a7b693a303b733a383a222d63726561746564223b7d733a373a2272656c61746564223b623a303b733a363a2276616c756573223b613a31313a7b733a323a226964223b733a323a226964223b733a363a226e756d626572223b733a363a226e756d626572223b733a373a2263726561746564223b733a373a2263726561746564223b733a383a2273746166665f6964223b733a383a2273746166665f6964223b733a373a227465616d5f6964223b733a373a227465616d5f6964223b733a31363a2273746166665f5f66697273746e616d65223b733a31363a2273746166665f5f66697273746e616d65223b733a31353a2273746166665f5f6c6173746e616d65223b733a31353a2273746166665f5f6c6173746e616d65223b733a31303a227465616d5f5f6e616d65223b733a31303a227465616d5f5f6e616d65223b733a31303a22646570745f5f6e616d65223b733a31303a22646570745f5f6e616d65223b733a31323a2263646174615f5f7469746c65223b733a31323a2263646174615f5f7469746c65223b733a353a22666c616773223b733a353a22666c616773223b7d733a353a226465666572223b613a303a7b7d733a31303a2261676772656761746564223b623a303b733a31313a22616e6e6f746174696f6e73223b613a333a7b733a31323a22636f6c6c61625f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b733a32313a227468726561645f5f636f6c6c61626f7261746f7273223b733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31323a22636f6c6c61625f636f756e74223b7d733a31363a226174746163686d656e745f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b4f3a373a2253716c43617365223a353a7b733a353a226361736573223b613a313a7b693a303b613a323a7b693a303b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a33363a227468726561645f5f656e74726965735f5f6174746163686d656e74735f5f696e6c696e65223b7d693a313b4e3b7d7d733a343a22656c7365223b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a32383a227468726561645f5f656e74726965735f5f6174746163686d656e7473223b7d733a353a22616c696173223b4e3b733a343a2266756e63223b733a343a2243415345223b733a343a2261726773223b613a303a7b7d7d733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31363a226174746163686d656e745f636f756e74223b7d733a31323a227468726561645f636f756e74223b4f3a31323a2253716c416767726567617465223a353a7b733a343a2266756e63223b733a353a22434f554e54223b733a343a2265787072223b4f3a373a2253716c43617365223a353a7b733a353a226361736573223b613a313a7b693a303b613a323a7b693a303b433a313a2251223a37343a7b613a333a7b693a303b693a303b693a313b693a303b693a323b613a313a7b733a33303a227468726561645f5f656e74726965735f5f666c6167735f5f686173626974223b693a343b7d7d7d693a313b4e3b7d7d733a343a22656c7365223b4f3a383a2253716c4669656c64223a353a7b733a353a226c6576656c223b693a303b733a383a226f70657261746f72223b4e3b733a383a226f706572616e6473223b4e3b733a353a22616c696173223b4e3b733a353a226669656c64223b733a31393a227468726561645f5f656e74726965735f5f6964223b7d733a353a22616c696173223b4e3b733a343a2266756e63223b733a343a2243415345223b733a343a2261726773223b613a303a7b7d7d733a383a2264697374696e6374223b623a313b733a31303a22636f6e73747261696e74223b623a303b733a353a22616c696173223b733a31323a227468726561645f636f756e74223b7d7d733a353a226578747261223b613a303a7b7d733a383a2264697374696e6374223b613a303a7b7d733a343a226c6f636b223b623a303b733a353a22636861696e223b613a303a7b7d733a373a226f7074696f6e73223b613a303a7b7d733a343a2269746572223b693a323b733a383a22636f6d70696c6572223b733a31333a224d7953716c436f6d70696c6572223b7d7d3a666f726d2d646174617c4e3b, '2020-01-31 15:27:43', NULL, '1', '223.191.22.134', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1679. ('1f0d33e0be77b29453f69baa5e6d218a', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2261343537656637303562383432646437353639366531373263633134613639643661333038656532223b733a343a2274696d65223b693a313538303535303431353b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a373a22737472696b6573223b693a363b733a31303a226c617374737472696b65223b693a313538303535303431353b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b4e3b7d, '2020-02-02 04:46:55', NULL, '0', '182.74.131.154', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1680. ('137e8ae4058a4284f51893fa6cd3db9f', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2230363333646338613332373739326234363564386234333234643562333032653539383461646537223b733a343a2274696d65223b693a313538303537343938343b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2232353435613262333936656165656535643535356239626233346638613365303a313538303537343938343a3832656264343034623061376139326233383063636430326263376164353732223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31313b733a323a227132223b643a343b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31313b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538303537343830313b7d7d6c61737463726f6e63616c6c7c693a313538303537333333373b, '2020-02-02 11:36:24', NULL, '1', '182.66.3.21', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1681. ('2d7f68ff339ff69b28994a109a258e55', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2231343239343361653630663861313233393035366137613031353462346531363864333634626163223b733a343a2274696d65223b693a313538303537343231373b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b4e3b7d, '2020-02-02 11:23:38', NULL, '0', '183.83.147.148', 'Mozilla/5.0 (Linux; Android 8.1.0; Moto G (5S) Plus) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.136 Mobile Safari/537.36'),
  1682. ('68acfa46562991158a9e4c53926aca1e', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2237613766376138383336333466326463643238626335313165666637373236633638616333656533223b733a343a2274696d65223b693a313538303833363939383b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a393a222f7363702f3f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2233303433366665616237636338393337333336663738626466373430396165353a313538303833363939383a3061336264373638643763653737366338356438396133326531633633366134223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31313b733a323a227132223b643a303b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31313b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538303833363939383b7d7d6c61737463726f6e63616c6c7c693a313538303833363731303b4578706f72743a51317c613a333a7b733a363a226669656c6473223b613a32323a7b693a303b733a363a226e756d626572223b693a313b733a373a2263726561746564223b693a323b733a31343a2263646174615f5f7375626a656374223b693a333b733a31303a22757365725f5f6e616d65223b693a343b733a32313a22757365725f5f656d61696c735f5f61646472657373223b693a353b733a31353a2263646174615f5f7072696f72697479223b693a363b733a373a22646570745f6964223b693a373b733a383a22746f7069635f6964223b693a383b733a363a22736f75726365223b693a393b733a31303a227374617475735f5f6964223b693a31303b733a31303a226c617374757064617465223b693a31313b733a31313a226573745f64756564617465223b693a31323b733a373a2264756564617465223b693a31333b733a363a22636c6f736564223b693a31343b733a393a2269736f766572647565223b693a31353b733a31303a226973616e737765726564223b693a31363b733a383a2273746166665f6964223b693a31373b733a373a227465616d5f6964223b693a31383b733a31323a227468726561645f636f756e74223b693a31393b733a31323a2272656f70656e5f636f756e74223b693a32303b733a31363a226174746163686d656e745f636f756e74223b693a32313b733a31353a2263646174615f5f6669656c645f3337223b7d733a383a2266696c656e616d65223b733a32373a224f70656e205469636b657473202d2032303230303230342e637376223b733a393a2264656c696d69746572223b4e3b7d6164767365617263687c613a313a7b733a31303a226c5741596b4b5942776b223b613a303a7b7d7d, '2020-02-05 12:23:19', NULL, '1', '182.66.62.31', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1683. ('04ba33748aa1a8053cd58550144dfcb0', 0x637372667c4e3b5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a32303a222f7363702f7469636b6574732e7068703f693d31223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d, '2020-02-12 02:53:22', NULL, '0', '182.74.131.154', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1684. ('b3db64324be5c7e314c862247c591031', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2264346361333837656234366337343139353666373032366130356636396464393634656564613636223b733a343a2274696d65223b693a313538313430373737383b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2261363261636630646132356234373632633862656637323164666266333862653a313538313430373737333a3638316263643964666530613764356334623433336165633062303866323066223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31313b733a323a227132223b643a303b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31313b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538313430373631303b7d7d6c61737463726f6e63616c6c7c693a313538313430373631303b, '2020-02-12 02:56:18', NULL, '1', '182.74.131.154', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/79.0.3945.130 Safari/537.36'),
  1685. ('7eb1db4793e5b9082598b2214d7110c8', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2234336666323631366637336163336434333533386564643735373931393537363134663331323930223b733a343a2274696d65223b693a313538343839363432353b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2237346261353436363930346162346536626366633432616135346335396138373a313538343839363432353a3663376237306131663233623362366466313461666263316266363731393432223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31313b733a323a227132223b643a303b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31313b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538343839363136343b7d7d6c61737463726f6e63616c6c7c693a313538343839363136343b, '2020-03-23 13:00:25', NULL, '1', '182.66.143.24', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),
  1686. ('71e63e4a1bfd6ecf8b5c5111f6218026', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2235336537326462386361656466383634343162393837343830333638653364366237623239353835223b733a343a2274696d65223b693a313538343930343433393b7d5f73746166667c613a313a7b733a343a2261757468223b613a323a7b733a343a2264657374223b733a353a222f7363702f223b733a333a226d7367223b733a32333a2241757468656e7469636174696f6e205265717569726564223b7d7d5f617574687c613a313a7b733a353a227374616666223b613a323a7b733a323a226964223b693a313b733a333a226b6579223b733a31303a226c6f63616c3a6e646173223b7d7d3a746f6b656e7c613a313a7b733a353a227374616666223b733a37363a2235366131353838616261643630383336623065333834633764306234623165343a313538343930343433333a3663376237306131663233623362366466313461666263316266363731393432223b7d3a3a513a547c693a313b736f72747c613a313a7b693a313b613a323a7b733a393a227175657565736f7274223b4f3a393a225175657565536f7274223a373a7b733a383a225f636f6c756d6e73223b613a323a7b733a31353a2263646174615f5f7072696f72697479223b623a313b733a31303a226c617374757064617465223b623a313b7d733a363a225f6578747261223b4e3b733a323a226874223b613a353a7b733a323a226964223b693a313b733a343a22726f6f74223b4e3b733a343a226e616d65223b733a33323a225072696f72697479202b204d6f737420526563656e746c792055706461746564223b733a373a22636f6c756d6e73223b733a33343a225b222d63646174615f5f7072696f72697479222c222d6c617374757064617465225d223b733a373a2275706461746564223b733a31393a22323031392d30392d32342030303a34363a3231223b7d733a353a226469727479223b613a303a7b7d733a373a225f5f6e65775f5f223b623a303b733a31313a225f5f64656c657465645f5f223b623a303b733a31323a225f5f64656665727265645f5f223b613a303a7b7d7d733a333a22646972223b693a303b7d7d6366673a636f72657c613a313a7b733a31313a2264625f74696d657a6f6e65223b733a31363a22416d65726963612f4e65775f596f726b223b7d71636f756e74737c613a313a7b733a34383a22636f756e74732e7175657565732e312e6e654b6b423861707161417a744677434d77436d4e7549576c4f4456623d7565223b613a323a7b733a363a22636f756e7473223b613a31343a7b733a323a227131223b643a31323b733a323a227132223b643a303b733a323a227136223b643a363b733a323a227139223b643a303b733a323a227133223b643a373b733a323a227137223b643a303b733a333a22713130223b643a303b733a323a227134223b643a31313b733a323a227135223b643a363b733a333a22713131223b643a303b733a323a227138223b643a333b733a333a22713132223b643a303b733a333a22713133223b643a303b733a333a22713134223b643a303b7d733a343a2274696d65223b693a313538343930343135313b7d7d6c61737463726f6e63616c6c7c693a313538343930343238383b3a666f726d2d646174617c4e3b3a3a6c616e677c4e3b4578706f72743a51317c613a333a7b733a363a226669656c6473223b613a32323a7b693a303b733a363a226e756d626572223b693a313b733a373a2263726561746564223b693a323b733a31343a2263646174615f5f7375626a656374223b693a333b733a31303a22757365725f5f6e616d65223b693a343b733a32313a22757365725f5f656d61696c735f5f61646472657373223b693a353b733a31353a2263646174615f5f7072696f72697479223b693a363b733a373a22646570745f6964223b693a373b733a383a22746f7069635f6964223b693a383b733a363a22736f75726365223b693a393b733a31303a227374617475735f5f6964223b693a31303b733a31303a226c617374757064617465223b693a31313b733a31313a226573745f64756564617465223b693a31323b733a373a2264756564617465223b693a31333b733a363a22636c6f736564223b693a31343b733a393a2269736f766572647565223b693a31353b733a31303a226973616e737765726564223b693a31363b733a383a2273746166665f6964223b693a31373b733a373a227465616d5f6964223b693a31383b733a31323a227468726561645f636f756e74223b693a31393b733a31323a2272656f70656e5f636f756e74223b693a32303b733a31363a226174746163686d656e745f636f756e74223b693a32313b733a31353a2263646174615f5f6669656c645f3337223b7d733a383a2266696c656e616d65223b733a32373a224f70656e205469636b657473202d2032303230303332322e637376223b733a393a2264656c696d69746572223b4e3b7d3a6d7367737c613a303a7b7d, '2020-03-23 15:13:59', NULL, '1', '182.66.143.24', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.132 Safari/537.36'),
  1687. ('26c31a058c48547a89edb37e2686b7b9', 0x637372667c613a323a7b733a353a22746f6b656e223b733a34303a2232376164653737393666623134636333643139616139373966376131303839613662333038356666223b733a343a2274696d65223b693a313538353534343538343b7d, '2020-03-31 01:03:04', NULL, '0', '103.217.231.52', 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.149 Safari/537.36');
  1688.  
  1689. -- --------------------------------------------------------
  1690.  
  1691. --
  1692. -- Table structure for table `ost_sla`
  1693. --
  1694.  
  1695. CREATE TABLE `ost_sla` (
  1696.   `id` int(11) UNSIGNED NOT NULL,
  1697.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '3',
  1698.   `grace_period` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1699.   `name` varchar(64) NOT NULL DEFAULT '',
  1700.   `notes` text,
  1701.   `created` datetime NOT NULL,
  1702.   `updated` datetime NOT NULL
  1703. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1704.  
  1705. --
  1706. -- Dumping data for table `ost_sla`
  1707. --
  1708.  
  1709. INSERT INTO `ost_sla` (`id`, `flags`, `grace_period`, `name`, `notes`, `created`, `updated`) VALUES
  1710. (1, 3, 48, 'Default SLA', NULL, '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  1711. (2, 9, 6, 'SLA for 6hrs', 'SLA FOR 6HRS.', '2019-09-24 02:22:56', '2019-09-24 02:22:56'),
  1712. (3, 9, 12, 'SLA for 12hrs', 'SLA FOR 12 HRS.', '2019-09-24 02:23:20', '2019-09-24 02:23:20'),
  1713. (4, 9, 24, 'SLA for 24hrs', 'SLA FOR 24 HRS.', '2019-09-24 02:23:42', '2019-09-24 02:23:42');
  1714.  
  1715. -- --------------------------------------------------------
  1716.  
  1717. --
  1718. -- Table structure for table `ost_staff`
  1719. --
  1720.  
  1721. CREATE TABLE `ost_staff` (
  1722.   `staff_id` int(11) UNSIGNED NOT NULL,
  1723.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1724.   `role_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1725.   `username` varchar(32) NOT NULL DEFAULT '',
  1726.   `firstname` varchar(32) DEFAULT NULL,
  1727.   `lastname` varchar(32) DEFAULT NULL,
  1728.   `passwd` varchar(128) DEFAULT NULL,
  1729.   `backend` varchar(32) DEFAULT NULL,
  1730.   `email` varchar(128) DEFAULT NULL,
  1731.   `phone` varchar(24) NOT NULL DEFAULT '',
  1732.   `phone_ext` varchar(6) DEFAULT NULL,
  1733.   `mobile` varchar(24) NOT NULL DEFAULT '',
  1734.   `signature` text NOT NULL,
  1735.   `lang` varchar(16) DEFAULT NULL,
  1736.   `timezone` varchar(64) DEFAULT NULL,
  1737.   `locale` varchar(16) DEFAULT NULL,
  1738.   `notes` text,
  1739.   `isactive` tinyint(1) NOT NULL DEFAULT '1',
  1740.   `isadmin` tinyint(1) NOT NULL DEFAULT '0',
  1741.   `isvisible` tinyint(1) UNSIGNED NOT NULL DEFAULT '1',
  1742.   `onvacation` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  1743.   `assigned_only` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  1744.   `show_assigned_tickets` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  1745.   `change_passwd` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  1746.   `max_page_size` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1747.   `auto_refresh_rate` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1748.   `default_signature_type` enum('none','mine','dept') NOT NULL DEFAULT 'none',
  1749.   `default_paper_size` enum('Letter','Legal','Ledger','A4','A3') NOT NULL DEFAULT 'Letter',
  1750.   `extra` text,
  1751.   `permissions` text,
  1752.   `created` datetime NOT NULL,
  1753.   `lastlogin` datetime DEFAULT NULL,
  1754.   `passwdreset` datetime DEFAULT NULL,
  1755.   `updated` datetime NOT NULL
  1756. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1757.  
  1758. --
  1759. -- Dumping data for table `ost_staff`
  1760. --
  1761.  
  1762. INSERT INTO `ost_staff` (`staff_id`, `dept_id`, `role_id`, `username`, `firstname`, `lastname`, `passwd`, `backend`, `email`, `phone`, `phone_ext`, `mobile`, `signature`, `lang`, `timezone`, `locale`, `notes`, `isactive`, `isadmin`, `isvisible`, `onvacation`, `assigned_only`, `show_assigned_tickets`, `change_passwd`, `max_page_size`, `auto_refresh_rate`, `default_signature_type`, `default_paper_size`, `extra`, `permissions`, `created`, `lastlogin`, `passwdreset`, `updated`) VALUES
  1763. (1, 1, 1, 'ndas', 'Naba', 'Das', '$2a$08$NDWuT2b1ZTUcqpGy8Rr3hOANtIqp9CM7RuZytWiw0p8uXg5e7.Fda', NULL, '[email protected]', '', NULL, '', '', NULL, 'Asia/Kolkata', 'en_IN', NULL, 1, 1, 1, 1, 0, 0, 0, 25, 3, 'none', 'Letter', '{\"browser_lang\":\"en_US\"}', '{\"user.create\":1,\"user.delete\":1,\"user.edit\":1,\"user.manage\":1,\"user.dir\":1,\"org.create\":1,\"org.delete\":1,\"org.edit\":1,\"faq.manage\":1,\"emails.banlist\":1}', '2019-09-24 00:46:24', '2020-03-22 14:37:41', '2019-09-24 00:46:24', '2020-03-22 14:40:24'),
  1764. (2, 4, 2, 'test', 'test', 'demo', '$2a$08$Gr25zkwhCUQPo5ll4By3iOGyv0tF2fzogJfdJ6ZGgVRp1FoRREPvW', NULL, '[email protected]', '', NULL, '', '', NULL, NULL, NULL, NULL, 1, 0, 0, 0, 0, 0, 0, 0, 0, 'none', 'Letter', '{\"def_assn_role\":true,\"browser_lang\":\"en_US\"}', '{\"faq.manage\":1,\"user.create\":1}', '2019-09-24 02:26:16', '2019-10-17 06:09:17', '2019-10-16 04:48:54', '2019-10-17 06:09:17'),
  1765. (3, 6, 2, 'niren.kaul', 'Niren', 'Kaul', '$2a$08$1yOZ3Jus/lq/Kp.ijIDna.ZLRFMeS8ZWhITRhydn8K3JsCog.0eom', NULL, '[email protected]', '', NULL, '', '', NULL, NULL, NULL, NULL, 1, 0, 0, 1, 0, 0, 0, 0, 0, 'none', 'Letter', '{\"def_assn_role\":true,\"browser_lang\":\"en_US\"}', '{\"faq.manage\":1,\"user.create\":1}', '2019-09-24 10:05:53', '2019-10-16 22:56:25', '2019-09-25 06:09:43', '2019-10-16 22:58:10'),
  1766. (4, 6, 4, 'trinayani.moitra', 'Trinayani', 'Moitra', '$2a$08$zopnwhG706VHyZo6xnT3wOLz7FlS.Scwe8CUrwACr2K.n.eJOz99W', NULL, '[email protected]', '033 66059700', '617', '', '', NULL, NULL, NULL, NULL, 1, 0, 0, 1, 0, 0, 0, 0, 0, 'none', 'Letter', '{\"def_assn_role\":true,\"browser_lang\":\"en_US\"}', '{\"faq.manage\":1}', '2019-09-25 05:44:43', '2019-10-14 06:54:41', '2019-10-11 17:24:56', '2019-10-14 06:54:41');
  1767.  
  1768. -- --------------------------------------------------------
  1769.  
  1770. --
  1771. -- Table structure for table `ost_staff_dept_access`
  1772. --
  1773.  
  1774. CREATE TABLE `ost_staff_dept_access` (
  1775.   `staff_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1776.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1777.   `role_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1778.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '1'
  1779. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1780.  
  1781. --
  1782. -- Dumping data for table `ost_staff_dept_access`
  1783. --
  1784.  
  1785. INSERT INTO `ost_staff_dept_access` (`staff_id`, `dept_id`, `role_id`, `flags`) VALUES
  1786. (1, 3, 1, 1),
  1787. (1, 4, 1, 1),
  1788. (1, 5, 1, 1),
  1789. (0, 4, 2, 1),
  1790. (0, 5, 2, 1),
  1791. (0, 3, 2, 1),
  1792. (0, 1, 2, 1),
  1793. (3, 4, 2, 1),
  1794. (3, 5, 2, 1),
  1795. (3, 3, 2, 1),
  1796. (3, 1, 2, 1),
  1797. (4, 4, 4, 1),
  1798. (4, 5, 4, 1),
  1799. (4, 3, 4, 1),
  1800. (4, 1, 4, 1);
  1801.  
  1802. -- --------------------------------------------------------
  1803.  
  1804. --
  1805. -- Table structure for table `ost_syslog`
  1806. --
  1807.  
  1808. CREATE TABLE `ost_syslog` (
  1809.   `log_id` int(11) UNSIGNED NOT NULL,
  1810.   `log_type` enum('Debug','Warning','Error') NOT NULL,
  1811.   `title` varchar(255) NOT NULL,
  1812.   `log` text NOT NULL,
  1813.   `logger` varchar(64) NOT NULL,
  1814.   `ip_address` varchar(64) NOT NULL,
  1815.   `created` datetime NOT NULL,
  1816.   `updated` datetime NOT NULL
  1817. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1818.  
  1819. --
  1820. -- Dumping data for table `ost_syslog`
  1821. --
  1822.  
  1823. INSERT INTO `ost_syslog` (`log_id`, `log_type`, `title`, `log`, `logger`, `ip_address`, `created`, `updated`) VALUES
  1824. (14, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737317) AND FROM_UNIXTIME(1580415717) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:21:57', '2020-01-30 15:21:57'),
  1825. (13, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737302) AND FROM_UNIXTIME(1580415702) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:21:42', '2020-01-30 15:21:42'),
  1826. (11, 'Warning', 'Failed agent login attempt (ndas)', 'Username: ndas IP: 182.74.131.154 Time: Dec 21, 2019, 10:46 am UTC Attempts: 3', '', '182.74.131.154', '2019-12-21 05:46:05', '2019-12-21 05:46:05'),
  1827. (12, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737302) AND FROM_UNIXTIME(1580415702) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:21:42', '2020-01-30 15:21:42'),
  1828. (15, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737317) AND FROM_UNIXTIME(1580415717) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:21:57', '2020-01-30 15:21:57'),
  1829. (16, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737323) AND FROM_UNIXTIME(1580415723) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:22:03', '2020-01-30 15:22:03'),
  1830. (17, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1577737323) AND FROM_UNIXTIME(1580415723) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '223.191.22.134', '2020-01-30 15:22:03', '2020-01-30 15:22:03'),
  1831. (18, 'Warning', 'Failed agent login attempt (ndas)', 'Username: ndas IP: 182.74.131.154 Time: Feb 1, 2020, 9:46 am UTC Attempts: 3', '', '182.74.131.154', '2020-02-01 04:46:23', '2020-02-01 04:46:23'),
  1832. (19, 'Warning', 'Excessive login attempts (nabad)', 'Excessive login attempts by an agent? Username: nabad IP: 182.74.131.154 Time: Feb 1, 2020, 9:46 am UTC Attempts: 5 Timeout: 2 minutes ', '', '182.74.131.154', '2020-02-01 04:46:44', '2020-02-01 04:46:44'),
  1833. (20, 'Warning', 'Excessive login attempts (nabad)', 'Excessive login attempts by an agent? Username: nabad IP: 182.74.131.154 Time: Feb 1, 2020, 9:46 am UTC Attempts: 6 Timeout: 2 minutes ', '', '182.74.131.154', '2020-02-01 04:46:55', '2020-02-01 04:46:55'),
  1834. (21, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396711) AND FROM_UNIXTIME(1584902311) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:38:31', '2020-03-22 14:38:31'),
  1835. (22, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396711) AND FROM_UNIXTIME(1584902311) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:38:31', '2020-03-22 14:38:31'),
  1836. (23, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396726) AND FROM_UNIXTIME(1584902326) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:38:46', '2020-03-22 14:38:46'),
  1837. (24, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396726) AND FROM_UNIXTIME(1584902326) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:38:46', '2020-03-22 14:38:46'),
  1838. (25, 'Error', 'DB Error #1146', '[SELECT DISTINCT(state) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396776) AND FROM_UNIXTIME(1584902376) ORDER BY 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT DISTINC...\')<br /> #1 (root)/include/ajax.reports.php(196): db_query(\'SELECT DISTINCT...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:39:36', '2020-03-22 14:39:36'),
  1839. (26, 'Error', 'DB Error #1146', '[SELECT state, DATE_FORMAT(timestamp, \'%Y-%m-%d\'), COUNT(ticket_id) FROM TICKET_EVENT_TABLE WHERE timestamp BETWEEN FROM_UNIXTIME(1582396776) AND FROM_UNIXTIME(1584902376) AND NOT annulled GROUP BY state, DATE_FORMAT(timestamp, \'%Y-%m-%d\') ORDER BY 2, 1] Table \'epiz_24514711_complain.TICKET_EVENT_TABLE\' doesn\'t exist<br /><br /> ---- Backtrace ----<br /> #0 (root)/include/mysqli.php(199): osTicket->logDBError(\'DB Error #1146\', \'[SELECT state, ...\')<br /> #1 (root)/include/ajax.reports.php(208): db_query(\'SELECT state, D...\')<br /> #2 (root)/include/class.dispatcher.php(145): OverviewReportAjaxAPI->getPlotData()<br /> #3 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'graph\', Array)<br /> #4 (root)/include/class.dispatcher.php(120): Dispatcher->resolve(\'graph\', Array)<br /> #5 (root)/include/class.dispatcher.php(38): UrlMatcher->dispatch(\'/report/overvie...\', NULL)<br /> #6 (root)/scp/ajax.php(289): Dispatcher->resolve(\'/report/overvie...\')<br /> #7 {main}', '', '182.66.143.24', '2020-03-22 14:39:36', '2020-03-22 14:39:36');
  1840.  
  1841. -- --------------------------------------------------------
  1842.  
  1843. --
  1844. -- Table structure for table `ost_task`
  1845. --
  1846.  
  1847. CREATE TABLE `ost_task` (
  1848.   `id` int(11) UNSIGNED NOT NULL,
  1849.   `object_id` int(11) NOT NULL DEFAULT '0',
  1850.   `object_type` char(1) NOT NULL,
  1851.   `number` varchar(20) DEFAULT NULL,
  1852.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1853.   `staff_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1854.   `team_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1855.   `lock_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1856.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1857.   `duedate` datetime DEFAULT NULL,
  1858.   `closed` datetime DEFAULT NULL,
  1859.   `created` datetime NOT NULL,
  1860.   `updated` datetime NOT NULL
  1861. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1862.  
  1863. -- --------------------------------------------------------
  1864.  
  1865. --
  1866. -- Table structure for table `ost_task__cdata`
  1867. --
  1868.  
  1869. CREATE TABLE `ost_task__cdata` (
  1870.   `task_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1871.   `title` mediumtext
  1872. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1873.  
  1874. -- --------------------------------------------------------
  1875.  
  1876. --
  1877. -- Table structure for table `ost_team`
  1878. --
  1879.  
  1880. CREATE TABLE `ost_team` (
  1881.   `team_id` int(10) UNSIGNED NOT NULL,
  1882.   `lead_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1883.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '1',
  1884.   `name` varchar(125) NOT NULL DEFAULT '',
  1885.   `notes` text,
  1886.   `created` datetime NOT NULL,
  1887.   `updated` datetime NOT NULL
  1888. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1889.  
  1890. --
  1891. -- Dumping data for table `ost_team`
  1892. --
  1893.  
  1894. INSERT INTO `ost_team` (`team_id`, `lead_id`, `flags`, `name`, `notes`, `created`, `updated`) VALUES
  1895. (1, 0, 1, 'Level I Support', 'Tier 1 support, responsible for the initial iteraction with customers', '2019-09-24 00:46:21', '2019-09-24 00:46:21'),
  1896. (2, 0, 1, 'Level II Support', 'Tier 2 support, responsible for the initial iteraction with customers', '2019-09-25 01:10:17', '2019-09-25 01:10:17'),
  1897. (3, 0, 1, 'Level III Support', 'Tier 3 support, responsible for the initial iteraction with customers', '2019-09-25 01:10:58', '2019-09-25 01:10:58');
  1898.  
  1899. -- --------------------------------------------------------
  1900.  
  1901. --
  1902. -- Table structure for table `ost_team_member`
  1903. --
  1904.  
  1905. CREATE TABLE `ost_team_member` (
  1906.   `team_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  1907.   `staff_id` int(10) UNSIGNED NOT NULL,
  1908.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0'
  1909. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1910.  
  1911. -- --------------------------------------------------------
  1912.  
  1913. --
  1914. -- Table structure for table `ost_thread`
  1915. --
  1916.  
  1917. CREATE TABLE `ost_thread` (
  1918.   `id` int(11) UNSIGNED NOT NULL,
  1919.   `object_id` int(11) UNSIGNED NOT NULL,
  1920.   `object_type` char(1) NOT NULL,
  1921.   `extra` text,
  1922.   `lastresponse` datetime DEFAULT NULL,
  1923.   `lastmessage` datetime DEFAULT NULL,
  1924.   `created` datetime NOT NULL
  1925. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1926.  
  1927. --
  1928. -- Dumping data for table `ost_thread`
  1929. --
  1930.  
  1931. INSERT INTO `ost_thread` (`id`, `object_id`, `object_type`, `extra`, `lastresponse`, `lastmessage`, `created`) VALUES
  1932. (1, 1, 'T', NULL, NULL, '2019-09-24 00:46:24', '2019-09-24 00:46:24'),
  1933. (2, 2, 'T', NULL, '2019-09-25 06:10:23', '2019-09-25 04:07:08', '2019-09-25 04:07:07'),
  1934. (3, 3, 'T', NULL, '2019-09-25 09:02:48', '2019-09-25 08:46:20', '2019-09-25 08:46:20'),
  1935. (4, 4, 'T', NULL, '2019-10-11 16:18:32', '2019-10-11 16:18:16', '2019-10-11 16:18:16'),
  1936. (5, 5, 'T', NULL, '2019-10-14 06:52:45', '2019-10-14 01:15:08', '2019-10-14 01:15:08'),
  1937. (6, 6, 'T', NULL, NULL, '2019-10-16 04:50:14', '2019-10-16 04:50:14'),
  1938. (7, 7, 'T', NULL, '2019-10-16 09:43:02', '2019-10-16 05:29:11', '2019-10-16 05:29:11'),
  1939. (8, 8, 'T', NULL, NULL, '2019-10-16 09:41:42', '2019-10-16 09:41:42'),
  1940. (9, 9, 'T', NULL, '2019-12-21 07:09:45', '2019-10-16 22:58:25', '2019-10-16 22:58:25'),
  1941. (10, 10, 'T', NULL, '2019-11-18 03:18:09', '2019-10-17 06:24:49', '2019-10-17 06:24:49'),
  1942. (11, 11, 'T', NULL, NULL, '2019-10-17 11:14:47', '2019-10-17 11:14:47'),
  1943. (12, 12, 'T', NULL, '2019-10-17 11:22:20', '2019-10-17 11:21:28', '2019-10-17 11:21:28'),
  1944. (13, 13, 'T', NULL, '2019-12-24 05:57:14', '2019-11-07 00:22:01', '2019-11-07 00:22:01'),
  1945. (14, 14, 'T', NULL, '2019-11-18 02:44:52', '2019-11-18 02:44:35', '2019-11-18 02:44:35'),
  1946. (15, 15, 'T', NULL, '2019-11-20 01:07:35', '2019-11-18 03:19:01', '2019-11-18 03:19:01'),
  1947. (16, 16, 'T', NULL, NULL, '2020-01-30 15:17:14', '2020-01-30 15:17:14'),
  1948. (17, 17, 'T', NULL, '2020-03-22 15:12:33', '2020-03-22 14:39:30', '2020-03-22 14:39:30');
  1949.  
  1950. -- --------------------------------------------------------
  1951.  
  1952. --
  1953. -- Table structure for table `ost_thread_collaborator`
  1954. --
  1955.  
  1956. CREATE TABLE `ost_thread_collaborator` (
  1957.   `id` int(11) UNSIGNED NOT NULL,
  1958.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '1',
  1959.   `thread_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1960.   `user_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1961.   `role` char(1) NOT NULL DEFAULT 'M',
  1962.   `created` datetime NOT NULL,
  1963.   `updated` datetime NOT NULL
  1964. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1965.  
  1966. -- --------------------------------------------------------
  1967.  
  1968. --
  1969. -- Table structure for table `ost_thread_entry`
  1970. --
  1971.  
  1972. CREATE TABLE `ost_thread_entry` (
  1973.   `id` int(11) UNSIGNED NOT NULL,
  1974.   `pid` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1975.   `thread_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1976.   `staff_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1977.   `user_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1978.   `type` char(1) NOT NULL DEFAULT '',
  1979.   `flags` int(11) UNSIGNED NOT NULL DEFAULT '0',
  1980.   `poster` varchar(128) NOT NULL DEFAULT '',
  1981.   `editor` int(10) UNSIGNED DEFAULT NULL,
  1982.   `editor_type` char(1) DEFAULT NULL,
  1983.   `source` varchar(32) NOT NULL DEFAULT '',
  1984.   `title` varchar(255) DEFAULT NULL,
  1985.   `body` text NOT NULL,
  1986.   `format` varchar(16) NOT NULL DEFAULT 'html',
  1987.   `ip_address` varchar(64) NOT NULL DEFAULT '',
  1988.   `recipients` text,
  1989.   `created` datetime NOT NULL,
  1990.   `updated` datetime NOT NULL
  1991. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  1992.  
  1993. --
  1994. -- Dumping data for table `ost_thread_entry`
  1995. --
  1996.  
  1997. INSERT INTO `ost_thread_entry` (`id`, `pid`, `thread_id`, `staff_id`, `user_id`, `type`, `flags`, `poster`, `editor`, `editor_type`, `source`, `title`, `body`, `format`, `ip_address`, `recipients`, `created`, `updated`) VALUES
  1998. (28, 16, 8, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'rwhtwrthwrthrwthrwthwrthwrthrthrwthwrthwrthwrthwrth<br />\'number\' => __(\'Task Number\'),<br /> \'created\' => __(\'Date Created\'),<br /> \'cdata.title\' => __(\'Title\'),<br /> \'dept::getLocalName\' => __(\'Department\'),<br /> \'::getStatus\' => __(\'Current Status\'),<br /> \'duedate\' => __(\'Due Date\'),<br /> \'staff::getName\' => __(\'Agent Assigned\'),<br /> \'team::getName\' => __(\'Team Assigned\'),<br /> \'thread_count\' => __(\'Thread Count\'),<br /> \'attachment_count\' => __(\'Attachment Count\'),<br /> ) + $cdata,', 'html', '182.74.131.154', '{\"to\":{\"9\":\"Niren Kaul <[email protected]>\"}}', '2019-12-21 07:09:45', '0000-00-00 00:00:00'),
  1999. (29, 21, 13, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'nbajsbngijadfiosadfijsojsdnfiouaenrwfijoansdfasd', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-12-24 05:57:14', '0000-00-00 00:00:00'),
  2000. (30, 0, 16, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'dfgzdfgzdfggzdfgzdf', 'html', '223.191.22.134', NULL, '2020-01-30 15:17:14', '0000-00-00 00:00:00'),
  2001. (2, 0, 2, 0, 3, 'M', 577, 'test', NULL, NULL, 'Phone', NULL, 'test', 'html', '182.74.131.154', '{\"to\":{\"3\":\"test <[email protected]>\"}}', '2019-09-25 04:07:08', '0000-00-00 00:00:00'),
  2002. (3, 2, 2, 1, 0, 'R', 580, 'Naba Das', NULL, NULL, '', NULL, 'Thanks', 'html', '182.74.131.154', '{\"to\":{\"3\":\"test <[email protected]>\"}}', '2019-09-25 04:11:25', '0000-00-00 00:00:00'),
  2003. (4, 3, 2, 1, 0, 'R', 578, 'Naba Das', 1, 'S', '', NULL, 'Thanks125512512512511', 'html', '182.74.131.154', NULL, '2019-09-25 04:11:25', '2019-09-25 04:36:11'),
  2004. (5, 2, 2, 3, 0, 'R', 576, 'Niren Kaul', NULL, NULL, '', NULL, 'thanjks', 'html', '182.74.131.154', '{\"to\":{\"3\":\"test <[email protected]>\"}}', '2019-09-25 06:10:23', '0000-00-00 00:00:00'),
  2005. (6, 0, 3, 0, 6, 'M', 577, 'Trinayani Moitra', NULL, NULL, 'Phone', NULL, 'test', 'html', '182.74.131.154', '{\"to\":{\"6\":\"Trinayani Moitra <[email protected]>\"}}', '2019-09-25 08:46:20', '0000-00-00 00:00:00'),
  2006. (7, 6, 3, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'thanks', 'html', '182.74.131.154', '{\"to\":{\"6\":\"Trinayani Moitra <[email protected]>\"}}', '2019-09-25 09:02:48', '0000-00-00 00:00:00'),
  2007. (8, 0, 4, 0, 6, 'M', 65, 'Trinayani Moitra', NULL, NULL, 'Phone', NULL, 'fff', 'html', '103.217.231.153', NULL, '2019-10-11 16:18:16', '0000-00-00 00:00:00'),
  2008. (9, 8, 4, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'th', 'html', '103.217.231.153', '{\"to\":{\"6\":\"Trinayani Moitra <[email protected]>\"}}', '2019-10-11 16:18:32', '0000-00-00 00:00:00'),
  2009. (10, 0, 5, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'ticket testing', 'html', '182.74.131.154', NULL, '2019-10-14 01:15:08', '0000-00-00 00:00:00'),
  2010. (11, 10, 5, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'jnSgbJKSBADbfgSDfAS', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-10-14 06:52:45', '0000-00-00 00:00:00'),
  2011. (12, 0, 6, 0, 8, 'M', 65, 'test demo', NULL, NULL, 'Phone', NULL, 'testmaile', 'html', '182.74.131.154', NULL, '2019-10-16 04:50:14', '0000-00-00 00:00:00'),
  2012. (13, 0, 7, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'test', 'html', '182.74.131.154', NULL, '2019-10-16 05:29:11', '0000-00-00 00:00:00'),
  2013. (14, 0, 8, 0, 8, 'M', 65, 'test demo', NULL, NULL, 'Phone', NULL, 'vbhnsghsfg', 'html', '182.74.131.154', NULL, '2019-10-16 09:41:42', '0000-00-00 00:00:00'),
  2014. (15, 13, 7, 2, 0, 'R', 576, 'test demo', NULL, NULL, '', NULL, 'thanks\';,pfm,gpmadfkmgvadmsfvadfs', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-10-16 09:43:02', '0000-00-00 00:00:00'),
  2015. (16, 0, 9, 0, 9, 'M', 65, 'Niren Kaul', NULL, NULL, 'Phone', NULL, 'SR2718274', 'html', '182.74.131.154', NULL, '2019-10-16 22:58:25', '0000-00-00 00:00:00'),
  2016. (17, 0, 10, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'CustomQueue::getHierarchicalQueues($thisstaff)', 'html', '182.74.131.154', NULL, '2019-10-17 06:24:49', '0000-00-00 00:00:00'),
  2017. (18, 0, 11, 0, 10, 'M', 65, 'Naba Das', NULL, NULL, '', NULL, 'test', 'html', '103.217.231.119', NULL, '2019-10-17 11:14:47', '0000-00-00 00:00:00'),
  2018. (19, 0, 12, 0, 11, 'M', 65, 'naba', NULL, NULL, '', NULL, 'test', 'html', '103.217.231.119', NULL, '2019-10-17 11:21:28', '0000-00-00 00:00:00'),
  2019. (20, 19, 12, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'thabfgbfgbsfgbsg', 'html', '103.217.231.119', '{\"to\":{\"11\":\"naba <[email protected]>\"}}', '2019-10-17 11:22:20', '0000-00-00 00:00:00'),
  2020. (21, 0, 13, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'hvbadfsuhbgvailsbdfiabnsdfvasd', 'html', '182.74.131.154', NULL, '2019-11-07 00:22:01', '0000-00-00 00:00:00'),
  2021. (22, 0, 14, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'adfgadsfgsdf', 'html', '182.74.131.154', NULL, '2019-11-18 02:44:35', '0000-00-00 00:00:00'),
  2022. (23, 22, 14, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'cgbxf', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-11-18 02:44:52', '0000-00-00 00:00:00'),
  2023. (24, 17, 10, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'hhh', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-11-18 03:18:09', '0000-00-00 00:00:00'),
  2024. (25, 0, 15, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'fgfgfg', 'html', '182.74.131.154', NULL, '2019-11-18 03:19:01', '0000-00-00 00:00:00'),
  2025. (26, 0, 15, 1, 0, 'N', 64, 'Naba Das', NULL, NULL, '', 'Ticket Source updated', 'dfsdf', 'html', '182.74.131.154', NULL, '2019-11-18 07:11:00', '0000-00-00 00:00:00'),
  2026. (27, 25, 15, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'tjuydtyjetyjetyjetyjetyjety', 'html', '182.74.131.154', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2019-11-20 01:07:35', '0000-00-00 00:00:00'),
  2027. (31, 0, 17, 0, 7, 'M', 65, 'Naba Das', NULL, NULL, 'Phone', NULL, 'dfvdfvdf', 'html', '182.66.143.24', NULL, '2020-03-22 14:39:30', '0000-00-00 00:00:00'),
  2028. (32, 31, 17, 1, 0, 'R', 576, 'Naba Das', NULL, NULL, '', NULL, 'c cx xc', 'html', '182.66.143.24', '{\"to\":{\"7\":\"Naba Das <[email protected]>\"}}', '2020-03-22 15:12:33', '0000-00-00 00:00:00');
  2029.  
  2030. -- --------------------------------------------------------
  2031.  
  2032. --
  2033. -- Table structure for table `ost_thread_entry_email`
  2034. --
  2035.  
  2036. CREATE TABLE `ost_thread_entry_email` (
  2037.   `id` int(11) UNSIGNED NOT NULL,
  2038.   `thread_entry_id` int(11) UNSIGNED NOT NULL,
  2039.   `mid` varchar(255) NOT NULL,
  2040.   `headers` text
  2041. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2042.  
  2043. -- --------------------------------------------------------
  2044.  
  2045. --
  2046. -- Table structure for table `ost_thread_event`
  2047. --
  2048.  
  2049. CREATE TABLE `ost_thread_event` (
  2050.   `id` int(10) UNSIGNED NOT NULL,
  2051.   `thread_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2052.   `event_id` int(11) UNSIGNED DEFAULT NULL,
  2053.   `staff_id` int(11) UNSIGNED NOT NULL,
  2054.   `team_id` int(11) UNSIGNED NOT NULL,
  2055.   `dept_id` int(11) UNSIGNED NOT NULL,
  2056.   `topic_id` int(11) UNSIGNED NOT NULL,
  2057.   `data` varchar(1024) DEFAULT NULL COMMENT 'Encoded differences',
  2058.   `username` varchar(128) NOT NULL DEFAULT 'SYSTEM',
  2059.   `uid` int(11) UNSIGNED DEFAULT NULL,
  2060.   `uid_type` char(1) NOT NULL DEFAULT 'S',
  2061.   `annulled` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  2062.   `timestamp` datetime NOT NULL
  2063. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2064.  
  2065. --
  2066. -- Dumping data for table `ost_thread_event`
  2067. --
  2068.  
  2069. INSERT INTO `ost_thread_event` (`id`, `thread_id`, `event_id`, `staff_id`, `team_id`, `dept_id`, `topic_id`, `data`, `username`, `uid`, `uid_type`, `annulled`, `timestamp`) VALUES
  2070. (1, 1, 1, 0, 0, 1, 1, NULL, 'SYSTEM', 1, 'U', 0, '2019-09-24 00:46:24'),
  2071. (2, 1, 14, 1, 0, 1, 1, NULL, 'ndas', 1, 'S', 0, '2019-09-24 01:27:47'),
  2072. (3, 2, 1, 1, 0, 5, 1, NULL, 'ndas', 1, 'S', 0, '2019-09-25 04:07:08'),
  2073. (4, 2, 14, 1, 0, 5, 1, NULL, 'ndas', 1, 'S', 0, '2019-09-25 06:24:07'),
  2074. (5, 3, 1, 1, 0, 3, 10, NULL, 'ndas', 1, 'S', 0, '2019-09-25 08:46:20'),
  2075. (6, 3, 2, 1, 0, 3, 10, '{\"status\":[2,\"Resolved\"]}', 'ndas', 1, 'S', 0, '2019-09-25 09:02:48'),
  2076. (7, 4, 1, 1, 0, 5, 2, NULL, 'ndas', 1, 'S', 0, '2019-10-11 16:18:16'),
  2077. (8, 4, 4, 1, 0, 5, 2, '{\"claim\":true}', 'ndas', 1, 'S', 0, '2019-10-11 16:18:16'),
  2078. (9, 4, 2, 1, 0, 5, 2, '{\"status\":[2,\"Resolved\"]}', 'ndas', 1, 'S', 0, '2019-10-11 16:18:32'),
  2079. (10, 5, 1, 1, 0, 3, 2, NULL, 'ndas', 1, 'S', 0, '2019-10-14 01:15:08'),
  2080. (11, 5, 8, 1, 0, 3, 2, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-14 14:29:24'),
  2081. (12, 6, 1, 2, 0, 3, 1, NULL, 'test', 2, 'S', 0, '2019-10-16 04:50:14'),
  2082. (13, 7, 1, 1, 0, 4, 1, NULL, 'ndas', 1, 'S', 0, '2019-10-16 05:29:11'),
  2083. (14, 8, 1, 2, 0, 1, 1, NULL, 'test', 2, 'S', 0, '2019-10-16 09:41:42'),
  2084. (15, 7, 8, 2, 0, 4, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-16 22:37:30'),
  2085. (16, 8, 8, 0, 0, 1, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-16 22:37:31'),
  2086. (17, 9, 1, 3, 0, 1, 1, NULL, 'niren.kaul', 3, 'S', 0, '2019-10-16 22:58:25'),
  2087. (18, 6, 8, 0, 0, 3, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-17 06:09:19'),
  2088. (19, 10, 1, 1, 0, 4, 1, NULL, 'ndas', 1, 'S', 0, '2019-10-17 06:24:49'),
  2089. (20, 11, 1, 0, 0, 1, 1, NULL, 'SYSTEM', 10, 'U', 0, '2019-10-17 11:14:47'),
  2090. (21, 9, 8, 0, 0, 1, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-17 11:17:34'),
  2091. (22, 12, 1, 0, 0, 1, 1, NULL, 'naba', 11, 'U', 0, '2019-10-17 11:21:28'),
  2092. (23, 10, 8, 0, 0, 4, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-22 13:31:43'),
  2093. (24, 11, 8, 0, 0, 1, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-22 13:31:44'),
  2094. (25, 12, 8, 1, 0, 1, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-10-22 13:31:44'),
  2095. (26, 13, 1, 1, 0, 3, 1, NULL, 'ndas', 1, 'S', 0, '2019-11-07 00:22:01'),
  2096. (27, 13, 8, 0, 0, 3, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-11-18 02:44:00'),
  2097. (28, 14, 1, 1, 0, 1, 1, NULL, 'ndas', 1, 'S', 0, '2019-11-18 02:44:35'),
  2098. (29, 10, 9, 1, 0, 4, 1, '{\"sla_id\":[3,2]}', 'ndas', 1, 'S', 0, '2019-11-18 03:17:31'),
  2099. (30, 10, 2, 1, 0, 4, 1, '{\"status\":[2,\"Resolved\"]}', 'ndas', 1, 'S', 0, '2019-11-18 03:18:09'),
  2100. (31, 15, 1, 1, 0, 5, 11, NULL, 'ndas', 1, 'S', 0, '2019-11-18 03:19:01'),
  2101. (32, 15, 9, 1, 0, 5, 11, '{\"source\":[\"Phone\",\"Email\"]}', 'ndas', 1, 'S', 0, '2019-11-18 07:11:00'),
  2102. (33, 15, 9, 1, 0, 5, 11, '{\"source\":[\"Email\",\"WhatsApp\"]}', 'ndas', 1, 'S', 0, '2019-11-18 07:18:27'),
  2103. (34, 14, 8, 1, 0, 1, 1, NULL, 'SYSTEM', NULL, 'S', 0, '2019-11-20 01:07:18'),
  2104. (35, 15, 8, 0, 0, 5, 11, NULL, 'SYSTEM', NULL, 'S', 0, '2019-11-20 01:07:18'),
  2105. (36, 16, 1, 1, 0, 4, 2, NULL, 'ndas', 1, 'S', 0, '2020-01-30 15:17:14'),
  2106. (37, 16, 8, 0, 0, 4, 2, NULL, 'SYSTEM', NULL, 'S', 0, '2020-02-01 11:08:57'),
  2107. (38, 17, 1, 1, 0, 4, 2, NULL, 'ndas', 1, 'S', 0, '2020-03-22 14:39:30');
  2108.  
  2109. -- --------------------------------------------------------
  2110.  
  2111. --
  2112. -- Table structure for table `ost_thread_referral`
  2113. --
  2114.  
  2115. CREATE TABLE `ost_thread_referral` (
  2116.   `id` int(10) UNSIGNED NOT NULL,
  2117.   `thread_id` int(11) UNSIGNED NOT NULL,
  2118.   `object_id` int(11) UNSIGNED NOT NULL,
  2119.   `object_type` char(1) NOT NULL,
  2120.   `created` datetime NOT NULL
  2121. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2122.  
  2123. -- --------------------------------------------------------
  2124.  
  2125. --
  2126. -- Table structure for table `ost_ticket`
  2127. --
  2128.  
  2129. CREATE TABLE `ost_ticket` (
  2130.   `ticket_id` int(11) UNSIGNED NOT NULL,
  2131.   `number` varchar(20) DEFAULT NULL,
  2132.   `user_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2133.   `user_email_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2134.   `status_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2135.   `dept_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2136.   `sla_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2137.   `topic_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2138.   `staff_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2139.   `team_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2140.   `email_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2141.   `lock_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2142.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2143.   `ip_address` varchar(64) NOT NULL DEFAULT '',
  2144.   `source` enum('Web','Email','Phone','WhatsApp','API','Other') NOT NULL DEFAULT 'Other',
  2145.   `source_extra` varchar(40) DEFAULT NULL,
  2146.   `isoverdue` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  2147.   `isanswered` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  2148.   `duedate` datetime DEFAULT NULL,
  2149.   `est_duedate` datetime DEFAULT NULL,
  2150.   `reopened` datetime DEFAULT NULL,
  2151.   `closed` datetime DEFAULT NULL,
  2152.   `lastupdate` datetime DEFAULT NULL,
  2153.   `created` datetime NOT NULL,
  2154.   `updated` datetime NOT NULL
  2155. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2156.  
  2157. --
  2158. -- Dumping data for table `ost_ticket`
  2159. --
  2160.  
  2161. INSERT INTO `ost_ticket` (`ticket_id`, `number`, `user_id`, `user_email_id`, `status_id`, `dept_id`, `sla_id`, `topic_id`, `staff_id`, `team_id`, `email_id`, `lock_id`, `flags`, `ip_address`, `source`, `source_extra`, `isoverdue`, `isanswered`, `duedate`, `est_duedate`, `reopened`, `closed`, `lastupdate`, `created`, `updated`) VALUES
  2162. (4, '495869065', 6, 0, 2, 5, 1, 2, 1, 0, 0, 0, 0, '103.217.231.153', 'Phone', NULL, 0, 1, NULL, '2019-10-13 16:18:16', NULL, '2019-10-11 16:18:32', '2019-10-11 16:18:32', '2019-10-11 16:18:16', '2019-10-11 16:18:32'),
  2163. (3, '374310394', 6, 0, 2, 3, 1, 10, 1, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 0, 1, NULL, '2019-09-27 08:46:20', NULL, '2019-09-25 09:02:48', '2019-09-25 09:02:48', '2019-09-25 08:46:20', '2019-09-25 09:02:50'),
  2164. (5, '256763430', 7, 0, 1, 3, 3, 2, 1, 0, 0, 9, 0, '182.74.131.154', 'Phone', NULL, 1, 1, NULL, '2019-10-14 13:15:08', NULL, NULL, '2019-10-14 01:15:08', '2019-10-14 01:15:08', '2019-10-14 14:29:24'),
  2165. (6, '221157794', 8, 0, 1, 3, 4, 1, 0, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 0, NULL, '2019-10-17 04:50:14', NULL, NULL, '2019-10-16 04:50:14', '2019-10-16 04:50:14', '2019-10-17 06:09:19'),
  2166. (7, '780559068', 7, 0, 1, 4, 3, 1, 2, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 1, NULL, '2019-10-16 17:29:11', NULL, NULL, '2019-10-16 05:29:11', '2019-10-16 05:29:11', '2019-10-16 22:37:30'),
  2167. (8, '283655000', 8, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 0, NULL, '2019-10-16 21:41:42', NULL, NULL, '2019-10-16 09:41:42', '2019-10-16 09:41:42', '2019-10-16 22:37:31'),
  2168. (9, '604535655', 9, 0, 1, 1, 3, 1, 1, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 1, NULL, '2019-10-17 10:58:25', NULL, NULL, '2019-10-16 22:58:25', '2019-10-16 22:58:25', '2019-12-21 07:09:45'),
  2169. (10, '483411811', 7, 0, 2, 4, 0, 1, 1, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 0, 1, NULL, '2019-10-17 12:24:49', NULL, '2019-11-18 03:18:09', '2019-11-18 03:18:09', '2019-10-17 06:24:49', '2019-11-18 03:18:09'),
  2170. (11, '552081071', 10, 0, 1, 1, 3, 1, 0, 0, 0, 0, 0, '103.217.231.119', 'Web', NULL, 1, 0, NULL, '2019-10-17 23:14:47', NULL, NULL, '2019-10-17 11:14:47', '2019-10-17 11:14:47', '2019-10-22 13:31:44'),
  2171. (12, '866453497', 11, 0, 1, 1, 3, 1, 1, 0, 0, 0, 0, '103.217.231.119', 'Web', NULL, 1, 1, NULL, '2019-10-17 23:21:28', NULL, NULL, '2019-10-17 11:21:28', '2019-10-17 11:21:28', '2019-10-22 13:31:44'),
  2172. (13, '333546224', 7, 0, 1, 3, 4, 1, 1, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 1, NULL, '2019-11-08 00:22:01', NULL, NULL, '2019-11-07 00:22:01', '2019-11-07 00:22:01', '2019-12-24 05:57:14'),
  2173. (14, '826991493', 7, 0, 1, 1, 3, 1, 1, 0, 0, 0, 0, '182.74.131.154', 'Phone', NULL, 1, 1, NULL, '2019-11-18 14:44:35', NULL, NULL, '2019-11-18 02:44:35', '2019-11-18 02:44:35', '2019-11-20 01:07:18'),
  2174. (15, '746828700', 7, 0, 1, 5, 3, 11, 1, 0, 0, 0, 0, '182.74.131.154', 'WhatsApp', NULL, 1, 1, NULL, '2019-11-18 15:19:01', NULL, NULL, '2019-11-18 07:18:27', '2019-11-18 03:19:01', '2019-11-20 01:07:35'),
  2175. (16, '643135915', 7, 0, 1, 4, 3, 2, 0, 0, 0, 0, 0, '223.191.22.134', 'Phone', NULL, 1, 0, NULL, '2020-01-31 03:17:14', NULL, NULL, '2020-01-30 15:17:14', '2020-01-30 15:17:14', '2020-02-01 11:08:57'),
  2176. (17, '835387633', 7, 0, 1, 4, 2, 2, 1, 0, 0, 0, 0, '182.66.143.24', 'Phone', NULL, 0, 1, NULL, '2020-03-22 20:39:30', NULL, NULL, '2020-03-22 14:39:30', '2020-03-22 14:39:30', '2020-03-22 15:12:33');
  2177.  
  2178. -- --------------------------------------------------------
  2179.  
  2180. --
  2181. -- Table structure for table `ost_ticket_priority`
  2182. --
  2183.  
  2184. CREATE TABLE `ost_ticket_priority` (
  2185.   `priority_id` tinyint(4) NOT NULL,
  2186.   `priority` varchar(60) NOT NULL DEFAULT '',
  2187.   `priority_desc` varchar(30) NOT NULL DEFAULT '',
  2188.   `priority_color` varchar(7) NOT NULL DEFAULT '',
  2189.   `priority_urgency` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
  2190.   `ispublic` tinyint(1) NOT NULL DEFAULT '1'
  2191. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2192.  
  2193. --
  2194. -- Dumping data for table `ost_ticket_priority`
  2195. --
  2196.  
  2197. INSERT INTO `ost_ticket_priority` (`priority_id`, `priority`, `priority_desc`, `priority_color`, `priority_urgency`, `ispublic`) VALUES
  2198. (1, 'low', 'Low', '#DDFFDD', 4, 1),
  2199. (2, 'normal', 'Normal', '#FFFFF0', 3, 1),
  2200. (3, 'high', 'High', '#FEE7E7', 2, 1),
  2201. (4, 'emergency', 'Emergency', '#FEE7E7', 1, 1);
  2202.  
  2203. -- --------------------------------------------------------
  2204.  
  2205. --
  2206. -- Table structure for table `ost_ticket_status`
  2207. --
  2208.  
  2209. CREATE TABLE `ost_ticket_status` (
  2210.   `id` int(11) NOT NULL,
  2211.   `name` varchar(60) NOT NULL DEFAULT '',
  2212.   `state` varchar(16) DEFAULT NULL,
  2213.   `mode` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2214.   `flags` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2215.   `sort` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2216.   `properties` text NOT NULL,
  2217.   `created` datetime NOT NULL,
  2218.   `updated` datetime NOT NULL
  2219. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2220.  
  2221. --
  2222. -- Dumping data for table `ost_ticket_status`
  2223. --
  2224.  
  2225. INSERT INTO `ost_ticket_status` (`id`, `name`, `state`, `mode`, `flags`, `sort`, `properties`, `created`, `updated`) VALUES
  2226. (1, 'Open', 'open', 3, 0, 1, '{\"description\":\"Open tickets.\"}', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  2227. (2, 'Resolved', 'closed', 1, 0, 2, '{\"allowreopen\":true,\"reopenstatus\":0,\"description\":\"Resolved tickets\"}', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  2228. (3, 'Closed', 'closed', 3, 0, 3, '{\"allowreopen\":true,\"reopenstatus\":0,\"description\":\"Closed tickets. Tickets will still be accessible on client and staff panels.\"}', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  2229. (4, 'Archived', 'archived', 3, 0, 4, '{\"description\":\"Tickets only adminstratively available but no longer accessible on ticket queues and client panel.\"}', '2019-09-24 00:46:21', '0000-00-00 00:00:00'),
  2230. (5, 'Deleted', 'deleted', 3, 0, 5, '{\"description\":\"Tickets queued for deletion. Not accessible on ticket queues.\"}', '2019-09-24 00:46:21', '0000-00-00 00:00:00');
  2231.  
  2232. -- --------------------------------------------------------
  2233.  
  2234. --
  2235. -- Table structure for table `ost_ticket__cdata`
  2236. --
  2237.  
  2238. CREATE TABLE `ost_ticket__cdata` (
  2239.   `ticket_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2240.   `subject` mediumtext,
  2241.   `priority` mediumtext,
  2242.   `field_37` mediumtext
  2243. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2244.  
  2245. --
  2246. -- Dumping data for table `ost_ticket__cdata`
  2247. --
  2248.  
  2249. INSERT INTO `ost_ticket__cdata` (`ticket_id`, `subject`, `priority`, `field_37`) VALUES
  2250. (3, 'test', '3', NULL),
  2251. (4, 'test', '1', NULL),
  2252. (5, 'ticket testing', '1', NULL),
  2253. (6, 'test mail', '2', NULL),
  2254. (7, 'test', '2', NULL),
  2255. (8, 'sfghsgsfghsfg', '2', NULL),
  2256. (9, 'SR2718274', '2', NULL),
  2257. (10, 'CustomQueue::getHierarchicalQueues($thisstaff)', '2', NULL),
  2258. (11, 'test', '2', NULL),
  2259. (12, 'test', '2', NULL),
  2260. (13, 'this is information', '2', 'tyest'),
  2261. (14, 'sdfgsdfgsdf', '2', ''),
  2262. (15, 'dvd', '3', 'fgfgfg'),
  2263. (16, 'zdfgzdfgz', '1', 'fdfgdfgdfgzdf'),
  2264. (17, 'dfvdf', '1', 'dfdfvdfvdfvdfvd');
  2265.  
  2266. -- --------------------------------------------------------
  2267.  
  2268. --
  2269. -- Table structure for table `ost_translation`
  2270. --
  2271.  
  2272. CREATE TABLE `ost_translation` (
  2273.   `id` int(11) UNSIGNED NOT NULL,
  2274.   `object_hash` char(16) CHARACTER SET ascii DEFAULT NULL,
  2275.   `type` enum('phrase','article','override') DEFAULT NULL,
  2276.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2277.   `revision` int(11) UNSIGNED DEFAULT NULL,
  2278.   `agent_id` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2279.   `lang` varchar(16) NOT NULL DEFAULT '',
  2280.   `text` mediumtext NOT NULL,
  2281.   `source_text` text,
  2282.   `updated` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP
  2283. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2284.  
  2285. -- --------------------------------------------------------
  2286.  
  2287. --
  2288. -- Table structure for table `ost_user`
  2289. --
  2290.  
  2291. CREATE TABLE `ost_user` (
  2292.   `id` int(10) UNSIGNED NOT NULL,
  2293.   `org_id` int(10) UNSIGNED NOT NULL,
  2294.   `default_email_id` int(10) NOT NULL,
  2295.   `status` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2296.   `name` varchar(128) NOT NULL,
  2297.   `created` datetime NOT NULL,
  2298.   `updated` datetime NOT NULL
  2299. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2300.  
  2301. --
  2302. -- Dumping data for table `ost_user`
  2303. --
  2304.  
  2305. INSERT INTO `ost_user` (`id`, `org_id`, `default_email_id`, `status`, `name`, `created`, `updated`) VALUES
  2306. (7, 0, 7, 0, 'Naba Das', '2019-10-14 01:15:08', '2019-10-14 01:15:08'),
  2307. (4, 2, 4, 0, 'Naba Das', '2019-09-25 07:39:40', '2019-09-25 07:39:40'),
  2308. (6, 2, 6, 0, 'Trinayani Moitra', '2019-09-25 07:40:34', '2019-09-25 07:40:34'),
  2309. (8, 0, 8, 0, 'test demo', '2019-10-16 04:50:14', '2019-10-16 04:50:14'),
  2310. (9, 0, 9, 0, 'Niren Kaul', '2019-10-16 22:58:25', '2019-10-16 22:58:25'),
  2311. (10, 0, 10, 0, 'Naba Das', '2019-10-17 11:14:47', '2019-10-17 11:14:47'),
  2312. (11, 0, 11, 0, 'naba', '2019-10-17 11:16:10', '2019-10-17 11:16:10');
  2313.  
  2314. -- --------------------------------------------------------
  2315.  
  2316. --
  2317. -- Table structure for table `ost_user_account`
  2318. --
  2319.  
  2320. CREATE TABLE `ost_user_account` (
  2321.   `id` int(11) UNSIGNED NOT NULL,
  2322.   `user_id` int(10) UNSIGNED NOT NULL,
  2323.   `status` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2324.   `timezone` varchar(64) DEFAULT NULL,
  2325.   `lang` varchar(16) DEFAULT NULL,
  2326.   `username` varchar(64) DEFAULT NULL,
  2327.   `passwd` varchar(128) CHARACTER SET ascii COLLATE ascii_bin DEFAULT NULL,
  2328.   `backend` varchar(32) DEFAULT NULL,
  2329.   `extra` text,
  2330.   `registered` timestamp NULL DEFAULT CURRENT_TIMESTAMP
  2331. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2332.  
  2333. --
  2334. -- Dumping data for table `ost_user_account`
  2335. --
  2336.  
  2337. INSERT INTO `ost_user_account` (`id`, `user_id`, `status`, `timezone`, `lang`, `username`, `passwd`, `backend`, `extra`, `registered`) VALUES
  2338. (1, 11, 1, 'Asia/Kolkata', NULL, 'ndas1', '$2a$08$lAeEAgmRehzI1Lfzx2YtzugvWZQdGnwS81j/wEsWnshgdrbXjvcja', NULL, '{\"browser_lang\":\"en_US\"}', '2019-10-17 15:16:10');
  2339.  
  2340. -- --------------------------------------------------------
  2341.  
  2342. --
  2343. -- Table structure for table `ost_user_email`
  2344. --
  2345.  
  2346. CREATE TABLE `ost_user_email` (
  2347.   `id` int(10) UNSIGNED NOT NULL,
  2348.   `user_id` int(10) UNSIGNED NOT NULL,
  2349.   `flags` int(10) UNSIGNED NOT NULL DEFAULT '0',
  2350.   `address` varchar(128) NOT NULL
  2351. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2352.  
  2353. --
  2354. -- Dumping data for table `ost_user_email`
  2355. --
  2356.  
  2357. INSERT INTO `ost_user_email` (`id`, `user_id`, `flags`, `address`) VALUES
  2358. (4, 4, 0, '[email protected]'),
  2359. (7, 7, 0, '[email protected]'),
  2360. (6, 6, 0, '[email protected]'),
  2361. (8, 8, 0, '[email protected]'),
  2362. (9, 9, 0, '[email protected]'),
  2363. (10, 10, 0, '[email protected]'),
  2364. (11, 11, 0, '[email protected]');
  2365.  
  2366. -- --------------------------------------------------------
  2367.  
  2368. --
  2369. -- Table structure for table `ost_user__cdata`
  2370. --
  2371.  
  2372. CREATE TABLE `ost_user__cdata` (
  2373.   `user_id` int(11) UNSIGNED NOT NULL DEFAULT '0',
  2374.   `email` mediumtext,
  2375.   `name` mediumtext,
  2376.   `phone` mediumtext,
  2377.   `notes` mediumtext,
  2378.   `field_38` mediumtext
  2379. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2380.  
  2381. --
  2382. -- Dumping data for table `ost_user__cdata`
  2383. --
  2384.  
  2385. INSERT INTO `ost_user__cdata` (`user_id`, `email`, `name`, `phone`, `notes`, `field_38`) VALUES
  2386. (4, NULL, NULL, '03366059700X720', NULL, NULL),
  2387. (6, NULL, NULL, '03366059700', NULL, ''),
  2388. (7, NULL, NULL, NULL, NULL, ''),
  2389. (8, NULL, NULL, NULL, NULL, NULL),
  2390. (9, NULL, NULL, NULL, NULL, NULL),
  2391. (10, NULL, NULL, '08697807050', NULL, NULL),
  2392. (11, NULL, NULL, NULL, NULL, NULL);
  2393.  
  2394. -- --------------------------------------------------------
  2395.  
  2396. --
  2397. -- Table structure for table `ost__search`
  2398. --
  2399.  
  2400. CREATE TABLE `ost__search` (
  2401.   `object_type` varchar(8) NOT NULL,
  2402.   `object_id` int(11) UNSIGNED NOT NULL,
  2403.   `title` text,
  2404.   `content` text
  2405. ) ENGINE=MyISAM DEFAULT CHARSET=utf8;
  2406.  
  2407. --
  2408. -- Dumping data for table `ost__search`
  2409. --
  2410.  
  2411. INSERT INTO `ost__search` (`object_type`, `object_id`, `title`, `content`) VALUES
  2412. ('H', 1, 'osTicket Installed!', 'Thank you for choosing osTicket. Please make sure you join the osTicket forums and our mailing list to stay up to date on the latest news, security alerts and updates. The osTicket forums are also a great place to get assistance, guidance, tips, and help from other osTicket users. In addition to the forums, the osTicket wiki provides a useful collection of educational materials, documentation, and notes from the community. We welcome your contributions to the osTicket community. If you are looking for a greater level of support, we provide professional services and commercial support with guaranteed response times, and access to the core development team. We can also help customize osTicket or even add new features to the system to meet your unique needs. If the idea of managing and upgrading this osTicket installation is daunting, you can try osTicket as a hosted service at http://www.supportsystem.com/ -- no installation required and we can import your data! With SupportSystem\'s turnkey infrastructure, you get osTicket at its best, leaving you free to focus on your customers without the burden of making sure the application is stable, maintained, and secure. Cheers, - osTicket Team http://osticket.com/ PS. Don\'t just make customers happy, make happy customers!'),
  2413. ('U', 6, 'Trinayani Moitra', ' [email protected]\[email protected]'),
  2414. ('O', 2, 'Suraksha Diagnostic Private Limited', 'DG-12/1, Action Area 1D, Premises no. 02-0327 Street no. 327, Newtown, Rajarhat Kolkata-700156, West\n03366059700 x720\nhttps://www.surakshanet.com'),
  2415. ('U', 4, 'Naba Das', ' [email protected]\[email protected]'),
  2416. ('H', 7, '', 'thanks'),
  2417. ('H', 8, '', 'fff'),
  2418. ('T', 4, '495869065 test', 'test'),
  2419. ('H', 2, '', 'test'),
  2420. ('H', 3, '', 'Thanks'),
  2421. ('H', 4, '', 'Thanks125512512512511'),
  2422. ('H', 5, '', 'thanjks'),
  2423. ('H', 6, '', 'test'),
  2424. ('T', 3, '374310394 test', 'test'),
  2425. ('H', 9, '', 'th'),
  2426. ('U', 7, 'Naba Das', ' [email protected]\[email protected]'),
  2427. ('H', 10, '', 'ticket testing'),
  2428. ('T', 5, '256763430 ticket testing', 'ticket testing'),
  2429. ('H', 11, '', 'jnSgbJKSBADbfgSDfAS'),
  2430. ('U', 8, 'test demo', ' [email protected]\[email protected]'),
  2431. ('H', 12, '', 'testmaile'),
  2432. ('T', 6, '221157794 test mail', 'test mail'),
  2433. ('H', 13, '', 'test'),
  2434. ('T', 7, '780559068 test', 'test'),
  2435. ('H', 14, '', 'vbhnsghsfg'),
  2436. ('T', 8, '283655000 sfghsgsfghsfg', 'sfghsgsfghsfg'),
  2437. ('H', 15, '', 'thanks\';,pfm,gpmadfkmgvadmsfvadfs'),
  2438. ('U', 9, 'Niren Kaul', ' [email protected]\[email protected]'),
  2439. ('H', 16, '', 'SR2718274'),
  2440. ('T', 9, '604535655 SR2718274', 'SR2718274'),
  2441. ('H', 17, '', 'CustomQueue::getHierarchicalQueues($thisstaff)'),
  2442. ('T', 10, '483411811 CustomQueue::getHierarchicalQueues($thisstaff)', 'CustomQueue::getHierarchicalQueues($thisstaff)'),
  2443. ('U', 10, 'Naba Das', ' [email protected]\[email protected]'),
  2444. ('H', 18, '', 'test'),
  2445. ('T', 11, '552081071 test', 'test'),
  2446. ('U', 11, 'naba', ' [email protected]\[email protected]'),
  2447. ('H', 19, '', 'test'),
  2448. ('T', 12, '866453497 test', 'test'),
  2449. ('H', 20, '', 'thabfgbfgbsfgbsg'),
  2450. ('H', 21, '', 'hvbadfsuhbgvailsbdfiabnsdfvasd'),
  2451. ('T', 13, '333546224 this is information', 'tyest\nthis is information'),
  2452. ('H', 22, '', 'adfgadsfgsdf'),
  2453. ('T', 14, '826991493 sdfgsdfgsdf', 'sdfgsdfgsdf'),
  2454. ('H', 23, '', 'cgbxf'),
  2455. ('H', 24, '', 'hhh'),
  2456. ('H', 25, '', 'fgfgfg'),
  2457. ('T', 15, '746828700 dvd', 'fgfgfg\ndvd'),
  2458. ('H', 26, 'Ticket Source updated', 'dfsdf'),
  2459. ('H', 27, '', 'tjuydtyjetyjetyjetyjetyjety'),
  2460. ('H', 28, '', 'rwhtwrthwrthrwthrwthwrthwrthrthrwthwrthwrthwrthwrth \'number\' => __(\'Task Number\'), \'created\' => __(\'Date Created\'), \'cdata.title\' => __(\'Title\'), \'dept::getLocalName\' => __(\'Department\'), \'::getStatus\' => __(\'Current Status\'), \'duedate\' => __(\'Due Date\'), \'staff::getName\' => __(\'Agent Assigned\'), \'team::getName\' => __(\'Team Assigned\'), \'thread_count\' => __(\'Thread Count\'), \'attachment_count\' => __(\'Attachment Count\'), ) + $cdata,'),
  2461. ('H', 29, '', 'nbajsbngijadfiosadfijsojsdnfiouaenrwfijoansdfasd'),
  2462. ('H', 30, '', 'dfgzdfgzdfggzdfgzdf'),
  2463. ('T', 16, '643135915 zdfgzdfgz', 'fdfgdfgdfgzdf\nzdfgzdfgz'),
  2464. ('H', 31, '', 'dfvdfvdf'),
  2465. ('T', 17, '835387633 dfvdf', 'dfdfvdfvdfvdfvd\ndfvdf'),
  2466. ('H', 32, '', 'c cx xc');
  2467.  
  2468. --
  2469. -- Indexes for dumped tables
  2470. --
  2471.  
  2472. --
  2473. -- Indexes for table `ost_api_key`
  2474. --
  2475. ALTER TABLE `ost_api_key`
  2476.   ADD PRIMARY KEY (`id`),
  2477.   ADD UNIQUE KEY `apikey` (`apikey`),
  2478.   ADD KEY `ipaddr` (`ipaddr`);
  2479.  
  2480. --
  2481. -- Indexes for table `ost_attachment`
  2482. --
  2483. ALTER TABLE `ost_attachment`
  2484.   ADD PRIMARY KEY (`id`),
  2485.   ADD UNIQUE KEY `file-type` (`object_id`,`file_id`,`type`),
  2486.   ADD UNIQUE KEY `file_object` (`file_id`,`object_id`);
  2487.  
  2488. --
  2489. -- Indexes for table `ost_canned_response`
  2490. --
  2491. ALTER TABLE `ost_canned_response`
  2492.   ADD PRIMARY KEY (`canned_id`),
  2493.   ADD UNIQUE KEY `title` (`title`),
  2494.   ADD KEY `dept_id` (`dept_id`),
  2495.   ADD KEY `active` (`isenabled`);
  2496.  
  2497. --
  2498. -- Indexes for table `ost_config`
  2499. --
  2500. ALTER TABLE `ost_config`
  2501.   ADD PRIMARY KEY (`id`),
  2502.   ADD UNIQUE KEY `namespace` (`namespace`,`key`);
  2503.  
  2504. --
  2505. -- Indexes for table `ost_content`
  2506. --
  2507. ALTER TABLE `ost_content`
  2508.   ADD PRIMARY KEY (`id`),
  2509.   ADD UNIQUE KEY `name` (`name`);
  2510.  
  2511. --
  2512. -- Indexes for table `ost_department`
  2513. --
  2514. ALTER TABLE `ost_department`
  2515.   ADD PRIMARY KEY (`id`),
  2516.   ADD UNIQUE KEY `name` (`name`,`pid`),
  2517.   ADD KEY `manager_id` (`manager_id`),
  2518.   ADD KEY `autoresp_email_id` (`autoresp_email_id`),
  2519.   ADD KEY `tpl_id` (`tpl_id`);
  2520.  
  2521. --
  2522. -- Indexes for table `ost_draft`
  2523. --
  2524. ALTER TABLE `ost_draft`
  2525.   ADD PRIMARY KEY (`id`);
  2526.  
  2527. --
  2528. -- Indexes for table `ost_email`
  2529. --
  2530. ALTER TABLE `ost_email`
  2531.   ADD PRIMARY KEY (`email_id`),
  2532.   ADD UNIQUE KEY `email` (`email`),
  2533.   ADD KEY `priority_id` (`priority_id`),
  2534.   ADD KEY `dept_id` (`dept_id`);
  2535.  
  2536. --
  2537. -- Indexes for table `ost_email_account`
  2538. --
  2539. ALTER TABLE `ost_email_account`
  2540.   ADD PRIMARY KEY (`id`);
  2541.  
  2542. --
  2543. -- Indexes for table `ost_email_template`
  2544. --
  2545. ALTER TABLE `ost_email_template`
  2546.   ADD PRIMARY KEY (`id`),
  2547.   ADD UNIQUE KEY `template_lookup` (`tpl_id`,`code_name`);
  2548.  
  2549. --
  2550. -- Indexes for table `ost_email_template_group`
  2551. --
  2552. ALTER TABLE `ost_email_template_group`
  2553.   ADD PRIMARY KEY (`tpl_id`);
  2554.  
  2555. --
  2556. -- Indexes for table `ost_event`
  2557. --
  2558. ALTER TABLE `ost_event`
  2559.   ADD PRIMARY KEY (`id`),
  2560.   ADD UNIQUE KEY `name` (`name`);
  2561.  
  2562. --
  2563. -- Indexes for table `ost_faq`
  2564. --
  2565. ALTER TABLE `ost_faq`
  2566.   ADD PRIMARY KEY (`faq_id`),
  2567.   ADD UNIQUE KEY `question` (`question`),
  2568.   ADD KEY `category_id` (`category_id`),
  2569.   ADD KEY `ispublished` (`ispublished`);
  2570.  
  2571. --
  2572. -- Indexes for table `ost_faq_category`
  2573. --
  2574. ALTER TABLE `ost_faq_category`
  2575.   ADD PRIMARY KEY (`category_id`),
  2576.   ADD KEY `ispublic` (`ispublic`);
  2577.  
  2578. --
  2579. -- Indexes for table `ost_faq_topic`
  2580. --
  2581. ALTER TABLE `ost_faq_topic`
  2582.   ADD PRIMARY KEY (`faq_id`,`topic_id`);
  2583.  
  2584. --
  2585. -- Indexes for table `ost_file`
  2586. --
  2587. ALTER TABLE `ost_file`
  2588.   ADD PRIMARY KEY (`id`),
  2589.   ADD KEY `ft` (`ft`),
  2590.   ADD KEY `key` (`key`),
  2591.   ADD KEY `signature` (`signature`);
  2592.  
  2593. --
  2594. -- Indexes for table `ost_file_chunk`
  2595. --
  2596. ALTER TABLE `ost_file_chunk`
  2597.   ADD PRIMARY KEY (`file_id`,`chunk_id`);
  2598.  
  2599. --
  2600. -- Indexes for table `ost_filter`
  2601. --
  2602. ALTER TABLE `ost_filter`
  2603.   ADD PRIMARY KEY (`id`),
  2604.   ADD KEY `target` (`target`),
  2605.   ADD KEY `email_id` (`email_id`);
  2606.  
  2607. --
  2608. -- Indexes for table `ost_filter_action`
  2609. --
  2610. ALTER TABLE `ost_filter_action`
  2611.   ADD PRIMARY KEY (`id`),
  2612.   ADD KEY `filter_id` (`filter_id`);
  2613.  
  2614. --
  2615. -- Indexes for table `ost_filter_rule`
  2616. --
  2617. ALTER TABLE `ost_filter_rule`
  2618.   ADD PRIMARY KEY (`id`),
  2619.   ADD UNIQUE KEY `filter` (`filter_id`,`what`,`how`,`val`),
  2620.   ADD KEY `filter_id` (`filter_id`);
  2621.  
  2622. --
  2623. -- Indexes for table `ost_form`
  2624. --
  2625. ALTER TABLE `ost_form`
  2626.   ADD PRIMARY KEY (`id`);
  2627.  
  2628. --
  2629. -- Indexes for table `ost_form_entry`
  2630. --
  2631. ALTER TABLE `ost_form_entry`
  2632.   ADD PRIMARY KEY (`id`),
  2633.   ADD KEY `entry_lookup` (`object_type`,`object_id`);
  2634.  
  2635. --
  2636. -- Indexes for table `ost_form_entry_values`
  2637. --
  2638. ALTER TABLE `ost_form_entry_values`
  2639.   ADD PRIMARY KEY (`entry_id`,`field_id`);
  2640.  
  2641. --
  2642. -- Indexes for table `ost_form_field`
  2643. --
  2644. ALTER TABLE `ost_form_field`
  2645.   ADD PRIMARY KEY (`id`);
  2646.  
  2647. --
  2648. -- Indexes for table `ost_group`
  2649. --
  2650. ALTER TABLE `ost_group`
  2651.   ADD PRIMARY KEY (`id`),
  2652.   ADD KEY `role_id` (`role_id`);
  2653.  
  2654. --
  2655. -- Indexes for table `ost_help_topic`
  2656. --
  2657. ALTER TABLE `ost_help_topic`
  2658.   ADD PRIMARY KEY (`topic_id`),
  2659.   ADD UNIQUE KEY `topic` (`topic`,`topic_pid`),
  2660.   ADD KEY `topic_pid` (`topic_pid`),
  2661.   ADD KEY `priority_id` (`priority_id`),
  2662.   ADD KEY `dept_id` (`dept_id`),
  2663.   ADD KEY `staff_id` (`staff_id`,`team_id`),
  2664.   ADD KEY `sla_id` (`sla_id`),
  2665.   ADD KEY `page_id` (`page_id`);
  2666.  
  2667. --
  2668. -- Indexes for table `ost_help_topic_form`
  2669. --
  2670. ALTER TABLE `ost_help_topic_form`
  2671.   ADD PRIMARY KEY (`id`),
  2672.   ADD KEY `topic-form` (`topic_id`,`form_id`);
  2673.  
  2674. --
  2675. -- Indexes for table `ost_list`
  2676. --
  2677. ALTER TABLE `ost_list`
  2678.   ADD PRIMARY KEY (`id`),
  2679.   ADD KEY `type` (`type`);
  2680.  
  2681. --
  2682. -- Indexes for table `ost_list_items`
  2683. --
  2684. ALTER TABLE `ost_list_items`
  2685.   ADD PRIMARY KEY (`id`),
  2686.   ADD KEY `list_item_lookup` (`list_id`);
  2687.  
  2688. --
  2689. -- Indexes for table `ost_lock`
  2690. --
  2691. ALTER TABLE `ost_lock`
  2692.   ADD PRIMARY KEY (`lock_id`),
  2693.   ADD KEY `staff_id` (`staff_id`);
  2694.  
  2695. --
  2696. -- Indexes for table `ost_note`
  2697. --
  2698. ALTER TABLE `ost_note`
  2699.   ADD PRIMARY KEY (`id`),
  2700.   ADD KEY `ext_id` (`ext_id`);
  2701.  
  2702. --
  2703. -- Indexes for table `ost_organization`
  2704. --
  2705. ALTER TABLE `ost_organization`
  2706.   ADD PRIMARY KEY (`id`);
  2707.  
  2708. --
  2709. -- Indexes for table `ost_organization__cdata`
  2710. --
  2711. ALTER TABLE `ost_organization__cdata`
  2712.   ADD PRIMARY KEY (`org_id`);
  2713.  
  2714. --
  2715. -- Indexes for table `ost_plugin`
  2716. --
  2717. ALTER TABLE `ost_plugin`
  2718.   ADD PRIMARY KEY (`id`);
  2719.  
  2720. --
  2721. -- Indexes for table `ost_queue`
  2722. --
  2723. ALTER TABLE `ost_queue`
  2724.   ADD PRIMARY KEY (`id`);
  2725.  
  2726. --
  2727. -- Indexes for table `ost_queue_column`
  2728. --
  2729. ALTER TABLE `ost_queue_column`
  2730.   ADD PRIMARY KEY (`id`);
  2731.  
  2732. --
  2733. -- Indexes for table `ost_queue_columns`
  2734. --
  2735. ALTER TABLE `ost_queue_columns`
  2736.   ADD PRIMARY KEY (`queue_id`,`column_id`,`staff_id`);
  2737.  
  2738. --
  2739. -- Indexes for table `ost_queue_config`
  2740. --
  2741. ALTER TABLE `ost_queue_config`
  2742.   ADD PRIMARY KEY (`queue_id`,`staff_id`);
  2743.  
  2744. --
  2745. -- Indexes for table `ost_queue_export`
  2746. --
  2747. ALTER TABLE `ost_queue_export`
  2748.   ADD PRIMARY KEY (`id`),
  2749.   ADD KEY `queue_id` (`queue_id`);
  2750.  
  2751. --
  2752. -- Indexes for table `ost_queue_sort`
  2753. --
  2754. ALTER TABLE `ost_queue_sort`
  2755.   ADD PRIMARY KEY (`id`);
  2756.  
  2757. --
  2758. -- Indexes for table `ost_queue_sorts`
  2759. --
  2760. ALTER TABLE `ost_queue_sorts`
  2761.   ADD PRIMARY KEY (`queue_id`,`sort_id`);
  2762.  
  2763. --
  2764. -- Indexes for table `ost_role`
  2765. --
  2766. ALTER TABLE `ost_role`
  2767.   ADD PRIMARY KEY (`id`),
  2768.   ADD UNIQUE KEY `name` (`name`);
  2769.  
  2770. --
  2771. -- Indexes for table `ost_sequence`
  2772. --
  2773. ALTER TABLE `ost_sequence`
  2774.   ADD PRIMARY KEY (`id`);
  2775.  
  2776. --
  2777. -- Indexes for table `ost_session`
  2778. --
  2779. ALTER TABLE `ost_session`
  2780.   ADD PRIMARY KEY (`session_id`),
  2781.   ADD KEY `updated` (`session_updated`),
  2782.   ADD KEY `user_id` (`user_id`);
  2783.  
  2784. --
  2785. -- Indexes for table `ost_sla`
  2786. --
  2787. ALTER TABLE `ost_sla`
  2788.   ADD PRIMARY KEY (`id`),
  2789.   ADD UNIQUE KEY `name` (`name`);
  2790.  
  2791. --
  2792. -- Indexes for table `ost_staff`
  2793. --
  2794. ALTER TABLE `ost_staff`
  2795.   ADD PRIMARY KEY (`staff_id`),
  2796.   ADD UNIQUE KEY `username` (`username`),
  2797.   ADD KEY `dept_id` (`dept_id`),
  2798.   ADD KEY `issuperuser` (`isadmin`);
  2799.  
  2800. --
  2801. -- Indexes for table `ost_staff_dept_access`
  2802. --
  2803. ALTER TABLE `ost_staff_dept_access`
  2804.   ADD PRIMARY KEY (`staff_id`,`dept_id`),
  2805.   ADD KEY `dept_id` (`dept_id`);
  2806.  
  2807. --
  2808. -- Indexes for table `ost_syslog`
  2809. --
  2810. ALTER TABLE `ost_syslog`
  2811.   ADD PRIMARY KEY (`log_id`),
  2812.   ADD KEY `log_type` (`log_type`);
  2813.  
  2814. --
  2815. -- Indexes for table `ost_task`
  2816. --
  2817. ALTER TABLE `ost_task`
  2818.   ADD PRIMARY KEY (`id`),
  2819.   ADD KEY `dept_id` (`dept_id`),
  2820.   ADD KEY `staff_id` (`staff_id`),
  2821.   ADD KEY `team_id` (`team_id`),
  2822.   ADD KEY `created` (`created`),
  2823.   ADD KEY `object` (`object_id`,`object_type`);
  2824.  
  2825. --
  2826. -- Indexes for table `ost_task__cdata`
  2827. --
  2828. ALTER TABLE `ost_task__cdata`
  2829.   ADD PRIMARY KEY (`task_id`);
  2830.  
  2831. --
  2832. -- Indexes for table `ost_team`
  2833. --
  2834. ALTER TABLE `ost_team`
  2835.   ADD PRIMARY KEY (`team_id`),
  2836.   ADD UNIQUE KEY `name` (`name`),
  2837.   ADD KEY `lead_id` (`lead_id`);
  2838.  
  2839. --
  2840. -- Indexes for table `ost_team_member`
  2841. --
  2842. ALTER TABLE `ost_team_member`
  2843.   ADD PRIMARY KEY (`team_id`,`staff_id`);
  2844.  
  2845. --
  2846. -- Indexes for table `ost_thread`
  2847. --
  2848. ALTER TABLE `ost_thread`
  2849.   ADD PRIMARY KEY (`id`),
  2850.   ADD KEY `object_id` (`object_id`),
  2851.   ADD KEY `object_type` (`object_type`);
  2852.  
  2853. --
  2854. -- Indexes for table `ost_thread_collaborator`
  2855. --
  2856. ALTER TABLE `ost_thread_collaborator`
  2857.   ADD PRIMARY KEY (`id`),
  2858.   ADD UNIQUE KEY `collab` (`thread_id`,`user_id`),
  2859.   ADD KEY `user_id` (`user_id`);
  2860.  
  2861. --
  2862. -- Indexes for table `ost_thread_entry`
  2863. --
  2864. ALTER TABLE `ost_thread_entry`
  2865.   ADD PRIMARY KEY (`id`),
  2866.   ADD KEY `pid` (`pid`),
  2867.   ADD KEY `thread_id` (`thread_id`),
  2868.   ADD KEY `staff_id` (`staff_id`),
  2869.   ADD KEY `type` (`type`);
  2870.  
  2871. --
  2872. -- Indexes for table `ost_thread_entry_email`
  2873. --
  2874. ALTER TABLE `ost_thread_entry_email`
  2875.   ADD PRIMARY KEY (`id`),
  2876.   ADD KEY `thread_entry_id` (`thread_entry_id`),
  2877.   ADD KEY `mid` (`mid`);
  2878.  
  2879. --
  2880. -- Indexes for table `ost_thread_event`
  2881. --
  2882. ALTER TABLE `ost_thread_event`
  2883.   ADD PRIMARY KEY (`id`),
  2884.   ADD KEY `ticket_state` (`thread_id`,`event_id`,`timestamp`),
  2885.   ADD KEY `ticket_stats` (`timestamp`,`event_id`);
  2886.  
  2887. --
  2888. -- Indexes for table `ost_thread_referral`
  2889. --
  2890. ALTER TABLE `ost_thread_referral`
  2891.   ADD PRIMARY KEY (`id`),
  2892.   ADD UNIQUE KEY `ref` (`object_id`,`object_type`,`thread_id`),
  2893.   ADD KEY `thread_id` (`thread_id`);
  2894.  
  2895. --
  2896. -- Indexes for table `ost_ticket`
  2897. --
  2898. ALTER TABLE `ost_ticket`
  2899.   ADD PRIMARY KEY (`ticket_id`),
  2900.   ADD KEY `user_id` (`user_id`),
  2901.   ADD KEY `dept_id` (`dept_id`),
  2902.   ADD KEY `staff_id` (`staff_id`),
  2903.   ADD KEY `team_id` (`team_id`),
  2904.   ADD KEY `status_id` (`status_id`),
  2905.   ADD KEY `created` (`created`),
  2906.   ADD KEY `closed` (`closed`),
  2907.   ADD KEY `duedate` (`duedate`),
  2908.   ADD KEY `topic_id` (`topic_id`),
  2909.   ADD KEY `sla_id` (`sla_id`);
  2910.  
  2911. --
  2912. -- Indexes for table `ost_ticket_priority`
  2913. --
  2914. ALTER TABLE `ost_ticket_priority`
  2915.   ADD PRIMARY KEY (`priority_id`),
  2916.   ADD UNIQUE KEY `priority` (`priority`),
  2917.   ADD KEY `priority_urgency` (`priority_urgency`),
  2918.   ADD KEY `ispublic` (`ispublic`);
  2919.  
  2920. --
  2921. -- Indexes for table `ost_ticket_status`
  2922. --
  2923. ALTER TABLE `ost_ticket_status`
  2924.   ADD PRIMARY KEY (`id`),
  2925.   ADD UNIQUE KEY `name` (`name`),
  2926.   ADD KEY `state` (`state`);
  2927.  
  2928. --
  2929. -- Indexes for table `ost_ticket__cdata`
  2930. --
  2931. ALTER TABLE `ost_ticket__cdata`
  2932.   ADD PRIMARY KEY (`ticket_id`);
  2933.  
  2934. --
  2935. -- Indexes for table `ost_translation`
  2936. --
  2937. ALTER TABLE `ost_translation`
  2938.   ADD PRIMARY KEY (`id`),
  2939.   ADD KEY `type` (`type`,`lang`),
  2940.   ADD KEY `object_hash` (`object_hash`);
  2941.  
  2942. --
  2943. -- Indexes for table `ost_user`
  2944. --
  2945. ALTER TABLE `ost_user`
  2946.   ADD PRIMARY KEY (`id`),
  2947.   ADD KEY `org_id` (`org_id`);
  2948.  
  2949. --
  2950. -- Indexes for table `ost_user_account`
  2951. --
  2952. ALTER TABLE `ost_user_account`
  2953.   ADD PRIMARY KEY (`id`),
  2954.   ADD UNIQUE KEY `username` (`username`),
  2955.   ADD KEY `user_id` (`user_id`);
  2956.  
  2957. --
  2958. -- Indexes for table `ost_user_email`
  2959. --
  2960. ALTER TABLE `ost_user_email`
  2961.   ADD PRIMARY KEY (`id`),
  2962.   ADD UNIQUE KEY `address` (`address`),
  2963.   ADD KEY `user_email_lookup` (`user_id`);
  2964.  
  2965. --
  2966. -- Indexes for table `ost_user__cdata`
  2967. --
  2968. ALTER TABLE `ost_user__cdata`
  2969.   ADD PRIMARY KEY (`user_id`);
  2970.  
  2971. --
  2972. -- Indexes for table `ost__search`
  2973. --
  2974. ALTER TABLE `ost__search`
  2975.   ADD PRIMARY KEY (`object_type`,`object_id`);
  2976. ALTER TABLE `ost__search` ADD FULLTEXT KEY `search` (`title`,`content`);
  2977.  
  2978. --
  2979. -- AUTO_INCREMENT for dumped tables
  2980. --
  2981.  
  2982. --
  2983. -- AUTO_INCREMENT for table `ost_api_key`
  2984. --
  2985. ALTER TABLE `ost_api_key`
  2986.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  2987.  
  2988. --
  2989. -- AUTO_INCREMENT for table `ost_attachment`
  2990. --
  2991. ALTER TABLE `ost_attachment`
  2992.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
  2993.  
  2994. --
  2995. -- AUTO_INCREMENT for table `ost_canned_response`
  2996. --
  2997. ALTER TABLE `ost_canned_response`
  2998.   MODIFY `canned_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
  2999.  
  3000. --
  3001. -- AUTO_INCREMENT for table `ost_config`
  3002. --
  3003. ALTER TABLE `ost_config`
  3004.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=143;
  3005.  
  3006. --
  3007. -- AUTO_INCREMENT for table `ost_content`
  3008. --
  3009. ALTER TABLE `ost_content`
  3010.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;
  3011.  
  3012. --
  3013. -- AUTO_INCREMENT for table `ost_department`
  3014. --
  3015. ALTER TABLE `ost_department`
  3016.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
  3017.  
  3018. --
  3019. -- AUTO_INCREMENT for table `ost_draft`
  3020. --
  3021. ALTER TABLE `ost_draft`
  3022.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  3023.  
  3024. --
  3025. -- AUTO_INCREMENT for table `ost_email`
  3026. --
  3027. ALTER TABLE `ost_email`
  3028.   MODIFY `email_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  3029.  
  3030. --
  3031. -- AUTO_INCREMENT for table `ost_email_account`
  3032. --
  3033. ALTER TABLE `ost_email_account`
  3034.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3035.  
  3036. --
  3037. -- AUTO_INCREMENT for table `ost_email_template`
  3038. --
  3039. ALTER TABLE `ost_email_template`
  3040.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=20;
  3041.  
  3042. --
  3043. -- AUTO_INCREMENT for table `ost_email_template_group`
  3044. --
  3045. ALTER TABLE `ost_email_template_group`
  3046.   MODIFY `tpl_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  3047.  
  3048. --
  3049. -- AUTO_INCREMENT for table `ost_event`
  3050. --
  3051. ALTER TABLE `ost_event`
  3052.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
  3053.  
  3054. --
  3055. -- AUTO_INCREMENT for table `ost_faq`
  3056. --
  3057. ALTER TABLE `ost_faq`
  3058.   MODIFY `faq_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
  3059.  
  3060. --
  3061. -- AUTO_INCREMENT for table `ost_faq_category`
  3062. --
  3063. ALTER TABLE `ost_faq_category`
  3064.   MODIFY `category_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
  3065.  
  3066. --
  3067. -- AUTO_INCREMENT for table `ost_file`
  3068. --
  3069. ALTER TABLE `ost_file`
  3070.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3071.  
  3072. --
  3073. -- AUTO_INCREMENT for table `ost_filter`
  3074. --
  3075. ALTER TABLE `ost_filter`
  3076.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  3077.  
  3078. --
  3079. -- AUTO_INCREMENT for table `ost_filter_action`
  3080. --
  3081. ALTER TABLE `ost_filter_action`
  3082.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3083.  
  3084. --
  3085. -- AUTO_INCREMENT for table `ost_filter_rule`
  3086. --
  3087. ALTER TABLE `ost_filter_rule`
  3088.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3089.  
  3090. --
  3091. -- AUTO_INCREMENT for table `ost_form`
  3092. --
  3093. ALTER TABLE `ost_form`
  3094.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;
  3095.  
  3096. --
  3097. -- AUTO_INCREMENT for table `ost_form_entry`
  3098. --
  3099. ALTER TABLE `ost_form_entry`
  3100.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32;
  3101.  
  3102. --
  3103. -- AUTO_INCREMENT for table `ost_form_field`
  3104. --
  3105. ALTER TABLE `ost_form_field`
  3106.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;
  3107.  
  3108. --
  3109. -- AUTO_INCREMENT for table `ost_group`
  3110. --
  3111. ALTER TABLE `ost_group`
  3112.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
  3113.  
  3114. --
  3115. -- AUTO_INCREMENT for table `ost_help_topic`
  3116. --
  3117. ALTER TABLE `ost_help_topic`
  3118.   MODIFY `topic_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
  3119.  
  3120. --
  3121. -- AUTO_INCREMENT for table `ost_help_topic_form`
  3122. --
  3123. ALTER TABLE `ost_help_topic_form`
  3124.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3125.  
  3126. --
  3127. -- AUTO_INCREMENT for table `ost_list`
  3128. --
  3129. ALTER TABLE `ost_list`
  3130.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  3131.  
  3132. --
  3133. -- AUTO_INCREMENT for table `ost_list_items`
  3134. --
  3135. ALTER TABLE `ost_list_items`
  3136.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3137.  
  3138. --
  3139. -- AUTO_INCREMENT for table `ost_lock`
  3140. --
  3141. ALTER TABLE `ost_lock`
  3142.   MODIFY `lock_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
  3143.  
  3144. --
  3145. -- AUTO_INCREMENT for table `ost_note`
  3146. --
  3147. ALTER TABLE `ost_note`
  3148.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3149.  
  3150. --
  3151. -- AUTO_INCREMENT for table `ost_organization`
  3152. --
  3153. ALTER TABLE `ost_organization`
  3154.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
  3155.  
  3156. --
  3157. -- AUTO_INCREMENT for table `ost_plugin`
  3158. --
  3159. ALTER TABLE `ost_plugin`
  3160.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3161.  
  3162. --
  3163. -- AUTO_INCREMENT for table `ost_queue`
  3164. --
  3165. ALTER TABLE `ost_queue`
  3166.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
  3167.  
  3168. --
  3169. -- AUTO_INCREMENT for table `ost_queue_column`
  3170. --
  3171. ALTER TABLE `ost_queue_column`
  3172.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
  3173.  
  3174. --
  3175. -- AUTO_INCREMENT for table `ost_queue_export`
  3176. --
  3177. ALTER TABLE `ost_queue_export`
  3178.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=90;
  3179.  
  3180. --
  3181. -- AUTO_INCREMENT for table `ost_queue_sort`
  3182. --
  3183. ALTER TABLE `ost_queue_sort`
  3184.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
  3185.  
  3186. --
  3187. -- AUTO_INCREMENT for table `ost_role`
  3188. --
  3189. ALTER TABLE `ost_role`
  3190.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3191.  
  3192. --
  3193. -- AUTO_INCREMENT for table `ost_sequence`
  3194. --
  3195. ALTER TABLE `ost_sequence`
  3196.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
  3197.  
  3198. --
  3199. -- AUTO_INCREMENT for table `ost_sla`
  3200. --
  3201. ALTER TABLE `ost_sla`
  3202.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3203.  
  3204. --
  3205. -- AUTO_INCREMENT for table `ost_staff`
  3206. --
  3207. ALTER TABLE `ost_staff`
  3208.   MODIFY `staff_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3209.  
  3210. --
  3211. -- AUTO_INCREMENT for table `ost_syslog`
  3212. --
  3213. ALTER TABLE `ost_syslog`
  3214.   MODIFY `log_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=27;
  3215.  
  3216. --
  3217. -- AUTO_INCREMENT for table `ost_task`
  3218. --
  3219. ALTER TABLE `ost_task`
  3220.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3221.  
  3222. --
  3223. -- AUTO_INCREMENT for table `ost_team`
  3224. --
  3225. ALTER TABLE `ost_team`
  3226.   MODIFY `team_id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
  3227.  
  3228. --
  3229. -- AUTO_INCREMENT for table `ost_thread`
  3230. --
  3231. ALTER TABLE `ost_thread`
  3232.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
  3233.  
  3234. --
  3235. -- AUTO_INCREMENT for table `ost_thread_collaborator`
  3236. --
  3237. ALTER TABLE `ost_thread_collaborator`
  3238.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3239.  
  3240. --
  3241. -- AUTO_INCREMENT for table `ost_thread_entry`
  3242. --
  3243. ALTER TABLE `ost_thread_entry`
  3244.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
  3245.  
  3246. --
  3247. -- AUTO_INCREMENT for table `ost_thread_entry_email`
  3248. --
  3249. ALTER TABLE `ost_thread_entry_email`
  3250.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3251.  
  3252. --
  3253. -- AUTO_INCREMENT for table `ost_thread_event`
  3254. --
  3255. ALTER TABLE `ost_thread_event`
  3256.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;
  3257.  
  3258. --
  3259. -- AUTO_INCREMENT for table `ost_thread_referral`
  3260. --
  3261. ALTER TABLE `ost_thread_referral`
  3262.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT;
  3263.  
  3264. --
  3265. -- AUTO_INCREMENT for table `ost_ticket`
  3266. --
  3267. ALTER TABLE `ost_ticket`
  3268.   MODIFY `ticket_id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
  3269.  
  3270. --
  3271. -- AUTO_INCREMENT for table `ost_ticket_priority`
  3272. --
  3273. ALTER TABLE `ost_ticket_priority`
  3274.   MODIFY `priority_id` tinyint(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
  3275.  
  3276. --
  3277. -- AUTO_INCREMENT for table `ost_ticket_status`
  3278. --
  3279. ALTER TABLE `ost_ticket_status`
  3280.   MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
  3281.  
  3282. --
  3283. -- AUTO_INCREMENT for table `ost_translation`
  3284. --
  3285. ALTER TABLE `ost_translation`
  3286.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT;
  3287.  
  3288. --
  3289. -- AUTO_INCREMENT for table `ost_user`
  3290. --
  3291. ALTER TABLE `ost_user`
  3292.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
  3293.  
  3294. --
  3295. -- AUTO_INCREMENT for table `ost_user_account`
  3296. --
  3297. ALTER TABLE `ost_user_account`
  3298.   MODIFY `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
  3299.  
  3300. --
  3301. -- AUTO_INCREMENT for table `ost_user_email`
  3302. --
  3303. ALTER TABLE `ost_user_email`
  3304.   MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
  3305. COMMIT;
  3306.  
  3307. /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
  3308. /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
  3309. /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
  3310.  

Editor

You can edit this paste and save as new:


File Description
  • test
  • Paste Code
  • 30 Mar-2020
  • 272.93 Kb
You can Share it: