-- phpMyAdmin SQL Dump -- version 5.2.2 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: May 01, 2026 at 02:14 PM -- Server version: 10.11.11-MariaDB -- PHP Version: 8.0.30 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `nnte_worksuiteerp` -- -- -------------------------------------------------------- -- -- Table structure for table `account_categories` -- CREATE TABLE `account_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `code` varchar(255) NOT NULL, `type` enum('assets','liabilities','equity','revenue','expenses') NOT NULL, `description` text DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `account_categories` -- INSERT INTO `account_categories` (`id`, `name`, `code`, `type`, `description`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Assets', 'AST', 'assets', 'Resources owned by the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 'Liabilities', 'LIB', 'liabilities', 'Debts and obligations of the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 'Equity', 'EQT', 'equity', 'Owner\'s equity in the company', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 'Revenue', 'REV', 'revenue', 'Income generated from business operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 'Expenses', 'EXP', 'expenses', 'Costs incurred in business operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 'Assets', 'AST', 'assets', 'Resources owned by the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (7, 'Liabilities', 'LIB', 'liabilities', 'Debts and obligations of the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (8, 'Equity', 'EQT', 'equity', 'Owner\'s equity in the company', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (9, 'Revenue', 'REV', 'revenue', 'Income generated from business operations', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (10, 'Expenses', 'EXP', 'expenses', 'Costs incurred in business operations', 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); -- -------------------------------------------------------- -- -- Table structure for table `account_types` -- CREATE TABLE `account_types` ( `id` bigint(20) UNSIGNED NOT NULL, `category_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `code` varchar(255) NOT NULL, `normal_balance` enum('debit','credit') NOT NULL, `description` text DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_system_type` tinyint(1) NOT NULL DEFAULT 0, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `account_types` -- INSERT INTO `account_types` (`id`, `category_id`, `name`, `code`, `normal_balance`, `description`, `is_active`, `is_system_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 'Current Assets', 'CA', 'debit', 'Assets expected to be converted to cash within one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 1, 'Fixed Assets', 'FA', 'debit', 'Long-term tangible assets', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 1, 'Other Assets', 'OA', 'debit', 'Other miscellaneous assets', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 2, 'Current Liabilities', 'CL', 'credit', 'Debts due within one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 2, 'Long-term Liabilities', 'LTL', 'credit', 'Debts due after one year', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 3, 'Share Capital', 'SC', 'credit', 'Owner\'s investment in the business', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 3, 'Retained Earnings', 'RE', 'credit', 'Accumulated profits retained in business', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 4, 'Sales Revenue', 'SR', 'credit', 'Income from sales of goods or services', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 4, 'Other Income', 'OI', 'credit', 'Miscellaneous income', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 5, 'Cost of Goods Sold', 'COGS', 'debit', 'Direct costs of producing goods sold', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 5, 'Operating Expenses', 'OE', 'debit', 'Expenses from normal business operations', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 5, 'Administrative Expenses', 'AE', 'debit', 'General administrative costs', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 5, 'Financial Expenses', 'FE', 'debit', 'Interest and financial costs', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 5, 'Tax Expenses', 'TE', 'debit', 'Tax-related expenses', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 5, 'Other Expenses', 'OX', 'debit', 'Miscellaneous expenses', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (16, 6, 'Current Assets', 'CA', 'debit', 'Assets expected to be converted to cash within one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (17, 6, 'Fixed Assets', 'FA', 'debit', 'Long-term tangible assets', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (18, 6, 'Other Assets', 'OA', 'debit', 'Other miscellaneous assets', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (19, 7, 'Current Liabilities', 'CL', 'credit', 'Debts due within one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (20, 7, 'Long-term Liabilities', 'LTL', 'credit', 'Debts due after one year', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (21, 8, 'Share Capital', 'SC', 'credit', 'Owner\'s investment in the business', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (22, 8, 'Retained Earnings', 'RE', 'credit', 'Accumulated profits retained in business', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (23, 9, 'Sales Revenue', 'SR', 'credit', 'Income from sales of goods or services', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (24, 9, 'Other Income', 'OI', 'credit', 'Miscellaneous income', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (25, 10, 'Cost of Goods Sold', 'COGS', 'debit', 'Direct costs of producing goods sold', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (26, 10, 'Operating Expenses', 'OE', 'debit', 'Expenses from normal business operations', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (27, 10, 'Administrative Expenses', 'AE', 'debit', 'General administrative costs', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (28, 10, 'Financial Expenses', 'FE', 'debit', 'Interest and financial costs', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (29, 10, 'Tax Expenses', 'TE', 'debit', 'Tax-related expenses', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (30, 10, 'Other Expenses', 'OX', 'debit', 'Miscellaneous expenses', 1, 1, 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); -- -------------------------------------------------------- -- -- Table structure for table `acknowledgments` -- CREATE TABLE `acknowledgments` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `document_id` bigint(20) UNSIGNED DEFAULT NULL, `status` enum('pending','acknowledged') NOT NULL DEFAULT 'pending', `acknowledgment_note` text DEFAULT NULL, `acknowledged_at` timestamp NULL DEFAULT NULL, `assigned_by` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `acknowledgments` -- INSERT INTO `acknowledgments` (`id`, `employee_id`, `document_id`, `status`, `acknowledgment_note`, `acknowledged_at`, `assigned_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 8, 1, 'acknowledged', 'I have thoroughly reviewed and understood all company policies outlined in the employee handbook document.', '2025-09-21 19:50:49', 10, 2, 2, '2025-09-20 09:32:49', '2025-09-21 19:50:49'), (2, 10, 2, 'acknowledged', 'Safety guidelines and emergency procedures have been carefully read and acknowledged for workplace compliance.', '2025-09-25 17:02:49', 12, 2, 2, '2025-09-25 10:47:49', '2025-09-25 17:02:49'), (3, 12, 3, 'pending', 'Currently reviewing the leave application procedures and will provide acknowledgment within the specified timeframe.', NULL, 14, 2, 2, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), (4, 14, 4, 'acknowledged', 'Performance review guidelines are clear and comprehensive, providing excellent framework for evaluation processes.', '2025-10-06 18:44:49', 16, 2, 2, '2025-10-05 11:37:49', '2025-10-06 18:44:49'), (5, 16, 5, 'pending', 'Workplace safety manual requires additional clarification on section three regarding emergency evacuation procedures.', NULL, 18, 2, 2, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), (6, 18, 6, 'acknowledged', 'Expense reimbursement policy has been reviewed and all procedures are understood for future claims.', '2025-10-17 07:57:49', 20, 2, 2, '2025-10-15 15:52:49', '2025-10-17 07:57:49'), (7, 20, 7, 'acknowledged', 'Remote work agreement terms are acceptable and I commit to maintaining productivity standards.', '2025-10-21 03:27:49', 22, 2, 2, '2025-10-20 09:07:49', '2025-10-21 03:27:49'), (8, 22, 8, 'pending', 'New employee onboarding materials are being reviewed and acknowledgment will be provided shortly.', NULL, 24, 2, 2, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), (9, 24, 9, 'acknowledged', 'IT security procedures are comprehensive and I understand all password and data protection requirements.', '2025-11-01 16:54:49', 26, 2, 2, '2025-10-30 16:57:49', '2025-11-01 16:54:49'), (10, 26, 10, 'acknowledged', 'Benefits enrollment guide provides clear instructions for health insurance and retirement plan selections.', '2025-11-05 06:14:49', 8, 2, 2, '2025-11-04 10:12:49', '2025-11-05 06:14:49'), (11, 8, 11, 'acknowledged', 'Disciplinary action policy framework is well-structured and provides fair progressive discipline procedures.', '2025-11-09 21:23:49', 10, 2, 2, '2025-11-09 11:32:49', '2025-11-09 21:23:49'), (12, 10, 12, 'pending', 'Training development plan requires more time for thorough review of career advancement pathways.', NULL, 12, 2, 2, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), (13, 12, 13, 'acknowledged', 'Emergency response protocol is detailed and covers all necessary safety procedures for workplace incidents.', '2025-11-20 17:20:49', 14, 2, 2, '2025-11-19 11:02:49', '2025-11-20 17:20:49'), (14, 14, 14, 'pending', 'Confidentiality agreement terms need legal review before providing final acknowledgment and acceptance.', NULL, 16, 2, 2, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), (15, 16, 15, 'acknowledged', 'Payroll processing manual is comprehensive and clearly explains salary calculations and deduction procedures.', '2025-12-01 04:08:49', 18, 2, 2, '2025-11-29 15:27:49', '2025-12-01 04:08:49'), (16, 18, 16, 'pending', 'Quality assurance standards document is extensive and requires additional time for complete understanding.', NULL, 20, 2, 2, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), (17, 20, 17, 'acknowledged', 'Travel expense policy guidelines are clear and provide excellent framework for business trip reimbursements.', '2025-12-11 06:08:49', 22, 2, 2, '2025-12-09 13:07:49', '2025-12-11 06:08:49'), (18, 22, 18, 'pending', 'Performance improvement plan template needs discussion with supervisor before final acknowledgment can be provided.', NULL, 24, 2, 2, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), (19, 24, 19, 'acknowledged', 'Equipment usage agreement terms are reasonable and I accept responsibility for company property care.', '2025-12-20 08:28:49', 26, 2, 2, '2025-12-19 09:57:49', '2025-12-20 08:28:49'), (20, 26, 20, 'pending', 'Health insurance enrollment options require consultation with family before making final benefit selections.', NULL, 8, 2, 2, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), (21, 8, 21, 'acknowledged', 'Workplace harassment policy is comprehensive and provides clear reporting procedures for incident management.', '2025-12-31 14:24:49', 10, 2, 2, '2025-12-29 14:32:49', '2025-12-31 14:24:49'), (22, 10, 22, 'pending', 'Professional development fund guidelines need clarification regarding conference attendance approval processes and procedures.', NULL, 12, 2, 2, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), (23, 12, 23, 'acknowledged', 'Data protection guidelines are thorough and I understand all compliance requirements for information security.', '2026-01-09 12:08:49', 14, 2, 2, '2026-01-08 14:02:49', '2026-01-09 12:08:49'), (24, 14, 24, 'acknowledged', 'Flexible work schedule policy provides excellent work-life balance options with clear core hours requirements.', '2026-01-14 07:49:49', 16, 2, 2, '2026-01-13 15:37:49', '2026-01-14 07:49:49'), (25, 16, 25, 'acknowledged', 'Retirement plan guide is detailed and provides comprehensive information about contribution matching and investment options.', '2026-01-19 23:02:49', 18, 2, 2, '2026-01-18 08:27:49', '2026-01-19 23:02:49'), (26, 18, 26, 'pending', 'Vendor management policy requires additional review of contract negotiation procedures before final acknowledgment.', NULL, 20, 2, 2, '2026-01-23 12:52:49', '2026-01-23 12:52:49'), (27, 20, 27, 'acknowledged', 'Innovation initiative guidelines are inspiring and provide excellent framework for employee idea submission processes.', '2026-01-28 21:53:49', 22, 2, 2, '2026-01-28 17:07:49', '2026-01-28 21:53:49'), (28, 22, 28, 'pending', 'Environmental sustainability plan is comprehensive but needs discussion regarding individual employee responsibility implementation.', NULL, 24, 2, 2, '2026-02-02 09:42:49', '2026-02-02 09:42:49'), (29, 24, 29, 'acknowledged', 'Customer service standards are well-defined and provide clear guidelines for maintaining service excellence.', '2026-02-08 09:10:49', 26, 2, 2, '2026-02-07 11:57:49', '2026-02-08 09:10:49'), (30, 26, 30, 'acknowledged', 'Business continuity plan is thorough and provides comprehensive disaster recovery procedures for operational resilience.', '2026-02-12 17:26:49', 8, 2, 2, '2026-02-12 15:12:49', '2026-02-12 17:26:49'); -- -------------------------------------------------------- -- -- Table structure for table `activity_log` -- CREATE TABLE `activity_log` ( `id` bigint(20) UNSIGNED NOT NULL, `log_name` varchar(255) DEFAULT NULL, `description` text NOT NULL, `subject_type` varchar(255) DEFAULT NULL, `subject_id` bigint(20) UNSIGNED DEFAULT NULL, `event` varchar(255) DEFAULT NULL, `causer_type` varchar(255) DEFAULT NULL, `causer_id` bigint(20) UNSIGNED DEFAULT NULL, `batch_uuid` char(36) DEFAULT NULL, `attribute_changes` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`attribute_changes`)), `properties` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`properties`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `activity_log` -- INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `event`, `causer_type`, `causer_id`, `batch_uuid`, `attribute_changes`, `properties`, `created_at`, `updated_at`) VALUES (1, 'products', 'Product Service Item \"Paracetamol 158mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 78, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":78,\"name\":\"Paracetamol 158mg\",\"sku\":\"MED-136K59\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"119.90\",\"purchase_price\":\"27.49\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (2, 'products', 'Product Service Item \"Ibuprofen 277mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 79, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":79,\"name\":\"Ibuprofen 277mg\",\"sku\":\"MED-VPPJJI\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"191.49\",\"purchase_price\":\"32.40\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (3, 'products', 'Product Service Item \"Amoxicillin 104mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 80, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":80,\"name\":\"Amoxicillin 104mg\",\"sku\":\"MED-8DZQQC\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"162.66\",\"purchase_price\":\"21.74\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (4, 'products', 'Product Service Item \"Cetirizine 235mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 81, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":81,\"name\":\"Cetirizine 235mg\",\"sku\":\"MED-OVPACR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"171.33\",\"purchase_price\":\"39.56\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (5, 'products', 'Product Service Item \"Losartan 264mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 82, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":82,\"name\":\"Losartan 264mg\",\"sku\":\"MED-1KYBKZ\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"79.13\",\"purchase_price\":\"18.81\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (6, 'products', 'Product Service Item \"Amlodipine 195mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 83, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":83,\"name\":\"Amlodipine 195mg\",\"sku\":\"MED-U4SILN\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"114.73\",\"purchase_price\":\"25.02\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (7, 'products', 'Product Service Item \"Metformin 243mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 84, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":84,\"name\":\"Metformin 243mg\",\"sku\":\"MED-V0OYXX\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"169.73\",\"purchase_price\":\"28.64\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (8, 'products', 'Product Service Item \"Omeprazole 290mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 85, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":85,\"name\":\"Omeprazole 290mg\",\"sku\":\"MED-H1FM8V\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"192.07\",\"purchase_price\":\"28.55\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (9, 'products', 'Product Service Item \"Simvastatin 290mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 86, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":86,\"name\":\"Simvastatin 290mg\",\"sku\":\"MED-IBVEZR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"176.95\",\"purchase_price\":\"34.44\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (10, 'products', 'Product Service Item \"Azithromycin 427mg\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 87, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":87,\"name\":\"Azithromycin 427mg\",\"sku\":\"MED-JUFRWR\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"116.80\",\"purchase_price\":\"22.31\",\"min_stock_level\":100,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (11, 'products', 'Product Service Item \"Expired generic antibiotic\" was created', 'Workdo\\ProductService\\Models\\ProductServiceItem', 88, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":88,\"name\":\"Expired generic antibiotic\",\"sku\":\"DEAD-VUTEJT\",\"tax_ids\":null,\"category_id\":null,\"description\":null,\"long_description\":null,\"sale_price\":\"150.00\",\"purchase_price\":\"50.00\",\"min_stock_level\":10,\"unit\":null,\"image\":null,\"images\":null,\"type\":\"product\",\"is_active\":true,\"creator_id\":null,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (12, 'purchase', 'Purchase Invoice #P-TEST-DEAD was created', 'App\\Models\\PurchaseInvoice', 11, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":11,\"invoice_number\":\"P-TEST-DEAD\",\"invoice_date\":\"2026-01-25T16:00:00.000000Z\",\"due_date\":\"2026-02-01T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"10000.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"10000.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"10000.00\",\"status\":\"posted\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (13, 'warehouse', 'Warehouse Stock Movement #1 was created', 'Workdo\\Warehouse\\Models\\WarehouseStockMovement', 1, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":1,\"product_id\":88,\"warehouse_id\":17,\"quantity\":\"200.00\",\"type\":\"in\",\"reason\":\"Purchase Receipt\",\"reference_type\":\"App\\\\Models\\\\PurchaseInvoice\",\"reference_id\":11,\"description\":\"Received Dead Stock\",\"created_by\":2,\"workspace_id\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (14, 'purchase', 'Purchase Invoice #P-TEST-KAUGJ-0 was created', 'App\\Models\\PurchaseInvoice', 12, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":12,\"invoice_number\":\"P-TEST-KAUGJ-0\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"2720.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2720.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2720.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (15, 'sales', 'Sales Invoice #S-TEST-URIUJ-0 was created', 'App\\Models\\SalesInvoice', 11, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":11,\"invoice_number\":\"S-TEST-URIUJ-0\",\"invoice_date\":\"2026-04-18T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"4796.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"4796.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"4796.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (16, 'purchase', 'Purchase Invoice #P-TEST-EQKWK-1 was created', 'App\\Models\\PurchaseInvoice', 13, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":13,\"invoice_number\":\"P-TEST-EQKWK-1\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2398.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2398.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2398.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (17, 'sales', 'Sales Invoice #S-TEST-S8HGQ-1 was created', 'App\\Models\\SalesInvoice', 12, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":12,\"invoice_number\":\"S-TEST-S8HGQ-1\",\"invoice_date\":\"2026-04-18T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"325.32\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"325.32\",\"paid_amount\":\"0.00\",\"balance_amount\":\"325.32\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (18, 'purchase', 'Purchase Invoice #P-TEST-GD2CN-2 was created', 'App\\Models\\PurchaseInvoice', 14, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":14,\"invoice_number\":\"P-TEST-GD2CN-2\",\"invoice_date\":\"2026-04-26T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"2204.16\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2204.16\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2204.16\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (19, 'sales', 'Sales Invoice #S-TEST-5PUOZ-2 was created', 'App\\Models\\SalesInvoice', 13, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":13,\"invoice_number\":\"S-TEST-5PUOZ-2\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (20, 'purchase', 'Purchase Invoice #P-TEST-WYIVO-3 was created', 'App\\Models\\PurchaseInvoice', 15, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":15,\"invoice_number\":\"P-TEST-WYIVO-3\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"413.28\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"413.28\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"413.28\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (21, 'sales', 'Sales Invoice #S-TEST-CHTAX-3 was created', 'App\\Models\\SalesInvoice', 14, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":14,\"invoice_number\":\"S-TEST-CHTAX-3\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"650.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"650.64\",\"paid_amount\":\"0.00\",\"balance_amount\":\"650.64\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:38.000000Z\",\"updated_at\":\"2026-05-01T13:49:38.000000Z\"}}', '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (22, 'purchase', 'Purchase Invoice #P-TEST-MZYLI-4 was created', 'App\\Models\\PurchaseInvoice', 16, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":16,\"invoice_number\":\"P-TEST-MZYLI-4\",\"invoice_date\":\"2026-04-11T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"1434.84\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1434.84\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1434.84\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (23, 'sales', 'Sales Invoice #S-TEST-P4FSK-4 was created', 'App\\Models\\SalesInvoice', 15, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":15,\"invoice_number\":\"S-TEST-P4FSK-4\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (24, 'purchase', 'Purchase Invoice #P-TEST-VHCOV-5 was created', 'App\\Models\\PurchaseInvoice', 17, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":17,\"invoice_number\":\"P-TEST-VHCOV-5\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"1136.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1136.52\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1136.52\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (25, 'sales', 'Sales Invoice #S-TEST-UKMLN-5 was created', 'App\\Models\\SalesInvoice', 16, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":16,\"invoice_number\":\"S-TEST-UKMLN-5\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":16,\"subtotal\":\"4076.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"4076.60\",\"paid_amount\":\"0.00\",\"balance_amount\":\"4076.60\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (26, 'purchase', 'Purchase Invoice #P-TEST-R1EHZ-6 was created', 'App\\Models\\PurchaseInvoice', 18, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":18,\"invoice_number\":\"P-TEST-R1EHZ-6\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"1145.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1145.60\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1145.60\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (27, 'sales', 'Sales Invoice #S-TEST-EJTRJ-6 was created', 'App\\Models\\SalesInvoice', 17, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":17,\"invoice_number\":\"S-TEST-EJTRJ-6\",\"invoice_date\":\"2026-04-12T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"192.07\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"192.07\",\"paid_amount\":\"0.00\",\"balance_amount\":\"192.07\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (28, 'purchase', 'Purchase Invoice #P-TEST-O3HYW-7 was created', 'App\\Models\\PurchaseInvoice', 19, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":19,\"invoice_number\":\"P-TEST-O3HYW-7\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"600.48\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"600.48\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"600.48\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (29, 'sales', 'Sales Invoice #S-TEST-Y3C9G-7 was created', 'App\\Models\\SalesInvoice', 18, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":18,\"invoice_number\":\"S-TEST-Y3C9G-7\",\"invoice_date\":\"2026-04-26T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (30, 'purchase', 'Purchase Invoice #P-TEST-VLHHX-8 was created', 'App\\Models\\PurchaseInvoice', 20, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":20,\"invoice_number\":\"P-TEST-VLHHX-8\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"245.41\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"245.41\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"245.41\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (31, 'sales', 'Sales Invoice #S-TEST-3ZGT1-8 was created', 'App\\Models\\SalesInvoice', 19, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":19,\"invoice_number\":\"S-TEST-3ZGT1-8\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"768.28\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"768.28\",\"paid_amount\":\"0.00\",\"balance_amount\":\"768.28\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (32, 'purchase', 'Purchase Invoice #P-TEST-HDPWS-9 was created', 'App\\Models\\PurchaseInvoice', 21, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":21,\"invoice_number\":\"P-TEST-HDPWS-9\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"998.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"998.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"998.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (33, 'sales', 'Sales Invoice #S-TEST-5NQGD-9 was created', 'App\\Models\\SalesInvoice', 20, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":20,\"invoice_number\":\"S-TEST-5NQGD-9\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"395.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"395.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"395.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (34, 'purchase', 'Purchase Invoice #P-TEST-IMLRF-10 was created', 'App\\Models\\PurchaseInvoice', 22, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":22,\"invoice_number\":\"P-TEST-IMLRF-10\",\"invoice_date\":\"2026-04-11T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"700.56\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"700.56\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"700.56\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (35, 'sales', 'Sales Invoice #S-TEST-XC8LX-10 was created', 'App\\Models\\SalesInvoice', 21, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":21,\"invoice_number\":\"S-TEST-XC8LX-10\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"2997.50\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2997.50\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2997.50\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (36, 'purchase', 'Purchase Invoice #P-TEST-CMLON-11 was created', 'App\\Models\\PurchaseInvoice', 23, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":23,\"invoice_number\":\"P-TEST-CMLON-11\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1582.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1582.40\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1582.40\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (37, 'sales', 'Sales Invoice #S-TEST-VLY3Z-11 was created', 'App\\Models\\SalesInvoice', 22, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":22,\"invoice_number\":\"S-TEST-VLY3Z-11\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"114.73\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"114.73\",\"paid_amount\":\"0.00\",\"balance_amount\":\"114.73\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (38, 'purchase', 'Purchase Invoice #P-TEST-9YF47-12 was created', 'App\\Models\\PurchaseInvoice', 24, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":24,\"invoice_number\":\"P-TEST-9YF47-12\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"326.10\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"326.10\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"326.10\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (39, 'sales', 'Sales Invoice #S-TEST-IDK9Z-12 was created', 'App\\Models\\SalesInvoice', 23, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":23,\"invoice_number\":\"S-TEST-IDK9Z-12\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"191.49\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"191.49\",\"paid_amount\":\"0.00\",\"balance_amount\":\"191.49\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (40, 'purchase', 'Purchase Invoice #P-TEST-T4EIL-13 was created', 'App\\Models\\PurchaseInvoice', 25, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":25,\"invoice_number\":\"P-TEST-T4EIL-13\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"1859.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1859.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1859.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (41, 'sales', 'Sales Invoice #S-TEST-QS2WZ-13 was created', 'App\\Models\\SalesInvoice', 24, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":24,\"invoice_number\":\"S-TEST-QS2WZ-13\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"169.73\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"169.73\",\"paid_amount\":\"0.00\",\"balance_amount\":\"169.73\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (42, 'purchase', 'Purchase Invoice #P-TEST-LTFLC-14 was created', 'App\\Models\\PurchaseInvoice', 26, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":26,\"invoice_number\":\"P-TEST-LTFLC-14\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"1621.91\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1621.91\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1621.91\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (43, 'sales', 'Sales Invoice #S-TEST-N5TD2-14 was created', 'App\\Models\\SalesInvoice', 25, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":25,\"invoice_number\":\"S-TEST-N5TD2-14\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"5995.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5995.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5995.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (44, 'purchase', 'Purchase Invoice #P-TEST-PTO0I-15 was created', 'App\\Models\\PurchaseInvoice', 27, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":27,\"invoice_number\":\"P-TEST-PTO0I-15\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"685.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"685.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"685.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (45, 'sales', 'Sales Invoice #S-TEST-EFILE-15 was created', 'App\\Models\\SalesInvoice', 26, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":26,\"invoice_number\":\"S-TEST-EFILE-15\",\"invoice_date\":\"2026-04-08T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"5035.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5035.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5035.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (46, 'purchase', 'Purchase Invoice #P-TEST-IWR6V-16 was created', 'App\\Models\\PurchaseInvoice', 28, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":28,\"invoice_number\":\"P-TEST-IWR6V-16\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2175.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2175.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2175.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (47, 'sales', 'Sales Invoice #S-TEST-YTUJJ-16 was created', 'App\\Models\\SalesInvoice', 27, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":27,\"invoice_number\":\"S-TEST-YTUJJ-16\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"316.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"316.52\",\"paid_amount\":\"0.00\",\"balance_amount\":\"316.52\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (48, 'purchase', 'Purchase Invoice #P-TEST-48HEE-17 was created', 'App\\Models\\PurchaseInvoice', 29, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":29,\"invoice_number\":\"P-TEST-48HEE-17\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2650.52\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2650.52\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2650.52\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (49, 'sales', 'Sales Invoice #S-TEST-L1DNU-17 was created', 'App\\Models\\SalesInvoice', 28, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":28,\"invoice_number\":\"S-TEST-L1DNU-17\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"192.07\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"192.07\",\"paid_amount\":\"0.00\",\"balance_amount\":\"192.07\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (50, 'purchase', 'Purchase Invoice #P-TEST-QL0WL-18 was created', 'App\\Models\\PurchaseInvoice', 30, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":30,\"invoice_number\":\"P-TEST-QL0WL-18\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"669.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"669.30\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"669.30\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (51, 'sales', 'Sales Invoice #S-TEST-UD5IU-18 was created', 'App\\Models\\SalesInvoice', 29, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":29,\"invoice_number\":\"S-TEST-UD5IU-18\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5395.50\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5395.50\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5395.50\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (52, 'purchase', 'Purchase Invoice #P-TEST-C07UK-19 was created', 'App\\Models\\PurchaseInvoice', 31, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":31,\"invoice_number\":\"P-TEST-C07UK-19\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1869.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1869.64\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1869.64\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (53, 'sales', 'Sales Invoice #S-TEST-MAZYJ-19 was created', 'App\\Models\\SalesInvoice', 30, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":30,\"invoice_number\":\"S-TEST-MAZYJ-19\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (54, 'purchase', 'Purchase Invoice #P-TEST-MD0P9-20 was created', 'App\\Models\\PurchaseInvoice', 32, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":32,\"invoice_number\":\"P-TEST-MD0P9-20\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"2008.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2008.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2008.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (55, 'sales', 'Sales Invoice #S-TEST-RSETD-20 was created', 'App\\Models\\SalesInvoice', 31, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":31,\"invoice_number\":\"S-TEST-RSETD-20\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"2877.60\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2877.60\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2877.60\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (56, 'purchase', 'Purchase Invoice #P-TEST-R80MC-21 was created', 'App\\Models\\PurchaseInvoice', 33, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":33,\"invoice_number\":\"P-TEST-R80MC-21\",\"invoice_date\":\"2026-04-15T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"3085.68\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3085.68\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3085.68\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (57, 'sales', 'Sales Invoice #S-TEST-B0ZBJ-21 was created', 'App\\Models\\SalesInvoice', 32, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":32,\"invoice_number\":\"S-TEST-B0ZBJ-21\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"3836.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3836.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"3836.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (58, 'purchase', 'Purchase Invoice #P-TEST-WFG0T-22 was created', 'App\\Models\\PurchaseInvoice', 34, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":34,\"invoice_number\":\"P-TEST-WFG0T-22\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":16,\"subtotal\":\"2007.90\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2007.90\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2007.90\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (59, 'sales', 'Sales Invoice #S-TEST-9LB4E-22 was created', 'App\\Models\\SalesInvoice', 33, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":33,\"invoice_number\":\"S-TEST-9LB4E-22\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"79.13\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"79.13\",\"paid_amount\":\"0.00\",\"balance_amount\":\"79.13\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (60, 'purchase', 'Purchase Invoice #P-TEST-OBNMN-23 was created', 'App\\Models\\PurchaseInvoice', 35, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":35,\"invoice_number\":\"P-TEST-OBNMN-23\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1383.22\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1383.22\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1383.22\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (61, 'sales', 'Sales Invoice #S-TEST-HQMG8-23 was created', 'App\\Models\\SalesInvoice', 34, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":34,\"invoice_number\":\"S-TEST-HQMG8-23\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"344.19\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"344.19\",\"paid_amount\":\"0.00\",\"balance_amount\":\"344.19\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (62, 'purchase', 'Purchase Invoice #P-TEST-1Q8IV-24 was created', 'App\\Models\\PurchaseInvoice', 36, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":36,\"invoice_number\":\"P-TEST-1Q8IV-24\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"870.09\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"870.09\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"870.09\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (63, 'sales', 'Sales Invoice #S-TEST-L6BEU-24 was created', 'App\\Models\\SalesInvoice', 35, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":35,\"invoice_number\":\"S-TEST-L6BEU-24\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"513.99\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"513.99\",\"paid_amount\":\"0.00\",\"balance_amount\":\"513.99\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (64, 'purchase', 'Purchase Invoice #P-TEST-X5MDB-25 was created', 'App\\Models\\PurchaseInvoice', 37, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":37,\"invoice_number\":\"P-TEST-X5MDB-25\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"1515.36\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1515.36\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1515.36\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (65, 'sales', 'Sales Invoice #S-TEST-PBHAH-25 was created', 'App\\Models\\SalesInvoice', 36, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":36,\"invoice_number\":\"S-TEST-PBHAH-25\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"5995.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5995.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5995.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'); INSERT INTO `activity_log` (`id`, `log_name`, `description`, `subject_type`, `subject_id`, `event`, `causer_type`, `causer_id`, `batch_uuid`, `attribute_changes`, `properties`, `created_at`, `updated_at`) VALUES (66, 'purchase', 'Purchase Invoice #P-TEST-062VQ-26 was created', 'App\\Models\\PurchaseInvoice', 38, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":38,\"invoice_number\":\"P-TEST-062VQ-26\",\"invoice_date\":\"2026-04-24T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2034.26\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2034.26\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2034.26\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (67, 'sales', 'Sales Invoice #S-TEST-IDZXP-26 was created', 'App\\Models\\SalesInvoice', 37, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":37,\"invoice_number\":\"S-TEST-IDZXP-26\",\"invoice_date\":\"2026-04-04T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"884.75\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"884.75\",\"paid_amount\":\"0.00\",\"balance_amount\":\"884.75\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (68, 'purchase', 'Purchase Invoice #P-TEST-LCQAB-27 was created', 'App\\Models\\PurchaseInvoice', 39, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":39,\"invoice_number\":\"P-TEST-LCQAB-27\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"1317.44\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1317.44\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1317.44\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (69, 'sales', 'Sales Invoice #S-TEST-OAMCR-27 was created', 'App\\Models\\SalesInvoice', 38, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":38,\"invoice_number\":\"S-TEST-OAMCR-27\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (70, 'purchase', 'Purchase Invoice #P-TEST-M20G0-28 was created', 'App\\Models\\PurchaseInvoice', 40, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":40,\"invoice_number\":\"P-TEST-M20G0-28\",\"invoice_date\":\"2026-04-25T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"1846.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1846.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1846.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (71, 'sales', 'Sales Invoice #S-TEST-ADDFX-28 was created', 'App\\Models\\SalesInvoice', 39, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":39,\"invoice_number\":\"S-TEST-ADDFX-28\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"350.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"350.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"350.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (72, 'purchase', 'Purchase Invoice #P-TEST-TFLTM-29 was created', 'App\\Models\\PurchaseInvoice', 41, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":41,\"invoice_number\":\"P-TEST-TFLTM-29\",\"invoice_date\":\"2026-04-07T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"2369.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2369.65\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2369.65\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (73, 'sales', 'Sales Invoice #S-TEST-NKNE2-29 was created', 'App\\Models\\SalesInvoice', 40, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":40,\"invoice_number\":\"S-TEST-NKNE2-29\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5635.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5635.30\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5635.30\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (74, 'purchase', 'Purchase Invoice #P-TEST-JZBZE-30 was created', 'App\\Models\\PurchaseInvoice', 42, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":42,\"invoice_number\":\"P-TEST-JZBZE-30\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"2201.76\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2201.76\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2201.76\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (75, 'sales', 'Sales Invoice #S-TEST-KFLHX-30 was created', 'App\\Models\\SalesInvoice', 41, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":41,\"invoice_number\":\"S-TEST-KFLHX-30\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5755.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5755.20\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5755.20\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (76, 'purchase', 'Purchase Invoice #P-TEST-XYSCK-31 was created', 'App\\Models\\PurchaseInvoice', 43, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":43,\"invoice_number\":\"P-TEST-XYSCK-31\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":17,\"subtotal\":\"2426.94\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2426.94\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2426.94\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (77, 'sales', 'Sales Invoice #S-TEST-QWYRO-31 was created', 'App\\Models\\SalesInvoice', 42, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":42,\"invoice_number\":\"S-TEST-QWYRO-31\",\"invoice_date\":\"2026-04-12T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"229.46\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"229.46\",\"paid_amount\":\"0.00\",\"balance_amount\":\"229.46\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (78, 'purchase', 'Purchase Invoice #P-TEST-DJLMZ-32 was created', 'App\\Models\\PurchaseInvoice', 44, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":44,\"invoice_number\":\"P-TEST-DJLMZ-32\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":17,\"subtotal\":\"577.29\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"577.29\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"577.29\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (79, 'sales', 'Sales Invoice #S-TEST-ABQNU-32 was created', 'App\\Models\\SalesInvoice', 43, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":43,\"invoice_number\":\"S-TEST-ABQNU-32\",\"invoice_date\":\"2026-04-04T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"116.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"116.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"116.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (80, 'purchase', 'Purchase Invoice #P-TEST-0KPSS-33 was created', 'App\\Models\\PurchaseInvoice', 45, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":45,\"invoice_number\":\"P-TEST-0KPSS-33\",\"invoice_date\":\"2026-04-14T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"3441.72\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3441.72\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3441.72\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (81, 'sales', 'Sales Invoice #S-TEST-MLDI8-33 was created', 'App\\Models\\SalesInvoice', 44, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":44,\"invoice_number\":\"S-TEST-MLDI8-33\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"856.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"856.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"856.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (82, 'purchase', 'Purchase Invoice #P-TEST-P4UOE-34 was created', 'App\\Models\\PurchaseInvoice', 46, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":46,\"invoice_number\":\"P-TEST-P4UOE-34\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"206.91\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"206.91\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"206.91\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (83, 'sales', 'Sales Invoice #S-TEST-FBAAO-34 was created', 'App\\Models\\SalesInvoice', 45, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":45,\"invoice_number\":\"S-TEST-FBAAO-34\",\"invoice_date\":\"2026-04-13T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"856.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"856.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"856.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (84, 'purchase', 'Purchase Invoice #P-TEST-OFRVZ-35 was created', 'App\\Models\\PurchaseInvoice', 47, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":47,\"invoice_number\":\"P-TEST-OFRVZ-35\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"1198.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1198.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1198.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (85, 'sales', 'Sales Invoice #S-TEST-ZCC5I-35 was created', 'App\\Models\\SalesInvoice', 46, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":46,\"invoice_number\":\"S-TEST-ZCC5I-35\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":17,\"subtotal\":\"2637.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2637.80\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2637.80\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (86, 'purchase', 'Purchase Invoice #P-TEST-LZXZ7-36 was created', 'App\\Models\\PurchaseInvoice', 48, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":48,\"invoice_number\":\"P-TEST-LZXZ7-36\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"446.20\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"446.20\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"446.20\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (87, 'sales', 'Sales Invoice #S-TEST-HOKNG-36 was created', 'App\\Models\\SalesInvoice', 47, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":47,\"invoice_number\":\"S-TEST-HOKNG-36\",\"invoice_date\":\"2026-04-08T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":16,\"subtotal\":\"650.64\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"650.64\",\"paid_amount\":\"0.00\",\"balance_amount\":\"650.64\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (88, 'purchase', 'Purchase Invoice #P-TEST-COLGK-37 was created', 'App\\Models\\PurchaseInvoice', 49, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":49,\"invoice_number\":\"P-TEST-COLGK-37\",\"invoice_date\":\"2026-04-02T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"357.39\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"357.39\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"357.39\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (89, 'sales', 'Sales Invoice #S-TEST-VAA16-37 was created', 'App\\Models\\SalesInvoice', 48, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":48,\"invoice_number\":\"S-TEST-VAA16-37\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (90, 'purchase', 'Purchase Invoice #P-TEST-CPFZZ-38 was created', 'App\\Models\\PurchaseInvoice', 50, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":50,\"invoice_number\":\"P-TEST-CPFZZ-38\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"1044.62\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1044.62\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1044.62\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (91, 'sales', 'Sales Invoice #S-TEST-JOQ6L-38 was created', 'App\\Models\\SalesInvoice', 49, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":49,\"invoice_number\":\"S-TEST-JOQ6L-38\",\"invoice_date\":\"2026-04-05T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"5635.30\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5635.30\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5635.30\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (92, 'purchase', 'Purchase Invoice #P-TEST-ZIN6L-39 was created', 'App\\Models\\PurchaseInvoice', 51, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":51,\"invoice_number\":\"P-TEST-ZIN6L-39\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"2610.96\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2610.96\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2610.96\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (93, 'sales', 'Sales Invoice #S-TEST-IGAOR-39 was created', 'App\\Models\\SalesInvoice', 50, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":50,\"invoice_number\":\"S-TEST-IGAOR-39\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":16,\"subtotal\":\"342.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"342.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"342.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (94, 'purchase', 'Purchase Invoice #P-TEST-ZTNVA-40 was created', 'App\\Models\\PurchaseInvoice', 52, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":52,\"invoice_number\":\"P-TEST-ZTNVA-40\",\"invoice_date\":\"2026-04-03T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"770.85\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"770.85\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"770.85\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (95, 'sales', 'Sales Invoice #S-TEST-7D8QC-40 was created', 'App\\Models\\SalesInvoice', 51, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":51,\"invoice_number\":\"S-TEST-7D8QC-40\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":16,\"subtotal\":\"2398.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2398.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"2398.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (96, 'purchase', 'Purchase Invoice #P-TEST-0IHAA-41 was created', 'App\\Models\\PurchaseInvoice', 53, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":53,\"invoice_number\":\"P-TEST-0IHAA-41\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"1401.99\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1401.99\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1401.99\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (97, 'sales', 'Sales Invoice #S-TEST-A23OM-41 was created', 'App\\Models\\SalesInvoice', 52, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":52,\"invoice_number\":\"S-TEST-A23OM-41\",\"invoice_date\":\"2026-04-17T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"325.32\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"325.32\",\"paid_amount\":\"0.00\",\"balance_amount\":\"325.32\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (98, 'purchase', 'Purchase Invoice #P-TEST-DFOEK-42 was created', 'App\\Models\\PurchaseInvoice', 54, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":54,\"invoice_number\":\"P-TEST-DFOEK-42\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"1918.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1918.66\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1918.66\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (99, 'sales', 'Sales Invoice #S-TEST-LIDWK-42 was created', 'App\\Models\\SalesInvoice', 53, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":53,\"invoice_number\":\"S-TEST-LIDWK-42\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":17,\"subtotal\":\"162.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"162.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"162.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (100, 'purchase', 'Purchase Invoice #P-TEST-WANLC-43 was created', 'App\\Models\\PurchaseInvoice', 55, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":55,\"invoice_number\":\"P-TEST-WANLC-43\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":128,\"warehouse_id\":17,\"subtotal\":\"810.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"810.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"810.00\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (101, 'sales', 'Sales Invoice #S-TEST-EDUQO-43 was created', 'App\\Models\\SalesInvoice', 54, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":54,\"invoice_number\":\"S-TEST-EDUQO-43\",\"invoice_date\":\"2026-04-20T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":130,\"warehouse_id\":16,\"subtotal\":\"162.66\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"162.66\",\"paid_amount\":\"0.00\",\"balance_amount\":\"162.66\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (102, 'purchase', 'Purchase Invoice #P-TEST-MGZTW-44 was created', 'App\\Models\\PurchaseInvoice', 56, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":56,\"invoice_number\":\"P-TEST-MGZTW-44\",\"invoice_date\":\"2026-04-01T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":16,\"subtotal\":\"2818.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2818.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2818.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (103, 'sales', 'Sales Invoice #S-TEST-QS1RC-44 was created', 'App\\Models\\SalesInvoice', 55, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":55,\"invoice_number\":\"S-TEST-QS1RC-44\",\"invoice_date\":\"2026-04-19T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":131,\"warehouse_id\":17,\"subtotal\":\"382.98\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"382.98\",\"paid_amount\":\"0.00\",\"balance_amount\":\"382.98\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (104, 'purchase', 'Purchase Invoice #P-TEST-F5PBT-45 was created', 'App\\Models\\PurchaseInvoice', 57, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":57,\"invoice_number\":\"P-TEST-F5PBT-45\",\"invoice_date\":\"2026-04-29T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":126,\"warehouse_id\":16,\"subtotal\":\"3271.80\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"3271.80\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"3271.80\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (105, 'sales', 'Sales Invoice #S-TEST-0XUFS-45 was created', 'App\\Models\\SalesInvoice', 56, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":56,\"invoice_number\":\"S-TEST-0XUFS-45\",\"invoice_date\":\"2026-04-27T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"5515.40\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"5515.40\",\"paid_amount\":\"0.00\",\"balance_amount\":\"5515.40\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (106, 'purchase', 'Purchase Invoice #P-TEST-JAPOQ-46 was created', 'App\\Models\\PurchaseInvoice', 58, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":58,\"invoice_number\":\"P-TEST-JAPOQ-46\",\"invoice_date\":\"2026-03-31T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":17,\"subtotal\":\"1517.08\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1517.08\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1517.08\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (107, 'sales', 'Sales Invoice #S-TEST-LKCEF-46 was created', 'App\\Models\\SalesInvoice', 57, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":57,\"invoice_number\":\"S-TEST-LKCEF-46\",\"invoice_date\":\"2026-04-06T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"848.65\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"848.65\",\"paid_amount\":\"0.00\",\"balance_amount\":\"848.65\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (108, 'purchase', 'Purchase Invoice #P-TEST-VHFMB-47 was created', 'App\\Models\\PurchaseInvoice', 59, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":59,\"invoice_number\":\"P-TEST-VHFMB-47\",\"invoice_date\":\"2026-04-22T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":129,\"warehouse_id\":16,\"subtotal\":\"1369.62\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"1369.62\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"1369.62\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:39.000000Z\",\"updated_at\":\"2026-05-01T13:49:39.000000Z\"}}', '2026-05-01 21:49:39', '2026-05-01 21:49:39'), (109, 'sales', 'Sales Invoice #S-TEST-KTGIR-47 was created', 'App\\Models\\SalesInvoice', 58, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":58,\"invoice_number\":\"S-TEST-KTGIR-47\",\"invoice_date\":\"2026-04-23T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":134,\"warehouse_id\":17,\"subtotal\":\"584.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"584.00\",\"paid_amount\":\"0.00\",\"balance_amount\":\"584.00\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), (110, 'purchase', 'Purchase Invoice #P-TEST-F13F1-48 was created', 'App\\Models\\PurchaseInvoice', 60, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":60,\"invoice_number\":\"P-TEST-F13F1-48\",\"invoice_date\":\"2026-04-23T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":125,\"warehouse_id\":16,\"subtotal\":\"2769.35\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2769.35\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2769.35\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), (111, 'sales', 'Sales Invoice #S-TEST-IQEQ6-48 was created', 'App\\Models\\SalesInvoice', 59, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":59,\"invoice_number\":\"S-TEST-IQEQ6-48\",\"invoice_date\":\"2026-04-21T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":132,\"warehouse_id\":17,\"subtotal\":\"678.92\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"678.92\",\"paid_amount\":\"0.00\",\"balance_amount\":\"678.92\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), (112, 'purchase', 'Purchase Invoice #P-TEST-8A8SK-49 was created', 'App\\Models\\PurchaseInvoice', 61, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":61,\"invoice_number\":\"P-TEST-8A8SK-49\",\"invoice_date\":\"2026-04-09T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"vendor_id\":127,\"warehouse_id\":17,\"subtotal\":\"2916.00\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"2916.00\",\"paid_amount\":\"0.00\",\"debit_note_applied\":\"0.00\",\"balance_amount\":\"2916.00\",\"status\":\"draft\",\"is_received\":0,\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'), (113, 'sales', 'Sales Invoice #S-TEST-ZOWE9-49 was created', 'App\\Models\\SalesInvoice', 60, 'created', 'App\\Models\\User', 2, NULL, NULL, '{\"attributes\":{\"id\":60,\"invoice_number\":\"S-TEST-ZOWE9-49\",\"invoice_date\":\"2026-04-16T16:00:00.000000Z\",\"due_date\":\"2026-05-07T16:00:00.000000Z\",\"customer_id\":133,\"warehouse_id\":16,\"subtotal\":\"957.45\",\"tax_amount\":\"0.00\",\"discount_amount\":\"0.00\",\"total_amount\":\"957.45\",\"paid_amount\":\"0.00\",\"balance_amount\":\"957.45\",\"status\":\"draft\",\"type\":\"product\",\"payment_terms\":null,\"notes\":null,\"creator_id\":2,\"created_by\":2,\"created_at\":\"2026-05-01T13:49:40.000000Z\",\"updated_at\":\"2026-05-01T13:49:40.000000Z\"}}', '2026-05-01 21:49:40', '2026-05-01 21:49:40'); -- -------------------------------------------------------- -- -- Table structure for table `add_ons` -- CREATE TABLE `add_ons` ( `id` bigint(20) UNSIGNED NOT NULL, `module` varchar(255) NOT NULL, `name` varchar(255) NOT NULL, `monthly_price` decimal(8,2) NOT NULL, `yearly_price` decimal(8,2) NOT NULL, `image` varchar(255) DEFAULT NULL, `is_enable` tinyint(1) NOT NULL DEFAULT 0, `for_admin` tinyint(1) NOT NULL DEFAULT 0, `package_name` varchar(255) NOT NULL, `priority` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `add_ons` -- INSERT INTO `add_ons` (`id`, `module`, `name`, `monthly_price`, `yearly_price`, `image`, `is_enable`, `for_admin`, `package_name`, `priority`, `created_at`, `updated_at`) VALUES (1, 'Taskly', 'Project', 0.00, 0.00, NULL, 1, 0, 'taskly', 10, '2026-03-14 05:59:47', '2026-05-01 21:51:38'), (2, 'Account', 'Accounting', 0.00, 0.00, NULL, 1, 0, 'account', 20, '2026-03-14 05:59:50', '2026-05-01 21:51:38'), (3, 'DoubleEntry', 'Double Entry', 0.00, 0.00, NULL, 1, 0, 'double-entry', 25, '2026-03-14 05:59:52', '2026-05-01 21:51:38'), (4, 'Hrm', 'HRM', 0.00, 0.00, NULL, 1, 0, 'hrm', 30, '2026-03-14 05:59:56', '2026-05-01 21:51:38'), (5, 'SkillsMatrix', 'Skills Matrix', 0.00, 0.00, NULL, 1, 0, 'skills-matrix', 31, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), (6, 'CertTracker', 'Certification Tracker', 0.00, 0.00, NULL, 1, 0, 'cert-tracker', 32, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), (7, 'Engagement', 'Engagement Manager', 0.00, 0.00, NULL, 1, 0, 'engagement', 33, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), (8, 'Utilization', 'Utilization Tracker', 0.00, 0.00, NULL, 1, 0, 'utilization', 34, '2026-03-14 06:13:56', '2026-05-01 21:51:38'), (9, 'Payroll', 'Payroll', 0.00, 0.00, NULL, 1, 0, 'payroll', 35, '2026-03-14 06:00:06', '2026-05-01 21:51:38'), (10, 'Pos', 'POS', 0.00, 0.00, NULL, 1, 0, 'pos', 50, '2026-03-14 06:00:08', '2026-05-01 21:51:38'), (11, 'Lead', 'CRM', 0.00, 0.00, NULL, 1, 0, 'lead', 40, '2026-03-14 06:00:09', '2026-05-01 21:51:38'), (12, 'PropertyManagement', 'Property Management', 0.00, 0.00, NULL, 1, 0, 'property-management', 35, '2026-03-14 09:38:50', '2026-05-01 21:51:38'), (13, 'Hospital', 'Hospital Management', 0.00, 0.00, NULL, 1, 0, 'Hospital', 0, '2026-04-23 14:40:30', '2026-05-01 21:51:38'), (14, 'ProductService', 'Product & Service', 0.00, 0.00, NULL, 1, 0, 'product-service', 0, '2026-04-27 14:42:29', '2026-05-01 21:51:38'), (15, 'AIHub', 'AI Hub', 0.00, 0.00, NULL, 1, 0, 'aihub', 0, '2026-04-27 14:42:33', '2026-05-01 21:51:38'), (16, 'AIDocument', 'AI Document', 0.00, 0.00, NULL, 1, 0, 'aidocument', 410, '2026-04-27 14:42:49', '2026-05-01 21:51:38'); -- -------------------------------------------------------- -- -- Table structure for table `ai_forecasts` -- CREATE TABLE `ai_forecasts` ( `id` bigint(20) UNSIGNED NOT NULL, `module` varchar(50) NOT NULL, `forecast_type` varchar(50) NOT NULL, `summary` text NOT NULL, `detailed_analysis` longtext NOT NULL, `metrics_json` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`metrics_json`)), `workspace` int(11) NOT NULL DEFAULT 0, `generated_at` timestamp NULL DEFAULT NULL, `expires_at` timestamp NULL DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ai_forecast_history` -- CREATE TABLE `ai_forecast_history` ( `id` bigint(20) UNSIGNED NOT NULL, `forecast_id` bigint(20) UNSIGNED NOT NULL, `prompt` text NOT NULL, `response` longtext NOT NULL, `tokens_used` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ai_prompt_histories` -- CREATE TABLE `ai_prompt_histories` ( `id` bigint(20) UNSIGNED NOT NULL, `template_id` varchar(255) DEFAULT NULL, `doc_name` varchar(255) DEFAULT NULL, `model` varchar(255) DEFAULT NULL, `creativity` varchar(255) DEFAULT NULL, `max_tokens` varchar(255) DEFAULT NULL, `max_results` varchar(255) DEFAULT NULL, `prompt` longtext DEFAULT NULL, `language` varchar(255) DEFAULT NULL, `prompt_fields` text DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` varchar(255) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ai_prompt_responses` -- CREATE TABLE `ai_prompt_responses` ( `id` bigint(20) UNSIGNED NOT NULL, `template_id` varchar(255) DEFAULT NULL, `history_prompt_id` varchar(255) DEFAULT NULL, `used_words` varchar(255) DEFAULT NULL, `content` longtext DEFAULT NULL, `created_by` varchar(255) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `ai_templates` -- CREATE TABLE `ai_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `icon` varchar(255) DEFAULT NULL, `description` longtext DEFAULT NULL, `template_code` varchar(255) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', `professional` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1=>yes,0=>no', `slug` varchar(255) NOT NULL, `category_id` varchar(255) NOT NULL, `type` varchar(255) NOT NULL DEFAULT '1' COMMENT '1=>original,0=>custom', `form_fields` varchar(5000) DEFAULT NULL, `is_tone` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ai_templates` -- INSERT INTO `ai_templates` (`id`, `name`, `icon`, `description`, `template_code`, `status`, `professional`, `slug`, `category_id`, `type`, `form_fields`, `is_tone`, `created_at`, `updated_at`) VALUES (1, 'Article Generator', 'article-generator.png', 'Compose an excellent article using a given title and outline', 'KPAQQ', 1, 0, 'article-generator', '1', '1', '{\"field\":[{\"label\":\"Article Title\",\"placeholder\":\"e.g. Amazing culture of india\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. brazil, canada, india\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (2, 'Content Rewriter', 'content-rewriter.png', 'Enhance content by rewriting it with greater creativity, interest, and engagement', 'WCZGL', 1, 0, 'content-rewriter', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"e.g. Enter your text to rewrite\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (3, 'Paragraph Generator', 'paragraph-generator.png', 'Paragraphs that are flawlessly arranged, simple to read, and packed with words that convince', 'JXRZB', 1, 0, 'paragraph-generator', '1', '1', '{\"field\":[{\"label\":\"Paragraph Description\",\"placeholder\":\"e.g. Lime or lemon what is better?\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. fruit, lime\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (4, 'Talking Points', 'talking-points.png', 'Compose concise, straightforward, and informative subheadings for your article', 'VFWSQ', 1, 0, 'talking-points', '1', '1', '{\"field\":[{\"label\":\"Article Title\",\"placeholder\":\"e.g. 10 ways to create websites\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Subheading Description\",\"placeholder\":\"e.g. Why you should create a website\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (5, 'Pros & Cons', 'pros-and-cons.png', 'Outline the pros and cons of a product, service, or website in your blog post', 'OPYAB', 1, 0, 'pros-and-cons', '1', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. iPhone, Samsung\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Explain what kind of cell phone you can to compare\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (6, 'Blog Titles', 'blog-titles.png', 'With this tool, you can come up with catchy blog titles that people want to read', 'WGKYP', 1, 0, 'blog-titles', '2', '1', '{\"field\":[{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. Describe your blog post\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (7, 'Blog Section', 'blog-section.png', 'Write a few paragraphs about one of your article\'s subheadings', 'EEKZF', 1, 0, 'blog-section', '2', '1', '{\"field\":[{\"label\":\"Title of your blog article\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"textarea\",\"field_name\":\"title\"},{\"label\":\"Subheadings\",\"placeholder\":\"e.g. Barcelona, San Sebastian, Madrid\",\"field_type\":\"textarea\",\"field_name\":\"subheadings\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (8, 'Blog Ideas', 'blog-ideas.png', 'Article/blog thoughts that you can use to create more traffic, leads, and deals for your business', 'KDGOX', 1, 0, 'blog-ideas', '2', '1', '{\"field\":[{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (9, 'Blog Intros', 'blog-intros.png', 'Introductions to articles/blogs that are appealing to the readers', 'TZTYR', 1, 0, 'blog-intros', '2', '1', '{\"field\":[{\"label\":\"Blog Post Title\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. describe your blog article\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (10, 'Blog Conclusion', 'blog-conclusion.png', 'Create powerful conclusion that will make a reader take action.', 'ZGUKM', 1, 0, 'blog-conclusion', '2', '1', '{\"field\":[{\"label\":\"Blog Post Title\",\"placeholder\":\"e.g. 5 best places to visit in Spain\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is your blog post is about?\",\"placeholder\":\"e.g. describe your blog article\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (11, 'Summarize Text', 'summarize-text.png', 'Shorten any text into a concise and easily understandable summary', 'OMMEI', 1, 0, 'summarize-text', '1', '1', '{\"field\":[{\"label\":\"What would you like to summarize?\",\"placeholder\":\"e.g. Enter your text to summarize\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (12, 'Product Description', 'product-description.png', 'Craft a compelling product description highlighting its value and why it is worth investing in', 'HXLNA', 1, 0, 'product-description', '1', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (13, 'Startup Name Generator', 'startup-idea.png', 'Generate unique, imaginative, and attention-grabbing names for your startup effortlessly and swiftly', 'DJSVM', 1, 0, 'startup-name-generator', '1', '1', '{\"field\":[{\"label\":\"Seed words\",\"placeholder\":\"e.g. flow, app, tech\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"},{\"label\":\"Startup Description\",\"placeholder\":\"e.g. Explain what your statrup idea is about\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (14, 'Product Name Generator', 'product-name-generator.png', 'Generate innovative product names using provided word examples', 'IXKBE', 1, 0, 'product-name-generator', '1', '1', '{\"field\":[{\"label\":\"Seed words\",\"placeholder\":\"e.g. fast, healthy, compact\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Provide product details\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (15, 'Meta Description', 'meta-description.png', 'Based on a description, create a meta description optimized for SEO', 'JCDIK', 1, 0, 'meta-description', '3', '1', '{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g. cloud services, databases\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (16, 'FAQs', 'questions.png', 'Make a list of frequently asked questions based on the description of your product', 'SZAUF', 1, 0, 'faqs', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (17, 'FAQ Answers', 'questions.png', 'Create original responses to frequently asked questions (FAQs) about your website or business', 'BFENK', 1, 0, 'faq-answers', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"What is the question you are generating answers for?\",\"placeholder\":\"e.g. How to use this product?\",\"field_type\":\"text_box\",\"field_name\":\"question\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (18, 'Testimonials / Reviews', 'reply-to-review.png', 'User testimonials to be used to add social proof to your website', 'XLGPP', 1, 0, 'testimonials', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazon, Google\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. Describe what your website or business do\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (19, 'Facebook Ads', 'facebook.png', 'Compose Facebook promotions that draw in your crowd and convey a high transformation rate', 'CTMNI', 1, 0, 'facebook-ads', '4', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Freelances, Developers\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (20, 'Video Descriptions', 'video-tags.png', 'Create engaging YouTube descriptions to get viewers to your video', 'ZLKSP', 1, 0, 'video-descriptions', '5', '1', '{\"field\":[{\"label\":\"What is the title of your video?\",\"placeholder\":\"e.g. start earning money online\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (21, 'Video Titles', 'video-tags.png', 'Create a catchy YouTube video title to grab people\'s attention', 'OJIOV', 1, 0, 'video-titles', '5', '1', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"e.g. Provide description of your video, provide as many details as possible\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (22, 'Youtube Tags Generator', 'youTube.png', 'Create YouTube tags and keywords optimized for SEO for your video', 'ECNVU', 1, 0, 'youtube-tags-generator', '5', '1', '{\"field\":[{\"label\":\"Enter your video title or keyword\",\"placeholder\":\"e.g. cloud\",\"field_type\":\"textarea\",\"field_name\":\"title\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (23, 'Instagram Captions', 'instagram.png', 'Use eye-catching captions for your Instagram pictures to attract attention', 'EOASR', 1, 0, 'instagram-captions', '4', '1', '{\"field\":[{\"label\":\"What is your instragram post about?\",\"placeholder\":\"e.g. start earning money online\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (24, 'Instagram Hashtags Generator', 'instagram.png', 'Detect the most effective hashtags for your Instagram posts', 'IEMBM', 1, 0, 'instagram-hashtags', '4', '1', '{\"field\":[{\"label\":\"Enter a keyword\",\"placeholder\":\"e.g. makeup\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (25, 'Social Media Post (Personal)', 'social-media-post-personal.png', 'Write a personal social media post that can be shared on any platform', 'CKOHL', 1, 0, 'social-post-personal', '4', '1', '{\"field\":[{\"label\":\"What is this post about?\",\"placeholder\":\"e.g. I got fluent in Spanish in 1 week\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (26, 'Social Media Post (Business)', 'social-media-post-business.png', 'Write a post about your company for any social media platform', 'ABWGU', 1, 0, 'social-post-business', '4', '1', '{\"field\":[{\"label\":\"Company name\",\"placeholder\":\"e.g. XYZ\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Provide company description\",\"placeholder\":\"e.g. XYZ is a leading toy making company\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"What is the post about?\",\"placeholder\":\"e.g. we released a new version of kids favorite toy\",\"field_type\":\"textarea\",\"field_name\":\"post\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (27, 'Facebook Headlines', 'facebook.png', 'To make your Facebook ads stand out, write headlines that are enticing and convincing', 'HJYJZ', 1, 0, 'facebook-headlines', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (28, 'Google Ads Headlines', 'google.png', 'Using Google Ads, promote your product with catchy 30-character headlines', 'SGZTW', 1, 0, 'google-headlines', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (29, 'Google Ads Description', 'google.png', 'Create a Google Ads description that stands out and brings in leads', 'YQAFG', 1, 0, 'google-ads', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Parents\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (30, 'Problem-Agitate-Solution', 'problem-agitate-solution.png', 'For your business, develop one of the most efficient copywriting formulas', 'BGXJE', 1, 0, 'problem-agitate-solution', '3', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. VR, Toy\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Freelances, Developers\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (31, 'Academic Essay', 'academic-essay.png', 'Generate well-crafted academic essays for a wide range of subjects in mere seconds', 'SXQBT', 1, 0, 'academic-essay', '1', '1', '{\"field\":[{\"label\":\"Essay Title\",\"placeholder\":\"e.g. Amazing cuisine culture of Mexico\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. taco, sangria, paella\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (32, 'Welcome Email', 'welcome-email.png', 'Make welcome emails for your customers', 'RLXGB', 1, 0, 'email-welcome', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (33, 'Cold Email', 'cold-email.png', 'Using AI, create professional cold emails', 'RDJEZ', 1, 0, 'email-cold', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (34, 'Follow-Up Email', 'follow-up-email.png', 'With only a few clicks, you can create a professional email follow-up', 'XVNNQ', 1, 0, 'email-follow-up', '6', '1', '{\"field\":[{\"label\":\"Your Company/Product Name\",\"placeholder\":\"e.g. Creative Minds\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Describe your product or company\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Following up after\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"event\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (35, 'Creative Stories', 'creative-stories.png', 'Utilize AI to generate imaginative stories based on input text', 'PAKMF', 1, 0, 'creative-stories', '1', '1', '{\"field\":[{\"label\":\"What is your story is about?\",\"placeholder\":\"Provide as much details as possible for creating a story tale\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (36, 'Grammar Checker', 'grammar-checker.png', 'Ensure the content is error-free and lacks any mistakes', 'OORHD', 1, 0, 'grammar-checker', '1', '1', '{\"field\":[{\"label\":\"Include your text here to check\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (37, 'Summarize for 2nd Grader', 'summarize-for-2nd-grader.png', 'Simplify complex content into a summary suitable for a 2nd grade child', 'SGJLU', 1, 0, '2nd-grader', '1', '1', '{\"field\":[{\"label\":\"Include your text to summarize\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (38, 'Video Scripts', 'video-tags.png', 'Create scripts for your videos quickly and begin filming', 'WISHV', 1, 0, 'video-scripts', '5', '1', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"Provide description of what your video is about, provide all details\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (39, 'Amazon Product Description', 'amazon.png', 'Amazon product descriptions that appear on the first page of search results', 'WISTT', 1, 0, 'amazon-product', '7', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"e.g. Amazing cuisine culture of Mexico\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Focus Keywords (comma seperated)\",\"placeholder\":\"e.g. taco, sangria, paella\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (40, 'Article Rewriter ', 'article-rewriter.png', 'Copy an article, paste it in to the program, and with just one click you\'ll have an entirely different article to read.', 'ABCDE', 1, 0, 'article-rewriter', '1', '1', '{\"field\":[{\"label\":\"what is your artical about?\",\"placeholder\":\"what is your artical about?\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (41, 'Content Rephrase ', 'content-rephrase.png', 'Rewrite your content in a different tone and manner to appeal to diverse readers', 'ABCDF', 1, 0, 'Content-Rephrase', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"What would you like to rewrite?\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (42, 'Text Extender', 'text-extender.png', 'Make shorter sentences more interesting and descriptive', 'ABCDG', 1, 0, 'Text-Extender', '1', '1', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"Describe your content here...\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (43, 'Content Shorten', 'content-shorten.png', 'To appeal to various readers, condense your content in a distinct tone and manner', 'ABCDH', 1, 0, 'Content-Shorten', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Describe your content here...\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"Keywords\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (44, 'Quora Answers', 'quora-answers.png', 'Answers to Quora questions that will establish you as an expert', 'ABCDI', 1, 0, 'Quora-Answers', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Information\",\"placeholder\":\"Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (45, 'Bullet Point Answers', 'bullet-point-answers.png', 'Precise and detailed bullet points that answer your consumers\' questions in a timely and helpful manner.', 'ABCDJ', 1, 0, 'Bullet-Point', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (46, 'Definition', 'definition.png', 'A definition for a term, phrase, or acronym that your target customers frequently use', 'ABCDK', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Keyword\",\"placeholder\":\"Keyword\",\"field_type\":\"text_box\",\"field_name\":\"keyword\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (47, 'Answers', 'answers.png', 'Quick, high-quality responses to your audience\'s questions and concerns', 'ABCDL', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Question\",\"placeholder\":\"Question\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (48, 'Questions', 'questions.png', 'A tool for generating polls and inquiries that involve and involve the audience', 'ABCDM', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (49, 'Passive to Active Voice', 'passive-to-active-voice.png', 'Simple and easy method for changing passive statements into active sentences', 'ABCDN', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Content\",\"placeholder\":\"Content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (50, 'Rewrite With Keywords', 'rewrite-with-keywords.png', 'Improve your search engine rankings by rewriting your existing content with more keywords', 'ABCDO', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"What would you like to rewrite?\",\"placeholder\":\"Enter your content to rewrite\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Keywords\",\"placeholder\":\"e.g lemon,fruit\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (51, 'Grammar Correction', 'Grammar Correction.png', 'Check the grammar and correct the sentences with the AI tool', 'ABCDP', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Text\",\"placeholder\":\"Enter your content\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (52, 'Company Vision', 'company-vision.png', 'A vision that attracts the right people, clients, and employees.', 'ABCDQ', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (53, 'Company Mission', 'company-mission.png', 'a statement of your company\'s goals and purpose that is both precise and brief', 'ABCDR', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (54, 'Company Bios', 'company-bios.png', 'A concise company bio that will assist you in connecting with your intended audience', 'ABCDS', 1, 0, 'Definition', '1', '1', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"Company Name\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Company Information\",\"placeholder\":\"Company Information\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (55, 'Emails', 'emails.png', 'Emails with a polished appearance that helps you engage leads and customers', 'ABCDT', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Recipient\",\"placeholder\":\"Recipient\",\"field_type\":\"text_box\",\"field_name\":\"recipient\"},{\"label\":\"Recipient Position\",\"placeholder\":\"Recipient Position\",\"field_type\":\"text_box\",\"field_name\":\"recipient_position\"},{\"label\":\"Description\",\"placeholder\":\"Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (56, 'Emails V2', 'emails-v2.png', 'Better results through personalised email outreach to your target prospects', 'ABCDU', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"From\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"from\"},{\"label\":\"To\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"to\"},{\"label\":\"Goal\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"goal\"},{\"label\":\"Description\",\"placeholder\":\"Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (57, 'Email Subject Lines', 'email-subject-lines.png', 'Effective email subject lines that boost open rates', 'ABCDU', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Email Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (58, 'Email Content', 'email-content.png', 'Effective email content for crafting a polished email body', 'ABCDV', 1, 0, 'Definition', '6', '1', '{\"field\":[{\"label\":\"Email Content Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (59, 'Google Ad Titles', 'google.png', 'Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website', 'ABCDW', 1, 0, 'Definition', '4', '1', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"Product Description\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (60, 'Twitter Tweets', 'twitter.png', 'Create relevant and trending tweets with AI', 'ABCDX', 1, 0, 'Definition', '6', '4', '{\"field\":[{\"label\":\"Topic\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (61, 'LinkedIn Posts', 'linkedIn.png', 'Inspiring posts for LinkedIn that will help you establish authority and trust in your industry', 'ABCDY', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Topic\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (62, 'App and SMS Notifications', 'app-and-SMS-notifications.png', 'Notifications that keep users coming back to your apps, websites, and mobile devices for more', 'ABCDZ', 1, 0, 'Definition', '3', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (63, 'LinkedIn Ad Descriptions', 'linkedIn.png', 'Ad descriptions that highlight your product with professionalism and impact', 'ABCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (64, 'LinkedIn Ad Headlines', 'linkedIn.png', 'High-converting, click-worthy, and attention-grabbing headlines for LinkedIn ads', 'ABCDB', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product name\",\"placeholder\":\"e.g. VR, Honda\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"e.g. Women, Aliens\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"e.g. VR is an innovative device that can allow you to be part of virtual world\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (65, 'YouTube Outlines', 'youTube.png', 'Video outlines that are extremely engaging and simple to create', 'ABCDC', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"What is your video about?\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (66, 'Twitter thread', 'twitter.png', 'Create interesting Twitter threads from a description', 'ABCDD', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (67, 'Social post caption', 'social-post-caption.png', 'Create attention-grabbing captions for social media posts', 'EBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (68, 'you tube intro', 'youTube.png', 'Make a speedy and infectious short clasp for your YouTube video', 'FBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (69, 'Video tags', 'video-tags.png', 'Based on the title of the video, create video tags for it', 'GBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:41', '2026-04-27 14:42:49'), (70, 'Article outlines', 'article-outlines.png', 'Decide on the subject of your essay or thesis', 'HBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"What is your blog is artical? \",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (71, 'SEO Meta Tags (Blog Post)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your blog\'s search engine rankings', 'IBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Blog Title\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Blog Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (72, 'SEO Meta Tags (Homepage)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your home page\'s search rankings', 'JBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Website Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Website Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term/Keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (73, 'SEO Meta Tags (Product Page)', 'meta-description.png', 'A set of meta titles and meta description tags that are optimized to improve your product page\'s search rankings', 'KBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Company Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"company_name\"},{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Product/Service Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"},{\"label\":\"Search Term/Keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (74, 'Amazon Product Titles', 'amazon.png', 'Titles for your product that will help it stand out from the crowd of competitors', 'LBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (75, 'Amazon Product Features', 'amazon.png', 'Benefits and highlights of your items that will make them powerful to customers', 'MBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (76, 'Advertisement idea', 'advertisement-idea.png', 'Create imaginative ad descriptions for a service or product', 'NBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\"Product Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (77, 'Startup Idea', 'startup-idea.png', 'Obtain thoughts on the subjects you have suggested for business startup ideas', 'OBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (78, 'Job Description Generator', 'Job-description-generator.png', 'Build up precise and descriptive job descriptions for the job post', 'PBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (79, 'Resume', 'resume.png', 'Bring a resume with AI that is well-written and strategically organised', 'QBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (80, 'Food Recipe', 'food-recipe.png', 'In one sitting, get ideas for quick and delicious meal recipes', 'RBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (81, 'Creative poetry', 'creative-poetry.png', 'Write poetry that expresses your feelings regarding', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (82, 'Progress Report', 'progress-report.png', 'Get accurate and comprehensive progress reports for your business', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (83, 'Fictional Story Idea', 'fictional-story-idea.png', 'Create fictitious stories with the characters based on the topics you\'ve chosen', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (84, 'Webinar Title ideas', 'webinar-title-ideas.png', 'With this tool, you can come up with catchy webinar titles that people want to listen', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (85, 'Snapchat Ad Title', 'snapcha.png', 'Creating advertisements with catchy and distinctive titles that encourage people to click on your ads and make purchases from your website', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"Audience\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"audience\"},{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (86, 'Shopify Product Description', 'shopify.png', 'Shopify product descriptions that appear on the first page of search results', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Product Name\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"title\"},{\"label\":\"keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (87, 'Personal Bio', 'personal-bio.png', 'A concise personal bio that will assist you in connecting with your intended people', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (88, 'Pinterest caption', 'pinterest.png', 'Use eye-catching captions for your Pinterest pictures to attract attention', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (89, 'Pinterest Pin Title', 'pinterest.png', 'With this tool, you can come up with catchy pin titles that people want to read', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (90, 'Pinterest bio', 'pinterest.png', 'A concise Pinterest bio that will assist you in connecting with your intended followers', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (91, 'Reply to review', 'reply-to-review.png', 'Communicate with informative and approachable replies to the reviews', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (92, 'Slogan Generator', 'slogan-generator.png', 'Generate clear, concise, and branded slogans with the help of AI', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (93, 'TikTok Bio', 'tiktok.png', 'A concise TikTok bio that will assist you in connecting with your followers', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" keywords\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"keywords\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (94, 'Cover Letter', 'cover-letter.png', 'Create cover letters that are tailored, confident, and focused', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (95, 'Presonal Intro', 'presonal-intro.png', 'Create appealing and concise personal introductions', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (96, 'Motivational Quote', 'motivational-quote.png', 'Generate engaging and memorable motivational quotes on various topics', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (97, 'Motivational Speech', 'motivational-speech.png', 'Generate engaging and memorable motivational speeches on various topics', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (98, 'Generate wishes', 'generate-wishes.png', 'Bring on positive compliments, and felicitations with AI', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\"Relation for whom?\",\"placeholder\":\"\",\"field_type\":\"text_box\",\"field_name\":\"relation\"},{\"label\":\"Occasion\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"occasion\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (99, 'Bid on project', 'bid-on-project.png', 'Quick selection of vendors for subcontracting the project, or products that are required for a project', 'SBCDA', 1, 0, 'Definition', '4', '4', '{\"field\":[{\"label\":\" Description\",\"placeholder\":\"\",\"field_type\":\"textarea\",\"field_name\":\"description\"}]}', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:49'); -- -------------------------------------------------------- -- -- Table structure for table `ai_template_categories` -- CREATE TABLE `ai_template_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '1=>active,0=>deactive', `created_by` varchar(255) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ai_template_categories` -- INSERT INTO `ai_template_categories` (`id`, `name`, `status`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'content', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (2, 'blog', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (3, 'Website', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (4, 'Social Media', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (5, 'Video', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (6, 'email', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'), (7, 'other', 1, '0', '2026-04-27 14:42:42', '2026-04-27 14:42:49'); -- -------------------------------------------------------- -- -- Table structure for table `ai_template_languages` -- CREATE TABLE `ai_template_languages` ( `id` bigint(20) UNSIGNED NOT NULL, `language` varchar(255) NOT NULL, `code` varchar(255) NOT NULL, `flag` varchar(255) DEFAULT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ai_template_languages` -- INSERT INTO `ai_template_languages` (`id`, `language`, `code`, `flag`, `status`, `created_at`, `updated_at`) VALUES (1, 'Arabic', 'ar-AE', 'ae.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (2, 'Chinese (Mandarin)', 'cmn-CN', 'cn.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (3, 'Croatian (Croatia)', 'hr-HR', 'hr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (4, 'Czech (Czech Republic)', 'cs-CZ', 'cz.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (5, 'Danish (Denmark)', 'da-DK', 'dk.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (6, 'Dutch (Netherlands)', 'nl-NL', 'nl.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (7, 'English (USA)', 'en-US', 'us.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (8, 'Estonian (Estonia)', 'et-EE', 'ee.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (9, 'Finnish (Finland)', 'fi-FI', 'fi.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (10, 'French (France)', 'fr-FR', 'fr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (11, 'German (Germany)', 'de-DE', 'de.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (12, 'Greek (Greece)', 'el-GR', 'gr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (13, 'Hebrew (Israel)', 'he-IL', 'il.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (14, 'Hindi (India)', 'hi-IN', 'in.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (15, 'Hungarian (Hungary)', 'hu-HU', 'hu.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (16, 'Icelandic (Iceland)', 'is-IS', 'is.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (17, 'Indonesian (Indonesia)', 'id-ID', 'id.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (18, 'Italian (Italy)', 'it-IT', 'it.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (19, 'Japanese (Japan)', 'ja-JP', 'jp.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (20, 'Korean (South Korea)', 'ko-KR', 'kr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (21, 'Malay (Malaysia)', 'ms-MY', 'my.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (22, 'Norwegian (Norway)', 'nb-NO', 'no.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (23, 'Polish (Poland)', 'pl-PL', 'pl.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (24, 'Portuguese (Portugal)', 'pt-PT', 'pt.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (25, 'Russian (Russia)', 'ru-RU', 'ru.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (26, 'Spanish (Spain)', 'es-ES', 'es.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (27, 'Swedish (Sweden)', 'sv-SE', 'se.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (28, 'Turkish (Turkey)', 'tr-TR', 'tr.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (29, 'Portuguese (Brazil)', 'pt-BR', 'br.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (30, 'Romanian (Romania)', 'ro-RO', 'ro.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (31, 'Vietnamese (Vietnam)', 'vi-VN', 'vn.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (32, 'Swahili (Kenya)', 'sw-KE', 'ke.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (33, 'Slovenian (Slovenia)', 'sl-SI', 'si.svg', 1, '2026-04-27 14:42:42', '2026-04-27 14:42:42'); -- -------------------------------------------------------- -- -- Table structure for table `ai_template_prompts` -- CREATE TABLE `ai_template_prompts` ( `id` bigint(20) UNSIGNED NOT NULL, `template_id` varchar(255) DEFAULT NULL, `key` varchar(255) DEFAULT NULL, `value` longtext DEFAULT NULL, `created_by` varchar(255) NOT NULL DEFAULT '0', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ai_template_prompts` -- INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1, '1', 'en-US', 'Write a complete article on this topic:\n\n ##title## \n\nUse following keywords in the article:\n ##keywords## \n\nTone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (2, '1', 'ar-AE', 'اكتب مقالة حول هذا الموضوع:\\n\\n\"##title## \"\\n\\nاستخدم الكلمات الأساسية التالية في المقالة:\\n\"##keywords## \"\\n\\nيجب أن تكون نغمة صوت المقالة:\\n\"##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (3, '1', 'cmn-CN', '写一篇关于这个主题的文章:\\n\\n\" ##title## \"\\n\\n在文章中使用以下关键字:\\n\" ##keywords## \"\\n\\n文章的语气必须是:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (4, '1', 'hr-HR', 'Napišite članak na ovu temu:\\n\\n\" ##title## \"\\n\\nKoristite sljedeće ključne riječi u članku:\\n\" ##keywords## \"\\n\\nTon glasa u članku mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (5, '1', 'cs-CZ', 'Napište článek na toto téma:\\n\\n\" ##title## \"\\n\\nV článku použijte následující klíčová slova:\\n\" ##keywords## \"\\n\\nTón hlasu článku musí být:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (6, '1', 'da-DK', 'Skriv en artikel om dette emne:\\n\\n\" ##title## \"\\n\\nBrug følgende søgeord i artiklen:\\n\" ##keywords## \"\\n\\nTone i artiklen skal være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (7, '1', 'nl-NL', 'Schrijf een artikel over dit onderwerp:\\n\\n\" ##title## \"\\n\\nGebruik de volgende trefwoorden in het artikel:\\n\" ##keywords## \"\\n\\nDe toon van het artikel moet zijn:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (8, '1', 'et-EE', 'Kirjutage sellel teemal artikkel:\\n\\n\" ##title## \"\\n\\nKasutage artiklis järgmisi märksõnu:\\n\" ##keywords## \"\\n\\nArtikli hääletoon peab olema:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (9, '1', 'fi-FI', 'Kirjoita artikkeli tästä aiheesta:\\n\\n\" ##title## \"\\n\\nKäytä artikkelissa seuraavia avainsanoja:\\n\" ##keywords## \"\\n\\nArtikkelin äänensävyn on oltava:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (10, '1', 'fr-FR', 'Ecrire un article sur ce sujet :\\n\\n\" ##title## \"\\n\\nUtilisez les mots clés suivants dans l article :\\n\" ##keywords## \"\\n\\nLe ton de la voix de l article doit être :\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (11, '1', 'de-DE', 'Schreiben Sie einen Artikel zu diesem Thema:\\n\\n\" ##title## \"\\n\\nVerwenden Sie folgende Schlüsselwörter im Artikel:\\n\" ##keywords## \"\\n\\nTonfall des Artikels muss sein:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (12, '1', 'el-GR', 'Γράψτε ένα άρθρο για αυτό το θέμα:\\n\\n\" ##title## \"\\n\\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο άρθρο:\\n\" ##keywords## \"\\n\\nΟ τόνος της φωνής του άρθρου πρέπει να είναι:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (13, '1', 'he-IL', 'כתוב מאמר בנושא זה:\\n\\n\" ##title## \"\\n\\nהשתמש במילות המפתח הבאות במאמר:\\n\" ##keywords## \"\\n\\nטון הדיבור של המאמר חייב להיות:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (14, '1', 'hi-IN', 'इस विषय पर एक लेख लिखें:\\n\\n\" ##title## \"\\n\\nलेख में निम्नलिखित कीवर्ड का प्रयोग करें:\\n\" ##keywords## \"\\n\\nलेख का स्वर इस प्रकार होना चाहिए:\\n\" ##tone_language##\"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (15, '1', 'hu-HU', 'Írjon cikket erről a témáról:\\n\\n\" ##title## \"\\n\\nHasználja a következő kulcsszavakat a cikkben:\\n\" ##keywords## \"\\n\\nA cikk hangnemének a következőnek kell lennie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (16, '1', 'is-IS', 'Skrifaðu grein um þetta efni:\\n\\n\" ##title## \"\\n\\nNotaðu eftirfarandi leitarorð í greininni:\\n\" ##keywords## \"\\n\\nTónn í greininni verður að vera:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (17, '1', 'id-ID', 'Tulis artikel tentang topik ini:\\n\\n\" ##title## \"\\n\\nGunakan kata kunci berikut dalam artikel:\\n\" ##keywords## \"\\n\\nNada suara artikel harus:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (18, '1', 'it-IT', 'Scrivi un articolo su questo argomento:\\n\\n\" ##title## \"\\n\\nUsa le seguenti parole chiave nell articolo:\\n\" ##keywords## \"\\n\\nIl tono di voce dell articolo deve essere:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (19, '1', 'ja-JP', 'このトピックに関する記事を書いてください:\\n\\n\" ##title## \"\\n\\n記事では次のキーワードを使用してください:\\n\" ##keywords## \"\\n\\n記事の口調は次のようにする必要があります:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (20, '1', 'ko-KR', '이 주제에 대한 기사 쓰기:\\n\\n\" ##title## \"\\n\\n문서에서 다음 키워드를 사용하십시오:\\n\" ##keywords## \"\\n\\n기사의 어조는 다음과 같아야 합니다:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (21, '1', 'ms-MY', 'Tulis artikel tentang topik ini:\\n\\n\" ##title## \"\\n\\nGunakan kata kunci berikut dalam artikel:\\n\" ##keywords## \"\\n\\nNada suara artikel mestilah:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (22, '1', 'nb-NO', 'Skriv en artikkel om dette emnet:\\n\\n\" ##title## \"\\n\\nBruk følgende nøkkelord i artikkelen:\\n\" ##keywords## \"\\n\\nTone i artikkelen må være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (23, '1', 'pl-PL', 'Napisz artykuł na ten temat:\\n\\n\" ##title## \"\\n\\nUżyj w artykule następujących słów kluczowych:\\n\" ##keywords## \"\\n\\nTon wypowiedzi artykułu musi być:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (24, '1', 'pt-PT', 'Escreva um artigo sobre este tópico:\\n\\n\" ##title## \"\\n\\nUse as seguintes palavras-chave no artigo:\\n\" ##keywords## \"\\n\\nTom de voz do artigo deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (25, '1', 'ru-RU', 'Напишите статью на эту тему:\\n\\n\" ##title## \"\\n\\nИспользуйте в статье следующие ключевые слова:\\n\" ##keywords## \"\\n\\nТон озвучивания статьи должен быть:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (26, '1', 'es-ES', 'Escribe un artículo sobre este tema:\\n\\n\" ##title## \"\\n\\nUtilice las siguientes palabras clave en el artículo:\\n\" ##keywords## \"\\n\\nEl tono de voz del artículo debe ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (27, '1', 'sv-SE', 'Skriv en artikel om detta ämne:\\n\\n\" ##title## \"\\n\\nAnvänd följande nyckelord i artikeln:\\n\" ##keywords## \"\\n\\nTonfallet för artikeln måste vara:\\n\" ##tone_language## \"\\n\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (28, '1', 'tr-TR', 'Bu konuda bir makale yaz:\\n\\n\" ##title## \"\\n\\nMakalede şu anahtar kelimeleri kullanın:\\n\" ##keywords## \"\\n\\nYazının ses tonu şöyle olmalıdır:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (29, '1', 'pt-BR', 'Escreva um artigo sobre este tópico:\\n\\n\" ##title## \"\\n\\nUse as seguintes palavras-chave no artigo:\\n\" ##keywords## \"\\n\\nTom de voz do artigo deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (30, '1', 'ro-RO', 'Scrieți un articol complet pe acest subiect:\\n\\n\" ##title## \"\\n\\nFolosiți următoarele cuvinte cheie în articol:\\n\" ##keywords## \"\\n\\nTonul vocii al articolului trebuie să fie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (31, '1', 'vi-VN', 'Viết một bài hoàn chỉnh về chủ đề này:\\n\\n\" ##title## \"\\n\\nSử dụng các từ khóa sau trong bài viết:\\n\" ##keywords## \"\\n\\nGiọng điệu của bài viết phải là:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (32, '1', 'sw-KE', 'Andika makala kamili kuhusu mada hii:\\n\\n\" ##title## \"\\n\\nTumia manenomsingi yafuatayo katika makala:\\n\" ##keywords## \"\\n\\nToni ya sauti ya makala lazima iwe:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (33, '1', 'sl-SI', 'Napišite celoten članek o tej temi:\\n\\n\" ##title## \"\\n\\n članku uporabite naslednje ključne besede:\\n\" ##keywords## \"\\n\\nTon glasu članka mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (34, '2', 'en-US', 'Improve and rewrite the text in a creative and smart way:\\n\\n\" ##title## \"\\n\\n Tone of voice of the result must be:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (35, '2', 'ar-AE', 'اتحسين وإعادة كتابة النص بطريقة إبداعية وذكية:\\n\\n\"##title## \"\\n\\nيجب أن تكون نبرة صوت النتيجة:\\n\"##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (36, '2', 'cmn-CN', '以创造性和聪明的方式改进和重写文本:\\n\\n\"##title## \"\\n\\n 结果的语气必须是:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (37, '2', 'hr-HR', 'Poboljšajte i prepišite tekst na kreativan i pametan način:\\n\\n\" ##title## \"\\n\\n Ton glasa rezultata mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (38, '2', 'cs-CZ', 'Vylepšete a přepište text kreativním a chytrým způsobem:\\n\\n\" ##title## \"\\n\\n Tón hlasu výsledku musí být:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (39, '2', 'da-DK', 'Forbedre og omskriv teksten på en kreativ og smart måde:\\n\\n\" ##title## \"\\n\\n Tonen i resultatet skal være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (40, '2', 'nl-NL', 'Verbeter en herschrijf de tekst op een creatieve en slimme manier:\\n\\n\" ##title## \"\\n\\n Tone of voice van het resultaat moet zijn:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (41, '2', 'et-EE', 'Täiustage ja kirjutage teksti loominguliselt ja nutikalt ümber:\\n\\n\" ##title## \"\\n\\n Tulemuse hääletoon peab olema:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (42, '2', 'fi-FI', 'Paranna ja kirjoita tekstiä uudelleen luovalla ja älykkäällä tavalla:\\n\\n\" ##title## \"\\n\\n Tuloksen äänensävyn on oltava:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (43, '2', 'fr-FR', 'Améliorez et réécrivez le texte de manière créative et intelligente :\\n\\n\" ##title## \"\\n\\n Le ton de la voix du résultat doit être :\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (44, '2', 'de-DE', 'Verbessern und überarbeiten Sie den Text auf kreative und intelligente Weise:\\n\\n\" ##title## \"\\n\\n Tonfall des Ergebnisses muss sein:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (45, '2', 'el-GR', 'Βελτιώστε και ξαναγράψτε το κείμενο με δημιουργικό και έξυπνο τρόπο:\\n\\n\" ##title## \"\\n\\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (46, '2', 'he-IL', 'שפר ושכתב את הטקסט בצורה יצירתית וחכמה:\\n\\n\" ##title## \"\\n\\n גוון הקול של התוצאה חייב להיות:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (47, '2', 'hi-IN', 'रचनात्मक और स्मार्ट तरीके से टेक्स्ट को सुधारें और फिर से लिखें:\\n\\n\" ##title## \"\\n\\n परिणाम की आवाज़ का स्वर होना चाहिए:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (48, '2', 'hu-HU', 'Javítsa és írja át a szöveget kreatív és okos módon:\\n\\n\" ##title## \"\\n\\n Az eredmény hangszínének a következőnek kell lennie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (49, '2', 'is-IS', 'Bættu og endurskrifaðu textann á skapandi og snjallan hátt:\\n\\n\" ##title## \"\\n\\n Röddtónn niðurstöðunnar verður að vera:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (50, '2', 'id-ID', 'Tingkatkan dan tulis ulang teks dengan cara yang kreatif dan cerdas:\\n\\n\" ##title## \"\\n\\n Nada suara hasil harus:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (51, '2', 'it-IT', 'Migliora e riscrivi il testo in modo creativo e intelligente:\\n\\n\" ##title## \"\\n\\n Il tono di voce del risultato deve essere:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (52, '2', 'ja-JP', '創造的かつスマートな方法でテキストを改善および書き直します:\\n\\n\" ##title## \"\\n\\n 結果の声の調子:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (53, '2', 'ko-KR', '창의적이고 스마트한 방식으로 텍스트를 개선하고 다시 작성:\\n\\n\" ##title## \"\\n\\n 결과의 음성 톤은 다음과 같아야 합니다.\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (54, '2', 'ms-MY', 'Tingkatkan dan tulis semula teks dengan cara yang kreatif dan pintar:\\n\\n\" ##title## \"\\n\\n Nada suara hasil carian mestilah:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (55, '2', 'nb-NO', 'Forbedre og omskriv teksten på en kreativ og smart måte:\\n\\n\" ##title## \"\\n\\n Tonen til resultatet må være:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (56, '2', 'pl-PL', 'Popraw i przepisz tekst w kreatywny i inteligentny sposób:\\n\\n\" ##title## \"\\n\\n Ton głosu wyniku musi być:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (57, '2', 'pt-PT', 'Melhorar e reescrever o texto de forma criativa e inteligente:\\n\\n\" ##title## \"\\n\\n Tom de voz do resultado deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (58, '2', 'ru-RU', 'Улучшите и перепишите текст творчески и по-умному:\\n\\n\" ##title## \"\\n\\n Тон голоса результата должен быть:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (59, '2', 'es-ES', 'Mejora y reescribe el texto de forma creativa e inteligente:\\n\\n\" ##title## \"\\n\\n El tono de voz del resultado debe ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (60, '2', 'sv-SE', 'Förbättra och skriv om texten på ett kreativt och smart sätt:\\n\\n\" ##title## \"\\n\\n Tonen i resultatet måste vara:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (61, '2', 'tr-TR', 'Metni yaratıcı ve akıllı bir şekilde iyileştirin ve yeniden yazın:\\n\\n\" ##title## \"\\n\\n Sonucun ses tonu şöyle olmalıdır:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (62, '2', 'pt-BR', 'Melhorar e reescrever o texto de forma criativa e inteligente:\\n\\n\" ##title## \"\\n\\n Tom de voz do resultado deve ser:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (63, '2', 'ro-RO', 'Îmbunătățiți și rescrieți textul într-un mod creativ și inteligent:\\n\\n\" ##title## \"\\n\\n Tonul vocii rezultatului trebuie să fie:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (64, '2', 'vi-VN', 'Cải thiện và viết lại văn bản một cách sáng tạo và thông minh:\\n\\n\" ##title## \"\\n\\n Giọng điệu của kết quả phải là:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (65, '2', 'sw-KE', 'Boresha na uandike upya maandishi kwa njia ya kibunifu na ya busara:\\n\\n\" ##title## \"\\n\\n Toni ya sauti ya matokeo lazima iwe:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (66, '2', 'sl-SI', 'Izboljšajte in prepišite besedilo na kreativen in pameten način:\\n\\n\" ##title## \"\\n\\n Ton glasu rezultata mora biti:\\n\" ##tone_language## \"\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (67, '3', 'en-US', 'Write a large and meaningful paragraph on this topic:\\n\\n ##title## \\n\\nUse following keywords in the paragraph:\\n ##keywords## \\n\\nTone of voice of the paragraph must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (68, '3', 'ar-AE', 'اكتب فقرة كبيرة وذات مغزى حول هذا الموضوع:\\n\\n ##title##\\n\\nاستخدم الكلمات الأساسية التالية في الفقرة:\\n ##keywords## \\n\\nيجب أن تكون نغمة الصوت في الفقرة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (69, '3', 'cmn-CN', '就此主题写一段有意义的长篇大论:\\n\\n ##title## \\n\\n在段落中使用以下关键字:\\n ##keywords## \\n\\n段落的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (70, '3', 'hr-HR', 'Napišite veliki i smisleni odlomak o ovoj temi:\\n\\n ##title## \\n\\nKoristite sljedeće ključne riječi u odlomku:\\n ##keywords## \\n\\nTon glasa odlomka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (71, '3', 'cs-CZ', 'Napište velký a smysluplný odstavec na toto téma:\\n\\n ##title## \\n\\nV odstavci použijte následující klíčová slova:\\n ##keywords## \\n\\nTón hlasu odstavce musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (72, '3', 'da-DK', 'Skriv et stort og meningsfuldt afsnit om dette emne:\\n\\n ##title## \\n\\nBrug følgende nøgleord i afsnittet:\\n ##keywords## \\n\\nTone i afsnittet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (73, '3', 'nl-NL', 'Schrijf een grote en zinvolle paragraaf over dit onderwerp:\\n\\n ##title## \\n\\nGebruik de volgende trefwoorden in de alinea:\\n ##keywords## \\n\\nDe toon van de alinea moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (74, '3', 'et-EE', 'Kirjutage sellel teemal suur ja sisukas lõik:\\n\\n ##title## \\n\\nKasutage lõigus järgmisi märksõnu:\\n ##keywords## \\n\\nLõigu hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (75, '3', 'fi-FI', 'Kirjoita tästä aiheesta suuri ja merkityksellinen kappale:\\n\\n ##title## \\n\\nKäytä kappaleessa seuraavia avainsanoja:\\n ##keywords## \\n\\nKappaleen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (76, '3', 'fr-FR', 'Écrivez un paragraphe long et significatif sur ce sujet :\\n\\n ##title## \\n\\nUtilisez les mots clés suivants dans le paragraphe :\\n ##keywords## \\n\\nLe ton de la voix du paragraphe doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (77, '3', 'de-DE', 'Schreiben Sie einen großen und aussagekräftigen Absatz zu diesem Thema:\\n\\n ##title## \\n\\nVerwenden Sie folgende Schlüsselwörter im Absatz:\\n ##keywords## \\n\\nTonlage des Absatzes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (78, '3', 'el-GR', 'Γράψτε μια μεγάλη και ουσιαστική παράγραφο για αυτό το θέμα:\\n\\n ##title## \\n\\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην παράγραφο:\\n ##keywords## \\n\\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (79, '3', 'he-IL', 'כתוב פסקה גדולה ומשמעותית בנושא זה:\\n\\n ##title## \\n\\nהשתמש במילות המפתח הבאות בפסקה:\\n ##keywords## \\n\\nטון הדיבור של הפסקה חייב להיות:\\n ##tone_language##\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (80, '3', 'hi-IN', 'इस विषय पर एक बड़ा और सार्थक पैराग्राफ लिखें:\\n\\n ##title## \\n\\nपैराग्राफ में निम्नलिखित कीवर्ड का प्रयोग करें:\\n ##keywords## \\n\\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\\n ##tone_language##\\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (81, '3', 'hu-HU', 'Írj egy nagy és értelmes bekezdést erről a témáról:\\n\\n ##title## \\n\\nHasználja a következő kulcsszavakat a bekezdésben:\\n ##keywords## \\n\\nA bekezdés hangszínének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (82, '3', 'is-IS', 'Skrifaðu stóra og þýðingarmikla málsgrein um þetta efni:\\n\\n ##title## \\n\\nNotaðu eftirfarandi leitarorð í málsgreininni:\\n ##keywords## \\n\\nTónn málsgreinarinnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (83, '3', 'id-ID', 'Tulis paragraf yang besar dan bermakna tentang topik ini:\\n\\n ##title## \\n\\nGunakan kata kunci berikut dalam paragraf:\\n ##keywords## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (84, '3', 'it-IT', 'Scrivi un paragrafo ampio e significativo su questo argomento:\\n\\n ##title## \\n\\nUsare le seguenti parole chiave nel paragrafo:\\n ##keywords## \\n\\nIl tono di voce del paragrafo deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (85, '3', 'ja-JP', 'このトピックについて大きくて意味のある段落を書いてください:\\n\\n ##title## \\n\\n段落内で次のキーワードを使用してください:\\n ##keywords## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (86, '3', 'ko-KR', '이 주제에 대해 크고 의미 있는 단락 작성:\\n\\n ##title## \\n\\n단락에서 다음 키워드를 사용하십시오:\\n ##keywords## \\n\\n문단의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (87, '3', 'ms-MY', 'Tulis perenggan yang besar dan bermakna tentang topik ini:\\n\\n ##title## \\n\\nGunakan kata kunci berikut dalam perenggan:\\n ##keywords## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (88, '3', 'nb-NO', 'Skriv et stort og meningsfullt avsnitt om dette emnet:\\n\\n ##title## \\n\\nBruk følgende nøkkelord i avsnittet:\\n ##keywords## \\n\\nTone i avsnittet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (89, '3', 'pl-PL', 'Napisz duży i znaczący akapit na ten temat:\\n\\n ##title## \\n\\nUżyj następujących słów kluczowych w akapicie:\\n ##keywords## \\n\\nTon głosu akapitu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (90, '3', 'pt-PT', 'Escreva um parágrafo grande e significativo sobre este tópico:\\n\\n ##title## \\n\\nUse as seguintes palavras-chave no parágrafo:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (91, '3', 'ru-RU', 'Напишите большой и осмысленный абзац на эту тему:\\n\\n ##title## \\n\\nИспользуйте следующие ключевые слова в абзаце:\\n ##keywords## \\n\\nТон абзаца должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (92, '3', 'es-ES', 'Escribe un párrafo extenso y significativo sobre este tema:\\n\\n ##title## \\n\\nUtilice las siguientes palabras clave en el párrafo:\\n ##keywords## \\n\\nEl tono de voz del párrafo debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (93, '3', 'sv-SE', 'Skriv ett stort och meningsfullt stycke om detta ämne:\\n\\n ##title## \\n\\nAnvänd följande nyckelord i stycket:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (94, '3', 'tr-TR', 'Bu konu hakkında geniş ve anlamlı bir paragraf yaz:\\n\\n ##title## \\n\\nParagrafta şu anahtar sözcükleri kullanın:\\n ##keywords## \\n\\nParagrafın ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (95, '3', 'pt-BR', 'Escreva um parágrafo grande e significativo sobre este tópico:\\n\\n ##title## \\n\\nUse as seguintes palavras-chave no parágrafo:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (96, '3', 'ro-RO', 'Scrieți un paragraf mare și semnificativ pe acest subiect:\\n\\n ##title## \\n\\nFolosiți următoarele cuvinte cheie în paragraf:\\n ##keywords## \\n\\nTonul vocii al paragrafului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (97, '3', 'vi-VN', 'Viết một đoạn văn lớn và có ý nghĩa về chủ đề này:\\n\\n ##title## \\n\\nSử dụng các từ khóa sau trong đoạn văn:\\n ##keywords## \\n\\nGiọng điệu của đoạn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (98, '3', 'sw-KE', 'Andika aya kubwa na yenye maana juu ya mada hii:\\n\\n ##title## \\n\\nTumia manenomsingi yafuatayo katika aya:\\n ##keywords## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (99, '3', 'sl-SI', 'Napišite velik in smiseln odstavek o tej temi:\\n\\n ##title## \\n\\nV odstavku uporabite naslednje ključne besede:\\n ##keywords## \\n\\nTon glasu odstavka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (100, '3', 'th-TH', 'เขียนย่อหน้าใหญ่และมีความหมายในหัวข้อนี้:\\n\\n ##title## \\n\\nใช้คำหลักต่อไปนี้ในย่อหน้า:\\n ##keywords## \\n\\nน้ำเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (101, '3', 'uk-UA', 'Напишіть великий і змістовний абзац на цю тему:\\n\\n ##title## \\n\\nВикористовуйте такі ключові слова в абзаці:\\n ##keywords## \\n\\nТон абзацу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (102, '3', 'lt-LT', 'Parašykite didelę ir prasmingą pastraipą šia tema:\\n\\n ##title## \\n\\nPastraipoje naudokite šiuos raktinius žodžius:\\n ##keywords## \\n\\nPastraipos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (103, '3', 'bg-BG', 'Напишете голям и смислен параграф по тази тема:\\n\\n ##title## \\n\\nИзползвайте следните ключови думи в параграфа:\\n ##keywords## \\n\\nТонът на гласа на абзаца трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (104, '4', 'en-US', 'Write short, simple and informative talking points for:\\n\\n ##title## \\n\\nAnd also similar talking points for subheadings:\\n ##keywords## \\n\\nTone of voice of the paragraph must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (105, '4', 'ar-AE', 'اكتب نقاط حديث قصيرة وبسيطة وغنية بالمعلومات من أجل:\\n\\n ##title## \\n\\nونقاط الحديث المشابهة للعناوين الفرعية:\\n ##keywords## \\n\\nيجب أن تكون نغمة الصوت في الفقرة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (106, '4', 'cmn-CN', '为以下内容编写简短、简单且信息丰富的谈话要点:\\n\\n ##title## \\n\\n以及副标题的类似谈话要点:\\n ##keywords## \\n\\n段落的语气必须是 :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (107, '4', 'hr-HR', 'Napišite kratke, jednostavne i informativne teme za:\\n\\n ##title## \\n\\nI također slične teme za podnaslove:\\n ##keywords## \\n\\nTon glasa odlomka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (108, '4', 'cs-CZ', 'Napište krátké, jednoduché a informativní body pro:\\n\\n ##title## \\n\\nA také podobná témata pro podnadpisy:\\n ##keywords## \\n\\nTón hlasu odstavce musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (109, '4', 'da-DK', 'Skriv korte, enkle og informative talepunkter til:\\n\\n ##title## \\n\\nOg også lignende talepunkter for underoverskrifter:\\n ##keywords## \\n\\nTonefaldet i afsnittet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (110, '4', 'nl-NL', 'Schrijf korte, eenvoudige en informatieve gespreksonderwerpen voor:\\n\\n ##title## \\n\\nEn ook gelijkaardige gespreksonderwerpen voor tussenkopjes:\\n ##keywords## \\n\\nDe toon van de alinea moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (111, '4', 'et-EE', 'Kirjutage lühikesed, lihtsad ja informatiivsed jutupunktid:\\n\\n ##title## \\n\\nJa ka sarnased jutupunktid alapealkirjade jaoks:\\n ##keywords## \\n\\nLõigu hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (112, '4', 'fi-FI', 'Kirjoita lyhyitä, yksinkertaisia ja informatiivisia puheenaiheita:\\n\\n ##title## \\n\\nJa myös samanlaisia puheenaiheita alaotsikoille:\\n ##keywords## \\n\\nKappaleen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (113, '4', 'fr-FR', 'Rédigez des points de discussion courts, simples et informatifs pour :\\n\\n ##title## \\n\\nEt également des points de discussion similaires pour les sous-titres :\\n ##keywords## \\n\\nLe ton de la voix du paragraphe doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (114, '4', 'de-DE', 'Schreiben Sie kurze, einfache und informative Gesprächsthemen für:\\n\\n ##title## \\n\\nUnd auch ähnliche Gesprächsthemen für Unterüberschriften:\\n ##keywords## \\n\\nTonlage des Absatzes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (115, '4', 'el-GR', 'Γράψτε σύντομα, απλά και κατατοπιστικά σημεία ομιλίας για:\\n\\n ##title## \\n\\nΚαι επίσης παρόμοια σημεία συζήτησης για υποτίτλους:\\n ##keywords## \\n\\nΟ τόνος της φωνής της παραγράφου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (116, '4', 'he-IL', 'כתוב נקודות דיבור קצרות, פשוטות ואינפורמטיביות עבור:\\n\\n ##title## \\n\\nוגם נקודות דיבור דומות עבור כותרות משנה:\\n ##keywords## \\n\\nטון הדיבור של הפסקה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (117, '4', 'hi-IN', 'के लिए संक्षिप्त, सरल और जानकारीपूर्ण चर्चा बिंदु लिखें:\\n\\n ##title## \\n\\nऔर उपशीर्षक के लिए समान चर्चा बिंदु:\\n ##keywords## \\n\\nपैराग्राफ की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (118, '4', 'hu-HU', 'Írjon rövid, egyszerű és informatív beszédpontokat:\\n\\n ##title## \\n\\nÉs hasonló beszédpontok az alcímekhez:\\n ##keywords## \\n\\nA bekezdés hangszínének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (119, '4', 'is-IS', 'Skrifaðu stutta, einfalda og upplýsandi umræðupunkta fyrir:\\n\\n ##title## \\n\\nOg líka svipaðar umræður fyrir undirfyrirsagnir:\\n ##keywords## \\n\\nTónn málsgreinarinnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (120, '4', 'id-ID', 'Tulis poin pembicaraan singkat, sederhana dan informatif untuk:\\n\\n ##title## \\n\\nDan juga poin pembicaraan serupa untuk subjudul:\\n ##keywords## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (121, '4', 'it-IT', 'Scrivi punti di discussione brevi, semplici e informativi per:\\n\\n ##title## \\n\\nE anche punti di discussione simili per i sottotitoli:\\n ##keywords## \\n\\nIl tono di voce del paragrafo deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (122, '4', 'ja-JP', '短く、シンプルで有益な論点を書いてください:\\n\\n ##title## \\n\\n小見出しにも同様の要点があります:\\n ##keywords## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (123, '4', 'ko-KR', '다음에 대한 짧고 간단하며 유익한 요점을 작성하십시오:\\n\\n ##title## \\n\\n또한 부제목에 대한 유사한 논점:\\n ##keywords## \\n\\n문단의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (124, '4', 'ms-MY', 'Tulis perkara perbualan yang pendek, ringkas dan bermaklumat untuk:\\n\\n ##title## \\n\\nDan juga perkara yang serupa untuk tajuk kecil:\\n ##keywords## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (125, '4', 'nb-NO', 'Skriv korte, enkle og informative samtalepunkter for:\\n\\n ##title## \\n\\nOg også lignende samtalepunkter for underoverskrifter:\\n ##keywords## \\n\\nTone i avsnittet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (126, '4', 'pl-PL', 'Napisz krótkie, proste i pouczające przemówienia dla:\\n\\n ##title## \\n\\nA także podobne uwagi do podtytułów:\\n ##keywords## \\n\\nTon głosu akapitu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (127, '4', 'pt-PT', 'Escreva pontos de conversa curtos, simples e informativos para:\\n\\n ##title## \\n\\nE também pontos de discussão semelhantes para subtítulos:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (128, '4', 'ru-RU', 'Напишите короткие, простые и информативные тезисы для:\\n\\n ##title## \\n\\nА также аналогичные темы для подзаголовков:\\n ##keywords## \\n\\nТон абзаца должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (129, '4', 'es-ES', 'Escribe puntos de conversación breves, sencillos e informativos para:\\n\\n ##title## \\n\\nY también puntos de conversación similares para los subtítulos:\\n ##keywords## \\n\\nEl tono de voz del párrafo debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (130, '4', 'sv-SE', 'Skriv korta, enkla och informativa samtalspunkter för:\\n\\n ##title## \\n\\nOch även liknande diskussionspunkter för underrubriker:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (131, '4', 'tr-TR', 'Skriv korta, enkla och informativa samtalspunkter för:\\n\\n ##title## \\n\\nOch även liknande diskussionspunkter för underrubriker:\\n ##keywords## \\n\\nTonfallet i stycket måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (132, '4', 'pt-BR', 'Escreva pontos de conversa curtos, simples e informativos para:\\n\\n ##title## \\n\\nE também pontos de discussão semelhantes para subtítulos:\\n ##keywords## \\n\\nTom de voz do parágrafo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (133, '4', 'ro-RO', 'Scrieți puncte de discuție scurte, simple și informative pentru:\\n\\n ##title## \\n\\nȘi, de asemenea, puncte de discuție similare pentru subtitluri:\\n ##keywords## \\n\\nTonul vocii al paragrafului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (134, '4', 'vi-VN', 'Viết luận điểm ngắn gọn, đơn giản và nhiều thông tin cho:\\n\\n ##title## \\n\\nVà cả những luận điểm tương tự cho các tiêu đề phụ:\\n ##keywords## \\n\\nGiọng điệu của đoạn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (135, '4', 'sw-KE', 'Andika vidokezo vifupi, rahisi na vya kuelimisha vya:\\n\\n ##title## \\n\\nNa pia hoja sawa za mazungumzo kwa vichwa vidogo:\\n ##keywords## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (136, '4', 'sl-SI', 'Napišite kratke, preproste in informativne teme za:\\n\\n ##title## \\n\\nIn tudi podobne teme za podnaslove:\\n ##keywords## \\n\\nTon glasu odstavka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (137, '4', 'th-TH', 'เขียนประเด็นการพูดคุยที่สั้น เรียบง่าย และให้ข้อมูลสำหรับ:\\n\\n ##title## \\n\\nและประเด็นการพูดคุยที่คล้ายกันสำหรับหัวข้อย่อย:\\n ##keywords## \\n\\nน้ำเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (138, '4', 'uk-UA', 'Напишіть короткі, прості та інформативні теми для:\\n\\n ##title## \\n\\nА також подібні теми для підзаголовків:\\n ##keywords## \\n\\nТон абзацу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (139, '4', 'lt-LT', 'Parašykite trumpus, paprastus ir informatyvius pokalbio taškus:\\n\\n ##title## \\n\\nIr taip pat panašių pokalbių temų paantraštėms:\\n ##keywords## \\n\\nPastraipos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (140, '4', 'bg-BG', 'Напишете кратки, прости и информативни точки за разговор за:\\n\\n ##title## \\n\\nИ също подобни теми за подзаглавия:\\n ##keywords## \\n\\nТонът на гласа на абзаца трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (141, '5', 'en-US', 'Write pros and cons of these products:\\n\\n ##title## \\n\\nUse following product description:\\n ##keywords## \\n\\nTone of voice of the pros and cons must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (142, '5', 'ar-AE', 'اكتب إيجابيات وسلبيات هذه المنتجات:\\n\\n ##title## \\n\\nاستخدم وصف المنتج التالي:\\n ##keywords## \\n\\nيجب أن تكون نغمة الإيجابيات والسلبيات:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (143, '5', 'cmn-CN', '写下这些产品的优缺点:\\n\\n ##title## \\n\\n使用以下产品描述:\\n ##keywords## \\n\\n正反的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (144, '5', 'hr-HR', 'Napišite prednosti i nedostatke ovih proizvoda:\\n\\n ##title## \\n\\nKoristite sljedeći opis proizvoda:\\n ##keywords## \\n\\nTon glasa za i protiv mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (145, '5', 'cs-CZ', 'Napište výhody a nevýhody těchto produktů:\\n\\n ##title## \\n\\nPoužijte následující popis produktu:\\n ##keywords## \\n\\nTón hlasu pro a proti musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (146, '5', 'da-DK', 'Skriv fordele og ulemper ved disse produkter:\\n\\n ##title## \\n\\nBrug følgende produktbeskrivelse:\\n ##keywords## \\n\\nTone af fordele og ulemper skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (147, '5', 'nl-NL', 'Schrijf de voor- en nadelen van deze producten op:\\n\\n ##title## \\n\\nGebruik de volgende productbeschrijving:\\n ##keywords## \\n\\nDe toon van de voor- en nadelen moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (148, '5', 'et-EE', 'Kirjutage nende toodete plussid ja miinused:\\n\\n ##title## \\n\\nKasutage järgmist tootekirjeldust:\\n ##keywords## \\n\\nPusside ja miinuste hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (149, '5', 'fi-FI', 'Kirjoita näiden tuotteiden hyvät ja huonot puolet:\\n\\n ##title## \\n\\nKäytä seuraavaa tuotekuvausta:\\n ##keywords## \\n\\nPussien ja haittojen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (150, '5', 'fr-FR', 'Écrivez les avantages et les inconvénients de ces produits :\\n\\n ##title## \\n\\nUtilisez la description de produit suivante :\\n ##keywords## \\n\\nLe ton de la voix des pour et des contre doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (151, '5', 'de-DE', 'Schreiben Sie Vor- und Nachteile dieser Produkte auf:\\n\\n ##title## \\n\\nFolgende Produktbeschreibung verwenden:\\n ##keywords## \\n\\nTonfall der Vor- und Nachteile muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (152, '5', 'el-GR', 'Γράψτε τα πλεονεκτήματα και τα μειονεκτήματα αυτών των προϊόντων:\\n\\n ##title## \\n\\nΧρησιμοποιήστε την ακόλουθη περιγραφή προϊόντος:\\n ##keywords## \\n\\nΟ τόνος της φωνής των πλεονεκτημάτων και των μειονεκτημάτων πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (153, '5', 'he-IL', 'כתוב יתרונות וחסרונות של המוצרים האלה:\\n\\n ##title## \\n\\nהשתמש בתיאור המוצר הבא:\\n ##keywords## \\n\\nטון הדיבור של היתרונות והחסרונות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (154, '5', 'hi-IN', 'इन उत्पादों के फायदे और नुकसान लिखें:\\n\\n ##title## \\n\\nनिम्न उत्पाद विवरण का उपयोग करें:\\n ##keywords## \\n\\n पक्ष और विपक्ष की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (155, '5', 'hu-HU', 'Írja le ezeknek a termékeknek előnyeit és hátrányait:\\n\\n ##title## \\n\\nHasználja a következő termékleírást:\\n ##keywords## \\n\\nAz előnyök és hátrányok hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (156, '5', 'is-IS', 'Skrifaðu kosti og galla þessara vara:\\n\\n ##title## \\n\\nNotaðu eftirfarandi vörulýsingu:\\n ##keywords## \\n\\nTónn fyrir kosti og galla verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (157, '5', 'id-ID', 'Tulis pro dan kontra dari produk ini:\\n\\n ##title## \\n\\nGunakan deskripsi produk berikut:\\n ##keywords## \\n\\nNada suara pro dan kontra harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (158, '5', 'it-IT', 'Scrivi pro e contro di questi prodotti:\\n\\n ##title## \\n\\nUsa la seguente descrizione del prodotto:\\n ##keywords## \\n\\nIl tono di voce dei pro e dei contro deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (159, '5', 'ja-JP', 'これらの製品の長所と短所を書いてください:\\n\\n ##title## \\n\\n次の製品説明を使用してください:\\n ##keywords## \\n\\n賛成派と反対派の口調は次のとおりでなければなりません:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (160, '5', 'ko-KR', '이 제품의 장단점을 작성하십시오:\\n\\n ##title## \\n\\n다음 제품 설명을 사용하십시오:\\n ##keywords## \\n\\n장단점의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (161, '5', 'ms-MY', 'Tulis kebaikan dan keburukan produk ini:\\n\\n ##title## \\n\\nGunakan penerangan produk berikut:\\n ##keywords## \\n\\nNada suara kebaikan dan keburukan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (162, '5', 'nb-NO', 'Skriv fordeler og ulemper med disse produktene:\\n\\n ##title## \\n\\nBruk følgende produktbeskrivelse:\\n ##keywords## \\n\\nTone for fordeler og ulemper må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (163, '5', 'pl-PL', 'Napisz wady i zalety tych produktów:\\n\\n ##title## \\n\\nUżyj następującego opisu produktu:\\n ##keywords## \\n\\nTon głosu za i przeciw musi być następujący:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (164, '5', 'pt-PT', 'Escreva prós e contras destes produtos:\\n\\n ##title## \\n\\nUse a seguinte descrição do produto:\\n ##keywords## \\n\\nTom de voz dos prós e contras deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (165, '5', 'ru-RU', 'Напишите плюсы и минусы этих продуктов:\\n\\n ##title## \\n\\nИспользуйте следующее описание продукта:\\n ##keywords## \\n\\nТон озвучивания плюсов и минусов должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (166, '5', 'es-ES', 'Escriba pros y contras de estos productos:\\n\\n ##title## \\n\\nUtilice la siguiente descripción del producto:\\n ##keywords## \\n\\nEl tono de voz de los pros y los contras debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (167, '5', 'sv-SE', 'Skriv för- och nackdelar med dessa produkter:\\n\\n ##title## \\n\\nAnvänd följande produktbeskrivning:\\n ##keywords## \\n\\nTonfall för för- och nackdelar måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (168, '5', 'tr-TR', 'Bu ürünlerin artılarını ve eksilerini yazın:\\n\\n ##title## \\n\\nAşağıdaki ürün açıklamasını kullanın:\\n ##keywords## \\n\\nSes tonu artıları ve eksileri şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (169, '5', 'pt-BR', 'Escreva prós e contras destes produtos:\\n\\n ##title## \\n\\nUse a seguinte descrição do produto:\\n ##keywords## \\n\\nTom de voz dos prós e contras deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (170, '5', 'ro-RO', 'Scrieți argumentele pro și contra acestor produse:\\n\\n ##title## \\n\\nUtilizați următoarea descriere a produsului:\\n ##keywords## \\n\\nTonul vocii argumentelor pro și contra trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (171, '5', 'vi-VN', 'Viết ưu và nhược điểm của những sản phẩm này:\\n\\n ##title## \\n\\nSử dụng mô tả sản phẩm sau:\\n ##keywords## \\n\\nGiọng điệu của những ưu và nhược điểm phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (172, '5', 'sw-KE', 'Andika faida na hasara za bidhaa hizi:\\n\\n ##title## \\n\\nTumia maelezo ya bidhaa yafuatayo:\\n ##keywords## \\n\\nToni ya sauti ya faida na hasara lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (173, '5', 'sl-SI', 'Napišite prednosti in slabosti teh izdelkov:\\n\\n ##title## \\n\\nUporabi naslednji opis izdelka:\\n ##keywords## \\n\\nTon glasu prednosti in slabosti mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (174, '5', 'th-TH', 'เขียนข้อดีข้อเสียของผลิตภัณฑ์เหล่านี้:\\n\\n ##title## \\n\\nใช้คำอธิบายผลิตภัณฑ์ต่อไปนี้:\\n ##keywords## \\n\\nเสียงของข้อดีและข้อเสียต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (175, '5', 'uk-UA', 'Напишіть плюси та мінуси цих продуктів:\\n\\n ##title## \\n\\nВикористовуйте такий опис продукту:\\n ##keywords## \\n\\nТон голосу плюсів і мінусів має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (176, '5', 'lt-LT', 'Parašykite šių produktų privalumus ir trūkumus:\\n\\n ##title## \\n\\nNaudokite šį produkto aprašymą:\\n ##keywords## \\n\\nPrivalumai ir trūkumai turi būti tokie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (177, '5', 'bg-BG', 'Напишете плюсовете и минусите на тези продукти:\\n\\n ##title## \\n\\nИзползвайте следното описание на продукта:\\n ##keywords## \\n\\nТонът на гласа на плюсовете и минусите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (178, '6', 'en-US', 'Generate 10 catchy blog titles for:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (179, '6', 'ar-AE', 'قم بإنشاء 10 عناوين مدونة جذابة لـ:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (180, '6', 'cmn-CN', '为以下内容生成 10 个吸引人的博客标题:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (181, '6', 'hr-HR', 'Generiraj 10 privlačnih naslova bloga za:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (182, '6', 'cs-CZ', 'Vygenerujte 10 chytlavých názvů blogů pro:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (183, '6', 'da-DK', 'Generer 10 fængende blogtitler til:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (184, '6', 'nl-NL', 'Genereer 10 pakkende blogtitels voor:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (185, '6', 'et-EE', 'Loo 10 meeldejäävat ajaveebi pealkirja:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (186, '6', 'fi-FI', 'Luo 10 tarttuvaa blogiotsikkoa:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (187, '6', 'fr-FR', 'Générez 10 titres de blog accrocheurs pour :\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (188, '6', 'de-DE', 'Generiere 10 einprägsame Blog-Titel für:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (189, '6', 'el-GR', 'Δημιουργήστε 10 εντυπωσιακούς τίτλους ιστολογίου για:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (190, '6', 'he-IL', 'צור 10 כותרות בלוג קליטות עבור:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (191, '6', 'hi-IN', '10 आकर्षक ब्लॉग शीर्षक उत्पन्न करें:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (192, '6', 'hu-HU', 'Generálj 10 fülbemászó blogcímet a következőhöz:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (193, '6', 'is-IS', 'Búðu til 10 grípandi bloggtitla fyrir:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (194, '6', 'id-ID', 'Hasilkan 10 judul blog menarik untuk:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (195, '6', 'it-IT', 'Genera 10 titoli di blog accattivanti per:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (196, '6', 'ja-JP', 'キャッチーなブログ タイトルを 10 個生成します:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (197, '6', 'ko-KR', '다음에 대한 10개의 눈길을 끄는 블로그 제목 생성:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (198, '6', 'ms-MY', 'Jana 10 tajuk blog yang menarik untuk:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (199, '6', 'nb-NO', 'Generer 10 fengende bloggtitler for:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (200, '6', 'pl-PL', 'Wygeneruj 10 chwytliwych tytułów blogów dla:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (201, '6', 'pt-PT', 'Gerar 10 títulos de blog cativantes para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (202, '6', 'ru-RU', 'Создайте 10 броских заголовков блога для:\\n\\n ##description## \\п\\п', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (203, '6', 'es-ES', 'Generar 10 títulos de blog pegadizos para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (204, '6', 'sv-SE', 'Generera 10 catchy bloggtitlar för:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (205, '6', 'tr-TR', '10 akılda kalıcı blog başlığı oluşturun:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (206, '6', 'pt-BR', 'Gerar 10 títulos de blog cativantes para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (207, '6', 'ro-RO', 'Generează 10 titluri de blog atrăgătoare pentru:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (208, '6', 'vi-VN', 'Tạo 10 tiêu đề blog hấp dẫn cho:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (209, '6', 'sw-KE', 'Zalisha vichwa 10 vya blogu vya kuvutia vya:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (210, '6', 'sl-SI', 'Ustvari 10 privlačnih naslovov blogov za:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (211, '6', 'th-TH', 'สร้างชื่อบล็อกที่ดึงดูดใจ 10 ชื่อสำหรับ:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (212, '6', 'uk-UA', 'Створіть 10 привабливих назв блогу для:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (213, '6', 'lt-LT', 'Sukurkite 10 patrauklių tinklaraščio pavadinimų:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (214, '6', 'bg-BG', 'Генерирайте 10 закачливи заглавия на блогове за:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (215, '7', 'en-US', 'Write a full blog section with at least 5 large paragraphs about:\\n\\n ##title## \\n\\nSplit by subheadings:\\n ##subheadings## \\n\\nTone of voice of the paragraphs must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (216, '7', 'ar-AE', 'اكتب قسم مدونة كاملًا يحتوي على 5 فقرات كبيرة على الأقل حول:\\n\\n ##title## \\n\\nانقسام حسب العناوين الفرعية:\\n ##subheadings## \\n\\nيجب أن تكون نغمة صوت الفقرات:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (217, '7', 'cmn-CN', '写一个完整的博客部分,其中至少包含 5 个大段落:\\n\\n ##title## \\n\\n按副标题拆分:\\n ##subheadings## \\n\\n段落的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (218, '7', 'hr-HR', 'Napišite cijeli odjeljak bloga s najmanje 5 velikih odlomaka o:\\n\\n ##title## \\n\\nPodijeli po podnaslovima:\\n ##subheadings## \\n\\nTon glasa odlomaka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (219, '7', 'cs-CZ', 'Napište celou sekci blogu s alespoň 5 velkými odstavci o:\\n\\n ##title## \\n\\nRozdělit podle podnadpisů:\\n ##subheadings## \\n\\nTón hlasu odstavců musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (220, '7', 'da-DK', 'Skriv en komplet blogsektion med mindst 5 store afsnit om:\\n\\n ##title## \\n\\nOpdelt efter underoverskrifter:\\n ##subheadings## \\n\\nTonefaldet i afsnittene skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (221, '7', 'nl-NL', 'Schrijf een volledig bloggedeelte met minimaal 5 grote paragrafen over:\\n\\n ##title## \\n\\nGesplitst door subkoppen:\\n ##subheadings## \\n\\nDe toon van de alinea`s moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (222, '7', 'et-EE', 'Kirjutage terve blogijaotis vähemalt 5 suure lõiguga teemal:\\n\\n ##title## \\n\\nJagatud alampealkirjade järgi:\\n ##subheadings## \\n\\nLõigete hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (223, '7', 'fi-FI', 'Kirjoita koko blogiosio, jossa on vähintään 5 suurta kappaletta aiheesta:\\n\\n ##title## \\n\\nJaettu alaotsikoiden mukaan:\\n ##subheadings## \\n\\nKappaleiden äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (224, '7', 'fr-FR', 'Écrivez une section de blog complète avec au moins 5 grands paragraphes sur :\\n\\n ##title## \\n\\nDiviser par sous-titres :\\n ##subheadings## \\n\\nLe ton de la voix des paragraphes doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (225, '7', 'de-DE', 'Schreiben Sie einen vollständigen Blog-Abschnitt mit mindestens 5 großen Absätzen über:\\n\\n ##title## \\n\\nAufgeteilt nach Unterüberschriften:\\n ##subheadings## \\n\\nTonfall der Absätze muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (226, '7', 'el-GR', 'Γράψτε μια πλήρη ενότητα ιστολογίου με τουλάχιστον 5 μεγάλες παραγράφους σχετικά με:\\n\\n ##title## \\n\\nΔιαίρεση κατά υποτίτλους:\\n ##subheadings## \\n\\nΟ τόνος της φωνής των παραγράφων πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (227, '7', 'he-IL', 'כתוב מדור בלוג מלא עם לפחות 5 פסקאות גדולות על:\\n\\n ##title## \\n\\nפיצול לפי כותרות משנה:\\n ##subheadings## \\n\\nטון הדיבור של הפסקאות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (228, '7', 'hi-IN', 'इस बारे में कम से कम 5 बड़े अनुच्छेदों के साथ एक पूर्ण ब्लॉग अनुभाग लिखें:\\n\\n ##title## \\n\\nउपशीर्षकों द्वारा विभाजित करें:\\n ##subheadings## \\n\\nपैराग्राफ की आवाज का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (229, '7', 'hu-HU', 'Írjon egy teljes blogrészt, legalább 5 nagy bekezdéssel erről:\\n\\n ##title## \\n\\nAlcímek szerint felosztva:\\n ##subheadings## \\n\\nA bekezdések hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (230, '7', 'is-IS', 'Skrifaðu heilan blogghluta með að minnsta kosti 5 stórum málsgreinum um:\\n\\n ##title## \\n\\nDeilt eftir undirfyrirsögnum:\\n ##subheadings## \\n\\nTónn málsgreina verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (231, '7', 'id-ID', 'Tulis bagian blog lengkap dengan setidaknya 5 paragraf besar tentang:\\n\\n ##title## \\n\\nDibagi berdasarkan subjudul:\\n ##subheadings## \\n\\nNada suara paragraf harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (232, '7', 'it-IT', 'Scrivi una sezione completa del blog con almeno 5 paragrafi di grandi dimensioni su:\\n\\n ##title## \\n\\nDiviso per sottotitoli:\\n ##subheadings## \\n\\nIl tono di voce dei paragrafi deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (233, '7', 'ja-JP', '次の内容について、少なくとも 5 つの大きな段落を含む完全なブログ セクションを作成します:\\n\\n ##title## \\n\\n小見出しで分割:\\n ##subheadings## \\n\\n段落の口調は次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (234, '7', 'ko-KR', '다음에 대해 최소 5개의 큰 단락으로 전체 블로그 섹션을 작성하세요:\\n\\n ##title## \\n\\n하위 제목으로 분할:\\n ##subheadings## \\n\\n문단의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (235, '7', 'ms-MY', 'Tulis bahagian blog penuh dengan sekurang-kurangnya 5 perenggan besar tentang:\\n\\n ##title## \\n\\nPisah mengikut subtajuk:\\n ##subheadings## \\n\\nNada suara perenggan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (236, '7', 'nb-NO', 'Skriv en fullstendig bloggseksjon med minst 5 store avsnitt om:\\n\\n ##title## \\n\\nSplitt etter underoverskrifter:\\n ##subheadings## \\n\\nTone i avsnittene må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (237, '7', 'pl-PL', 'Napisz pełną sekcję bloga zawierającą co najmniej 5 dużych akapitów na temat:\\n\\n ##title## \\n\\nPodział według podtytułów:\\n ##subheadings## \\n\\nTon głosu akapitów musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (238, '7', 'pt-PT', 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\\n\\n ##title## \\n\\nDivisão por subtítulos:\\n ##subheadings## \\n\\nTom de voz dos parágrafos deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (239, '7', 'ru-RU', 'Напишите полный раздел блога, содержащий не менее 5 больших абзацев о:\\n\\n ##title## \\n\\nРазделить по подзаголовкам:\\n ##subheadings## \\n\\nТон озвучивания абзацев должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (240, '7', 'es-ES', 'Escribe una sección de blog completa con al menos 5 párrafos extensos sobre:\\n\\n ##title## \\n\\nDividir por subtítulos:\\n ##subheadings## \\n\\nEl tono de voz de los párrafos debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (241, '7', 'sv-SE', 'Skriv en fullständig bloggsektion med minst 5 stora stycken om:\\n\\n ##title## \\n\\nDela upp efter underrubriker:\\n ##subheadings## \\n\\nTonfallet i styckena måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (242, '7', 'tr-TR', 'Şununla ilgili en az 5 büyük paragraf içeren eksiksiz bir blog bölümü yazın:\\n\\n ##title## \\n\\nAlt başlıklara göre ayır:\\n ##subheadings## \\n\\nParagrafların ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (243, '7', 'pt-BR', 'Escreva uma seção de blog completa com pelo menos 5 parágrafos grandes sobre:\\n\\n ##title## \\n\\nDivisão por subtítulos:\\n ##subheadings## \\n\\nTom de voz dos parágrafos deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (244, '7', 'ro-RO', 'Scrieți o secțiune completă de blog cu cel puțin 5 paragrafe mari despre:\\n\\n ##title## \\n\\nDivizat după subtitluri:\\n ##subheadings## \\n\\nTonul de voce al paragrafelor trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (245, '7', 'vi-VN', 'Viết một mục blog đầy đủ với ít nhất 5 đoạn văn lớn về:\\n\\n ##title## \\n\\nChia theo tiêu đề phụ:\\n ##subheadings## \\n\\nGiọng điệu của đoạn văn phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (246, '7', 'sw-KE', 'Andika sehemu kamili ya blogu iliyo na angalau aya 5 kubwa kuhusu:\\n\\n ##title## \\n\\nGawanya kwa vichwa vidogo:\\n ##subheadings## \\n\\nToni ya sauti ya aya lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (247, '7', 'sl-SI', 'Napišite celoten razdelek spletnega dnevnika z vsaj 5 velikimi odstavki o:\\n\\n ##title## \\n\\nRazdeljeno po podnaslovih:\\n ##subheadings## \\n\\nTon glasu odstavkov mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (248, '7', 'th-TH', 'เขียนบล็อกแบบเต็มโดยมีย่อหน้าใหญ่อย่างน้อย 5 ย่อหน้าเกี่ยวกับ:\\n\\n ##title## \\n\\nแบ่งตามหัวข้อย่อย:\\n ##subheadings## \\n\\nเสียงของย่อหน้าต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (249, '7', 'uk-UA', 'Напишіть повний розділ блогу, щонайменше 5 великих абзаців про:\\n\\n ##title## \\n\\nРозділити за підзаголовками:\\n ##subheadings## \\n\\nТон абзаців має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (250, '7', 'lt-LT', 'Parašykite visą tinklaraščio skyrių su bent 5 didelėmis pastraipomis apie:\\n\\n ##title## \\n\\nPadalinta pagal paantraštes:\\n ##subheadings## \\n\\nPastraipų balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (251, '7', 'bg-BG', 'Напишете цял блог с поне 5 големи абзаца за:\\n\\n ##title## \\n\\nРазделени по подзаглавия:\\n ##subheadings## \\n\\nТонът на гласа на параграфите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (252, '8', 'en-US', '\"Write interesting blog ideas and outline about:\\n\\n ##title## \\n\\n Tone of voice of the ideas must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (253, '8', 'ar-AE', 'اكتب أفكار مدونة ممتعة وحدد مخططًا تفصيليًا حول:\\n\\n ##title## \\n\\nيجب أن تكون نبرة صوت الأفكار:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (254, '8', 'cmn-CN', '写下有趣的博客想法和大纲:\\n\\n ##title## \\n\\n 想法的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (255, '8', 'hr-HR', 'Napišite zanimljive ideje za blog i skicirajte o:\\n\\n ##title## \\n\\n Ton glasa ideja mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (256, '8', 'cs-CZ', 'Pište zajímavé nápady na blog a přehled o:\\n\\n ##title## \\n\\n Tón hlasu nápadů musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (257, '8', 'da-DK', 'Skriv interessante blogideer og skitser om:\\n\\n ##title## \\n\\n Tonen i ideerne skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (258, '8', 'nl-NL', 'Schrijf interessante blogideeën en schets over:\\n\\n ##title## \\n\\n De toon van de ideeën moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (259, '8', 'et-EE', 'Kirjutage huvitavaid ajaveebi ideid ja kirjeldage:\\n\\n ##title## \\n\\n Ideede hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (260, '8', 'fi-FI', 'Kirjoita mielenkiintoisia blogiideoita ja hahmotelkaa aiheesta:\\n\\n ##title## \\n\\n Ideoiden äänensävyn tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (261, '8', 'fr-FR', 'Rédigez des idées de blog intéressantes et décrivez :\\n\\n ##title## \\n\\n Le ton de la voix des idées doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (262, '8', 'de-DE', 'Schreiben Sie interessante Blog-Ideen und skizzieren Sie über:\\n\\n ##title## \\n\\n Tonfall der Ideen muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (263, '8', 'el-GR', 'Γράψτε ενδιαφέρουσες ιδέες ιστολογίου και περιγράψτε τα σχετικά:\\n\\n ##title## \\n\\n Ο τόνος της φωνής των ιδεών πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (264, '8', 'he-IL', 'כתוב רעיונות מעניינים לבלוג ותאר את:\\n\\n ##title## \\n\\n טון הדיבור של הרעיונות חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (265, '8', 'hi-IN', 'दिलचस्प ब्लॉग विचार लिखें और इसके बारे में रूपरेखा लिखें:\\n\\n ##title## \\n\\n विचारों का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (266, '8', 'hu-HU', 'Írjon érdekes blogötleteket és vázlatot erről:\\n\\n ##title## \\n\\n Az ötletek hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (267, '8', 'is-IS', 'Skrifaðu áhugaverðar blogghugmyndir og gerðu grein fyrir:\\n\\n ##title## \\n\\n Rödd hugmyndanna verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (268, '8', 'id-ID', 'Tulis ide blog yang menarik dan uraikan tentang:\\n\\n ##title## \\n\\n Nada suara ide harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (269, '8', 'it-IT', 'Scrivi interessanti idee per il blog e delinea su:\\n\\n ##title## \\n\\n Il tono di voce delle idee deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (270, '8', 'ja-JP', '興味深いブログのアイデアと概要を書きます:\\n\\n ##title## \\n\\n アイデアの口調は次のとおりでなければなりません:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (271, '8', 'ko-KR', '흥미로운 블로그 아이디어를 작성하고 다음에 대한 개요를 작성하세요:\\n\\n ##title## \\n\\n 아이디어의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (272, '8', 'ms-MY', 'Tulis idea blog yang menarik dan gariskan tentang:\\n\\n ##title## \\n\\n Nada suara idea mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (273, '8', 'nb-NO', 'Skriv interessante bloggideer og skisser om:\\n\\n ##title## \\n\\n Tonen til ideene må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (274, '8', 'pl-PL', 'Napisz ciekawe pomysły na bloga i zarys tematu:\\n\\n ##title## \\n\\n Ton głosu pomysłów musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (275, '8', 'pt-PT', 'Escreva ideias de blog interessantes e descreva sobre:\\n\\n ##title## \\n\\n Tom de voz das ideias deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (276, '8', 'ru-RU', 'Напишите интересные идеи для блога и расскажите о:\\n\\n ##title## \\n\\n Тон голоса идей должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (277, '8', 'es-ES', 'Escriba ideas de blog interesantes y esboce sobre:\\n\\n ##title## \\n\\n El tono de voz de las ideas debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (278, '8', 'sv-SE', 'Skriv intressanta bloggidéer och beskriv:\\n\\n ##title## \\n\\n Tonen i idéerna måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (279, '8', 'tr-TR', 'İlginç blog fikirleri yazın ve hakkında ana hatları çizin:\\n\\n ##title## \\n\\n Fikirlerin ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (280, '8', 'pt-BR', 'Escreva ideias de blog interessantes e descreva sobre:\\n\\n ##title## \\n\\n Tom de voz das ideias deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (281, '8', 'ro-RO', 'Scrie idei interesante de blog și schiță despre:\\n\\n ##title## \\n\\n Tonul vocii ideilor trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (282, '8', 'vi-VN', 'Viết ý tưởng blog thú vị và phác thảo về:\\n\\n ##title## \\n\\n Giọng điệu của các ý tưởng phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (283, '8', 'sw-KE', 'Andika mawazo ya kuvutia ya blogu na muhtasari kuhusu:\\n\\n ##title## \\n\\n Toni ya sauti ya mawazo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (284, '8', 'sl-SI', 'Napišite zanimive ideje za blog in orišite o:\\n\\n ##title## \\n\\n Ton glasu idej mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (285, '8', 'th-TH', 'เขียนแนวคิดและโครงร่างบล็อกที่น่าสนใจเกี่ยวกับ:\\n\\n ##title## \\n\\n น้ำเสียงของความคิดต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (286, '8', 'uk-UA', 'Напишіть цікаві ідеї для блогу та окресліть:\\n\\n ##title## \\n\\n Тон голосу ідей має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (287, '8', 'lt-LT', 'Parašykite įdomių tinklaraščio idėjų ir apibūdinkite apie:\\n\\n ##title## \\n\\n Idėjų balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (288, '8', 'bg-BG', 'Напишете интересни идеи за блог и очертайте:\\n\\n ##title## \\n\\n Тонът на гласа на идеите трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (289, '9', 'en-US', 'Write an interesting blog post intro about:\\n\\n ##description## \\n\\n Blog post title:\\n ##title## \\n\\nTone of voice of the blog intro must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (290, '9', 'ar-AE', 'اكتب مقدمة مدونة شيقة عن:\\n\\n ##description## \\n\\n عنوان منشور المدونة:\\n ##title## \\n\\nيجب أن تكون نغمة الصوت في مقدمة المدونة:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (291, '9', 'cmn-CN', '写一篇有趣的博客文章介绍:\\n\\n ##description## \\n\\n 博文标题:\\n ##title## \\n\\n博客介绍的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (292, '9', 'hr-HR', 'Napišite uvod u zanimljiv blog post o:\\n\\n ##description## \\n\\n Naslov posta na blogu:\\n ##title## \\n\\nTon glasa uvoda u blog mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (293, '9', 'cs-CZ', 'Napište zajímavý úvod do blogového příspěvku o:\\n\\n ##description## \\n\\n Název příspěvku na blogu:\\n ##title## \\n\\nTón hlasu úvodu blogu musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (294, '9', 'da-DK', 'Skriv et interessant blogindlæg om:\\n\\n ##description## \\n\\n Blogindlægs titel:\\n ##title## \\n\\nTone i blogintroen skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (295, '9', 'nl-NL', 'Schrijf een interessante blogpost-intro over:\\n\\n ##description## \\n\\n Titel blogpost:\\n ##title## \\n\\nDe toon van de blogintro moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (296, '9', 'et-EE', 'Kirjutage huvitav blogipostituse tutvustus teemal:\\n\\n ##description## \\n\\n Blogipostituse pealkiri:\\n ##title## \\n\\nBlogi sissejuhatuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (297, '9', 'fi-FI', 'Kirjoita mielenkiintoinen blogikirjoituksen esittely aiheesta:\\n\\n ##description## \\n\\n Blogiviestin otsikko:\\n ##title## \\n\\nBlogin johdannon äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (298, '9', 'fr-FR', 'Rédigez une introduction intéressante sur :\\n\\n ##description## \\n\\n Titre de larticle de blog :\\n ##title## \\n\\nLe ton de la voix de l intro du blog doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (299, '9', 'de-DE', 'Schreiben Sie eine interessante Einführung in einen Blog-Beitrag über:\\n\\n ##description## \\n\\n Titel des Blogposts:\\n ##title## \\n\\nTonlage des Blog-Intros muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (300, '9', 'el-GR', 'Γράψτε μια ενδιαφέρουσα εισαγωγή δημοσίευσης ιστολογίου σχετικά με:\\n\\n ##description## \\n\\n Τίτλος ανάρτησης ιστολογίου:\\n ##title## \\n\\nΟ τόνος της φωνής της εισαγωγής του ιστολογίου πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (301, '9', 'he-IL', 'כתוב מבוא פוסט מעניין בבלוג על:\\n\\n ##description## \\n\\n כותרת פוסט הבלוג:\\n ##title## \\n\\nטון הדיבור של ההקדמה לבלוג חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (302, '9', 'hi-IN', 'इस बारे में एक रोचक ब्लॉग पोस्ट परिचय लिखें:\\n\\n ##description## \\n\\n ब्लॉग पोस्ट शीर्षक:\\n ##title## \\n\\nब्लॉग के परिचय का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (303, '9', 'hu-HU', 'Írjon érdekes blogbejegyzést erről:\\n\\n ##description## \\n\\n Blogbejegyzés címe:\\n ##title## \\n\\nA blogbevezető hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (304, '9', 'is-IS', 'Skrifaðu áhugaverða bloggfærslu um:\\n\\n ##description## \\n\\n Titill bloggfærslu:\\n ##title## \\n\\nTónn í blogginngangi verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (305, '9', 'id-ID', 'Tulis pengantar postingan blog yang menarik tentang:\\n\\n ##description## \\n\\n Judul entri blog:\\n ##title## \\n\\nNada suara intro blog harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (306, '9', 'it-IT', 'Scrivi un`interessante introduzione al post del blog su:\\n\\n ##description## \\n\\n Titolo del post del blog:\\n ##title## \\n\\nIl tono di voce dell`introduzione del blog deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (307, '9', 'ja-JP', '興味深いブログ投稿の紹介を書いてください:\\n\\n ##description## \\n\\n ブログ記事のタイトル:\\n ##title## \\n\\nブログのイントロのトーンは次のようにする必要があります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (308, '9', 'ko-KR', '다음에 대한 흥미로운 블로그 게시물 소개 작성:\\n\\n ##description## \\n\\n 블로그 게시물 제목:\\n ##title## \\n\\n블로그 소개의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (309, '9', 'ms-MY', 'Tulis intro catatan blog yang menarik tentang:\\n\\n ##description## \\n\\n Tajuk catatan blog:\\n ##title## \\n\\nNada suara intro blog mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (310, '9', 'nb-NO', 'Skriv en interessant introduksjon til blogginnlegg om:\\n\\n ##description## \\n\\n Tittel på blogginnlegg:\\n ##title## \\n\\nTone i bloggintroen må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (311, '9', 'pl-PL', 'Napisz interesujące wprowadzenie do wpisu na blogu na temat:\\n\\n ##description## \\n\\n Tytuł wpisu na blogu:\\n ##title## \\n\\nTon głosu we wstępie do bloga musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (312, '9', 'pt-PT', 'Escreva uma introdução de postagem de blog interessante sobre:\\n\\n ##description## \\n\\n Título da postagem do blog:\\n ##title## \\n\\nTom de voz da introdução do blog deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (313, '9', 'ru-RU', 'Напишите интересное введение в блог о:\\n\\n ##description## \\n\\n Заголовок сообщения в блоге:\\n ##title## \\n\\nТон озвучивания вступления блога должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (314, '9', 'es-ES', 'Escribe una introducción de blog interesante sobre:\\n\\n ##description## \\n\\n Título de la publicación del blog:\\n ##title## \\n\\nEl tono de voz de la intro del blog debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (315, '9', 'sv-SE', 'Skriv ett intressant blogginlägg om:\\n\\n ##description## \\n\\n Blogginläggets titel:\\n ##title## \\n\\nRöst i bloggintrot måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (316, '9', 'tr-TR', 'Şununla ilgili ilginç bir blog yazısı yaz:\\n\\n ##description## \\n\\n Blog gönderisi başlığı:\\n ##title## \\n\\nBlog girişinin ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (317, '9', 'pt-BR', 'Escreva uma introdução de postagem de blog interessante sobre:\\n\\n ##description## \\n\\n Título da postagem do blog:\\n ##title## \\n\\nTom de voz da introdução do blog deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (318, '9', 'ro-RO', 'Scrieți o prezentare interesantă pe blog despre:\\n\\n ##description## \\n\\n Titlul postării de blog:\\n ##title## \\n\\nTonul de voce al introducerii pe blog trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (319, '9', 'vi-VN', 'Viết một bài đăng blog thú vị giới thiệu về:\\n\\n ##description## \\n\\n Tiêu đề bài đăng trên blog:\\n ##title## \\n\\nGiọng nói của phần giới thiệu blog phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (320, '9', 'sw-KE', 'Andika utangulizi wa chapisho la kuvutia la blogu kuhusu:\\n\\n ##description## \\n\\n Jina la chapisho la blogu:\\n ##title## \\n\\nToni ya sauti ya utangulizi wa blogu lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (321, '9', 'sl-SI', 'Napišite zanimivo uvodno objavo v spletnem dnevniku o:\\n\\n ##description## \\n\\n Naslov objave v spletnem dnevniku:\\n ##title## \\n\\nTon glasu uvoda v spletni dnevnik mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (322, '9', 'th-TH', 'เขียนบทความแนะนำบล็อกที่น่าสนใจเกี่ยวกับ:\\n\\n ##description## \\n\\n ชื่อบล็อกโพสต์:\\n ##title## \\n\\nเสียงแนะนำบล็อกต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (323, '9', 'uk-UA', 'Напишіть цікаву вступну публікацію в блозі про:\\n\\n ##description## \\n\\n Назва допису в блозі:\\n ##title## \\n\\nТон вступу до блогу має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (324, '9', 'lt-LT', 'Parašykite įdomų tinklaraščio įrašą apie:\\n\\n ##description## \\n\\n Tinklaraščio įrašo pavadinimas:\\n ##title## \\n\\nTinklaraščio įžangos balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (325, '9', 'bg-BG', 'Напишете интересна интро публикация в блог за:\\n\\n ##description## \\n\\n Заглавие на публикацията в блога:\\n ##title## \\n\\nТонът на интрото на блога трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (326, '10', 'en-US', 'Write a blog article conclusion for:\\n\\n ##description## \\n\\n Blog article title:\\n ##title## \\n\\nTone of voice of the conclusion must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (327, '10', 'ar-AE', 'اكتب مقالاً ختامياً لـ:\\n\\n ##description## \\n\\n عنوان مقالة المدونة:\\n ##title## \\n\\n يجب أن تكون نغمة صوت الاستنتاج:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (328, '10', 'cmn-CN', '为以下内容写一篇博客文章结论:\\n\\n ##description## \\n\\n 博客文章标题:\\n ##title## \\n\\n结论的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (329, '10', 'hr-HR', 'Napišite zaključak članka na blogu za:\\n\\n ##description## \\n\\n Naslov članka na blogu:\\n ##title## \\n\\nTon glasa zaključka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (330, '10', 'cs-CZ', 'Napište závěr článku blogu pro:\\n\\n ##description## \\n\\n Název článku blogu:\\n ##title## \\n\\nTón hlasu závěru musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (331, '10', 'da-DK', 'Skriv en blogartikel konklusion for:\\n\\n ##description## \\n\\n Blogartikeltitel:\\n ##title## \\n\\nTone i konklusionen skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (332, '10', 'nl-NL', 'Schrijf een conclusie van een blogartikel voor:\\n\\n ##description## \\n\\n Titel blogartikel:\\n ##title## \\n\\nDe toon van de conclusie moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (333, '10', 'et-EE', 'Kirjutage blogiartikli järeldus:\\n\\n ##description## \\n\\n Blogi artikli pealkiri:\\n ##title## \\n\\nJärelduse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (334, '10', 'fi-FI', 'Kirjoita blogiartikkelin päätelmä:\\n\\n ##description## \\n\\n Blogiartikkelin otsikko:\\n ##title## \\n\\nJohtopäätöksen äänensävyn on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (335, '10', 'fr-FR', 'Rédigez une conclusion d\'article de blog pour :\n\n ##description## \n\n Titre de l\'article du blog :\n ##title## \n\nLe ton de la voix de la conclusion doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (336, '10', 'de-DE', 'Schreiben Sie einen Blogartikel-Abschluss für:\\n\\n ##description## \\n\\n Titel des Blog-Artikels:\\n ##title## \\n\\nTonfall der Schlussfolgerung muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (337, '10', 'el-GR', 'Γράψτε ένα συμπέρασμα άρθρου ιστολογίου για:\\n\\n ##description## \\n\\n Τίτλος άρθρου ιστολογίου:\\n ##title## \\n\\nΟ τόνος της φωνής του συμπεράσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (338, '10', 'he-IL', 'כתוב מסקנת מאמר בבלוג עבור:\\n\\n ##description## \\n\\n כותרת מאמר הבלוג:\\n ##title## \\n\\nטון הדיבור של המסקנה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (339, '10', 'hi-IN', 'इसके लिए एक ब्लॉग लेख निष्कर्ष लिखें:\\n\\n ##description## \\n\\n ब्लॉग लेख का शीर्षक:\\n ##title## \\n\\nनिष्कर्ष की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (340, '10', 'hu-HU', 'Írjon blogcikk következtetést:\\n\\n ##description## \\n\\n Blog cikk címe:\\n ##title## \\n\\nA következtetés hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (341, '10', 'is-IS', 'Skrifaðu niðurstöðu blogggreinar fyrir:\\n\\n ##description## \\n\\n Titill blogggreinar:\\n ##title## \\n\\nTónn í niðurstöðunni verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (342, '10', 'id-ID', 'Tulis kesimpulan artikel blog untuk:\\n\\n ##description## \\n\\n Judul artikel blog:\\n ##title## \\n\\nNada suara kesimpulan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (343, '10', 'it-IT', 'Scrivi la conclusione di un articolo di blog per:\\n\\n ##description## \\n\\n Titolo articolo blog:\\n ##title## \\n\\nIl tono di voce della conclusione deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (344, '10', 'ja-JP', '次のブログ記事の結論を書きます:\\n\\n ##description## \\n\\n ブログ記事のタイトル:\\n ##title## \\n\\n結論の口調は:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (345, '10', 'ko-KR', '다음에 대한 블로그 기사 결론 쓰기:\\n\\n ##description## \\n\\n 블로그 기사 제목:\\n ##title## \\n\\n결론의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (346, '10', 'ms-MY', '다음에 대한 블로그 기사 결론 쓰기:\\n\\n ##description## \\n\\n 블로그 기사 제목:\\n ##title## \\n\\n결론의 어조는 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (347, '10', 'nb-NO', 'Skriv en bloggartikkelkonklusjon for:\\n\\n ##description## \\n\\n Bloggartikkeltittel:\\n ##title## \\n\\nTone i konklusjonen må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (348, '10', 'pl-PL', 'Napisz zakończenie artykułu na blogu dla:\\n\\n ##description## \\n\\n Tytuł artykułu na blogu:\\n ##title## \\n\\nTon wniosku musi być następujący:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (349, '10', 'pt-PT', 'Escreva uma conclusão de artigo de blog para:\\n\\n ##description## \\n\\n Título do artigo do blog:\\n ##title## \\n\\nTom de voz da conclusão deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (350, '10', 'ru-RU', 'Напишите вывод статьи в блоге для:\\n\\n ##description## \\n\\n Название статьи в блоге:\\n ##title## \\n\\nТон голоса заключения должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (351, '10', 'es-ES', 'Escribe la conclusión de un artículo de blog para:\\n\\n ##description## \\n\\n Título del artículo del blog:\\n ##title## \\n\\nEl tono de voz de la conclusión debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (352, '10', 'sv-SE', 'Skriv en bloggartikelavslutning för:\\n\\n ##description## \\n\\n Bloggartikeltitel:\\n ##title## \\n\\nTonfallet för slutsatsen måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (353, '10', 'tr-TR', 'Bir blog makalesi sonucu yaz:\\n\\n ##description## \\n\\n Blog makalesi başlığı:\\n ##title## \\n\\nSonuçtaki ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (354, '10', 'pt-BR', 'Escreva uma conclusão de artigo de blog para:\\n\\n ##description## \\n\\n Título do artigo do blog:\\n ##title## \\n\\nTom de voz da conclusão deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (355, '10', 'ro-RO', 'Scrieți o concluzie a unui articol de blog pentru:\\n\\n ##description## \\n\\n Titlul articolului de blog:\\n ##title## \\n\\nTonul de voce al concluziei trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (356, '10', 'vi-VN', 'Viết kết luận bài viết trên blog cho:\\n\\n ##description## \\n\\n Tiêu đề bài viết trên blog:\\n ##title## \\n\\nGiọng kết luận phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (357, '10', 'sw-KE', 'Andika hitimisho la makala ya blogu ya:\\n\\n ##description## \\n\\n Jina la makala ya blogu:\\n ##title## \\n\\nToni ya sauti ya hitimisho lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (358, '10', 'sl-SI', 'Napišite zaključek članka v blogu za:\\n\\n ##description## \\n\\n Naslov članka v blogu:\\n ##title## \\n\\nTon sklepa mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (359, '10', 'th-TH', 'เขียนสรุปบทความบล็อกสำหรับ:\\n\\n ##description## \\n\\n ชื่อบทความบล็อก:\\n ##title## \\n\\nเสียงสรุปต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (360, '10', 'uk-UA', 'Напишіть висновок статті в блозі для:\\n\\n ##description## \\n\\n Назва статті блогу:\\n ##title## \\n\\nТон висновку повинен бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (361, '10', 'lt-LT', 'Parašykite tinklaraščio straipsnio išvadą:\\n\\n ##description## \\n\\n Tinklaraščio straipsnio pavadinimas:\\n ##title## \\n\\nIšvados balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (362, '10', 'bg-BG', 'Генерирайте 10 закачливи заглавия на блогове за:\\n\\n ##description## \\n\\nНапишете заключение за статия в блог за:\\n\\n ##description## \\n\\n Заглавие на блог статия:\\n ##title## \\n\\nТонът на гласа на заключението трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (363, '11', 'en-US', 'Summarize this text in a short concise way:\\n\\n ##text## \\n\\nTone of summary must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (364, '11', 'ar-AE', 'لخص هذا النص بإيجاز قصير:\\n\\n ##text## \\n\\nيجب أن تكون نغمة التلخيص:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (365, '11', 'cmn-CN', '用简短的方式总结这段文字:\\n\\n ##text## \\n\\n摘要语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (366, '11', 'hr-HR', 'Ukratko sažeti ovaj tekst:\\n\\n ##text## \\n\\nTon sažetka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (367, '11', 'cs-CZ', 'Shrňte tento text krátkým výstižným způsobem:\\n\\n ##text## \\n\\nTón shrnutí musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (368, '11', 'da-DK', 'Opsummer denne tekst på en kort og præcis måde:\\n\\n ##text## \\n\\nTone i resumé skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (369, '11', 'nl-NL', 'Vat deze tekst kort en bondig samen:\\n\\n ##text## \\n\\nDe toon van de samenvatting moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (370, '11', 'et-EE', 'Tehke see tekst lühidalt kokkuvõtlikult:\\n\\n ##text## \\n\\nKokkuvõtte toon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (371, '11', 'fi-FI', 'Tee tämä teksti lyhyesti ytimekkäästi:\\n\\n ##text## \\n\\nYhteenvedon äänen tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (372, '11', 'fr-FR', 'Résumez ce texte de manière courte et concise :\\n\\n ##text## \\n\\nLe ton du résumé doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (373, '11', 'de-DE', 'Fass diesen Text kurz und prägnant zusammen:\\n\\n ##text## \\n\\nTon der Zusammenfassung muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (374, '11', 'el-GR', 'Συνοψήστε αυτό το κείμενο με σύντομο και συνοπτικό τρόπο:\\n\\n ##text## \\n\\nΟ τόνος της σύνοψης πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (375, '11', 'he-IL', 'סכם את הטקסט הזה בצורה קצרה תמציתית:\\n\\n ##text## \\n\\nטון הסיכום חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (376, '11', 'hi-IN', 'इस पाठ को संक्षेप में संक्षेप में प्रस्तुत करें:\\n\\n ##text## \\n\\nसारांश का लहजा होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (377, '11', 'hu-HU', 'Összefoglalja ezt a szöveget röviden, tömören:\\n\\n ##text## \\n\\nAz összefoglaló hangjának a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (378, '11', 'is-IS', 'Dregðu saman þennan texta á stuttan hnitmiðaðan hátt:\\n\\n ##text## \\n\\nTónn yfirlits verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (379, '11', 'id-ID', 'Rangkum teks ini dengan cara yang singkat dan padat:\\n\\n ##text## \\n\\nNada ringkasan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (380, '11', 'it-IT', 'Riassumi questo testo in modo breve e conciso:\\n\\n ##text## \\n\\nIl tono del riassunto deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (381, '11', 'ja-JP', 'このテキストを短く簡潔に要約してください:\\n\\n ##text## \\n\\n要約のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (382, '11', 'ko-KR', '이 텍스트를 짧고 간결하게 요약:\\n\\n ##text## \\n\\n요약 톤은 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (383, '11', 'ms-MY', 'Ringkaskan teks ini dengan cara ringkas yang ringkas:\\n\\n ##text## \\n\\nNada ringkasan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (384, '11', 'nb-NO', 'Opsummer denne teksten på en kortfattet måte:\\n\\n ##text## \\n\\nTone i sammendraget må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (385, '11', 'pl-PL', 'Podsumuj ten tekst w zwięzły sposób:\\n\\n ##text## \\n\\nTon podsumowania musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (386, '11', 'pt-PT', 'Resuma este texto de forma curta e concisa:\\n\\n ##text## \\n\\nO tom do resumo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (387, '11', 'ru-RU', 'Кратко изложите этот текст:\\n\\n ##text## \\n\\nТон резюме должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (388, '11', 'es-ES', 'Resume este texto de forma breve y concisa:\\n\\n ##text## \\n\\nEl tono del resumen debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (389, '11', 'sv-SE', 'Sammanfatta den här texten på ett kortfattat sätt:\\n\\n ##text## \\n\\nTonen i sammanfattningen måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (390, '11', 'tr-TR', 'Bu metni kısa ve öz bir şekilde özetleyin:\\n\\n ##text## \\n\\nÖzetin tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (391, '11', 'pt-BR', 'Resuma este texto de forma curta e concisa:\\n\\n ##text## \\n\\nO tom do resumo deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (392, '11', 'ro-RO', 'Rezumați acest text într-un mod scurt și concis:\\n\\n ##text## \\n\\nTonul rezumatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (393, '11', 'vi-VN', 'Tóm tắt văn bản này một cách ngắn gọn súc tích:\\n\\n ##text## \\n\\nGiọng tóm tắt phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (394, '11', 'sw-KE', 'Fanya muhtasari wa maandishi haya kwa njia fupi fupi:\\n\\n ##text## \\n\\nToni ya muhtasari lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (395, '11', 'sl-SI', 'Povzemite to besedilo na kratek jedrnat način:\\n\\n ##text## \\n\\nTon povzetka mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (396, '11', 'th-TH', 'สรุปข้อความนี้อย่างสั้นกระชับ:\\n\\n ##text## \\n\\nเสียงสรุปต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (397, '11', 'uk-UA', 'Коротко викладіть цей текст:\\n\\n ##text## \\n\\nТон резюме має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (398, '11', 'lt-LT', 'Trumpai glaustai apibendrinkite šį tekstą:\\n\\n ##text## \\n\\nSantraukos tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (399, '11', 'bg-BG', 'Резюмирайте този текст по кратък стегнат начин:\\n\\n ##text## \\n\\nТонът на обобщението трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (400, '12', 'en-US', 'Write a long creative product description for: ##title## \\n\\nTarget audience is: ##audience## \\n\\nUse this description: ##description## \\n\\nTone of generated text must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (401, '12', 'ar-AE', 'اكتب وصفًا إبداعيًا طويلًا للمنتج لـ: ##title## \\n\\nالجمهور المستهدف هو: ##audience## \\n\\nاستخدم هذا الوصف:\". $description. \"\\n\\nيجب أن تكون نغمة النص الناتج:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (402, '12', 'cmn-CN', '为:写一个长的创意产品描述 ##title## \\n\\n目标受众是: ##audience## \\n\\n使用这个描述: ##description## \\n\\n生成文本的基调必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (403, '12', 'hr-HR', 'Napišite dugačak kreativni opis proizvoda za: ##title## \\n\\nCiljana publika je: ##audience## \\n\\nKoristite ovaj opis: ##description## \\n\\nTon generiranog teksta mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (404, '12', 'cs-CZ', 'Napište dlouhý popis kreativního produktu pro: ##title## \\n\\nCílové publikum je: ##audience## \\n\\nPoužijte tento popis: ##description## \\n\\nTón generovaného textu musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (405, '12', 'da-DK', 'Skriv en lang kreativ produktbeskrivelse til: ##title## \\n\\nMålgruppe er: ##audience## \\n\\nBrug denne beskrivelse: ##description## \\n\\nTone i genereret tekst skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (406, '12', 'nl-NL', 'Schrijf een lange creatieve productbeschrijving voor: ##title## \\n\\nDoelgroep is: ##audience## \\n\\nGebruik deze omschrijving: ##description## \\n\\nDe toon van gegenereerde tekst moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (407, '12', 'et-EE', 'Kirjutage pikk loominguline tootekirjeldus: ##title## \\n\\nSihtpublik on: ##audience## \\n\\nKasutage seda kirjeldust: ##description## \\n\\nLoodud teksti toon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (408, '12', 'fi-FI', 'Kirjoita pitkä luova tuotekuvaus: ##title## \\n\\nKohdeyleisö on: ##audience## \\n\\nKäytä tätä kuvausta: ##description## \\n\\nLuodun tekstin äänen tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (409, '12', 'fr-FR', 'Rédigez une longue description de produit créative pour : ##title## \\n\\nLe public cible est : ##audience## \\n\\nUtilisez cette description : ##description## \\n\\nLe ton du texte généré doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (410, '12', 'de-DE', 'Schreiben Sie eine lange kreative Produktbeschreibung für: ##title## \\n\\nZielpublikum ist: ##audience## \\n\\nVerwenden Sie diese Beschreibung: ##description## \\n\\nTon des generierten Textes muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (411, '12', 'el-GR', 'Γράψτε μια μεγάλη περιγραφή δημιουργικού προϊόντος για: ##title## \\n\\nΤο κοινό-στόχος είναι: ##audience## \\n\\nΧρησιμοποιήστε αυτήν την περιγραφή: ##description## \\n\\nΟ τόνος του κειμένου που δημιουργείται πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (412, '12', 'he-IL', 'כתוב תיאור מוצר יצירתי ארוך עבור: ##title## \\n\\nקהל היעד הוא: ##audience## \\n\\nהשתמש בתיאור הזה: ##description## \\n\\nטון הטקסט שנוצר חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (413, '12', 'hi-IN', 'इसके लिए एक लंबा रचनात्मक उत्पाद विवरण लिखें: ##title## \\n\\nलक्षित दर्शक हैं: ##audience## \\n\\nइस विवरण का उपयोग करें: ##description## \\n\\nजनरेट किए गए टेक्स्ट का टोन होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (414, '12', 'hu-HU', 'Írjon hosszú kreatív termékleírást a következőhöz: ##title## \\n\\nA célközönség: ##audience## \\n\\nHasználja ezt a leírást: ##description## \\n\\nA generált szöveg hangjának a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (415, '12', 'is-IS', 'Skrifaðu langa skapandi vörulýsingu fyrir: ##title## \\n\\nMarkhópur er: ##audience## \\n\\nNotaðu þessa lýsingu: ##description## \\n\\nTónn texta sem myndast verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (416, '12', 'id-ID', 'Tulis deskripsi produk kreatif yang panjang untuk: ##title## \\n\\nTarget audiens adalah: ##audience## \\n\\nGunakan deskripsi ini: ##description## \\n\\nNada teks yang dihasilkan harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (417, '12', 'it-IT', 'Scrivi una lunga descrizione del prodotto creativo per: ##title## \\n\\nIl pubblico di destinazione è: ##audience## \\n\\nUsa questa descrizione: ##description## \\n\\nIl tono del testo generato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (418, '12', 'ja-JP', '次の製品の長いクリエイティブな説明を書いてください: ##title## \\n\\n対象者: ##audience## \\n\\nこの説明を使用してください: ##description## \\n\\n生成されたテキストのトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (419, '12', 'ko-KR', '다음에 대한 길고 창의적인 제품 설명 작성: ##title## \\n\\n대상은: ##audience## \\n\\n이 설명을 사용하십시오: ##description## \\n\\n생성된 텍스트의 톤은 다음과 같아야 합니다.\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (420, '12', 'ms-MY', 'Tulis penerangan produk kreatif yang panjang untuk: ##title## \\n\\nKhalayak sasaran ialah: ##audience## \\n\\nGunakan penerangan ini: ##description## \\n\\nNada teks yang dijana mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (421, '12', 'nb-NO', 'Skriv en lang kreativ produktbeskrivelse for: ##title## \\n\\nMålgruppen er: ##audience## \\n\\nBruk denne beskrivelsen: ##description## \\n\\nTone i generert tekst må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (422, '12', 'pl-PL', 'Napisz długi kreatywny opis produktu dla: ##title## \\n\\nDocelowi odbiorcy to: ##audience## \\n\\nUżyj tego opisu: ##description## \\n\\nTon generowanego tekstu musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (423, '12', 'pt-PT', 'Escreva uma longa descrição de produto criativo para: ##title## \\n\\nO público-alvo é: ##audience## \\n\\nUse esta descrição: ##description## \\n\\nO tom do texto gerado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (424, '12', 'ru-RU', 'Напишите длинное креативное описание продукта для: ##title## \\n\\nЦелевая аудитория: ##audience## \\n\\nИспользуйте это описание: ##description## \\n\\nТон генерируемого текста должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (425, '12', 'es-ES', 'Escriba una descripción de producto creativa larga para: ##title## \\n\\nEl público objetivo es: ##audience## \\n\\nUsar esta descripción: ##description## \\n\\nEl tono del texto generado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (426, '12', 'sv-SE', 'Skriv en lång kreativ produktbeskrivning för: ##title## \\n\\nMålgruppen är: ##audience## \\n\\nAnvänd denna beskrivning: ##description## \\n\\nTonen i genererad text måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (427, '12', 'tr-TR', 'Şunun için uzun bir yaratıcı ürün açıklaması yazın: ##title## \\n\\nHedef kitle: ##audience## \\n\\nBu açıklamayı kullanın: ##description## \\n\\nOluşturulan metnin tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (428, '12', 'pt-BR', 'Escreva uma longa descrição de produto criativo para: ##title## \\n\\nO público-alvo é: ##audience## \\n\\nUse esta descrição: ##description## \\n\\nO tom do texto gerado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (429, '12', 'ro-RO', 'Scrieți o descriere creativă lungă a produsului pentru: ##title## \\n\\nPublicul țintă este: ##audience## \\n\\nUtilizați această descriere: ##description## \\n\\nTonul textului generat trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (430, '12', 'vi-VN', 'Viết một đoạn mô tả sản phẩm sáng tạo dài cho: ##title## \\n\\nĐối tượng mục tiêu là: ##audience## \\n\\nSử dụng mô tả này: ##description## \\n\\nÂm của văn bản được tạo phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (431, '12', 'sw-KE', 'Andika maelezo marefu ya bidhaa ya ubunifu kwa: ##title## \\n\\nHadhira inayolengwa ni: ##audience## \\n\\nTumia maelezo haya: ##description## \\n\\nToni ya maandishi yanayozalishwa lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (432, '12', 'sl-SI', 'Napišite dolg ustvarjalni opis izdelka za: ##title## \\n\\nCiljna publika je: ##audience## \\n\\nUporabi ta opis: ##description## \\n\\nTon ustvarjenega besedila mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (433, '12', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ที่สร้างสรรค์แบบยาวสำหรับ: ##title## \\n\\nกลุ่มเป้าหมายคือ: ##audience## \\n\\nใช้คำอธิบายนี้:\" .$description. \"\\n\\nเสียงของข้อความที่สร้างขึ้นต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (434, '12', 'uk-UA', 'Напишіть довгий креативний опис продукту для: ##title## \\n\\nЦільова аудиторія: ##audience## \\n\\nВикористовуйте цей опис: ##description## \\n\\nТон створеного тексту має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (435, '12', 'lt-LT', 'Напишіть довгий креативний опис продукту для: ##title## \\n\\nЦільова аудиторія: ##audience## \\n\\nВикористовуйте цей опис: ##description## \\n\\nТон створеного тексту має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (436, '12', 'bg-BG', 'Напишете дълго творческо описание на продукта за: ##title## \\n\\nЦелевата аудитория е: ##audience## \\n\\nИзползвайте това описание: ##description## \\n\\nТонът на генерирания текст трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (437, '13', 'en-US', 'Generate cool, creative, and catchy names for startup description: ##description## \\n\\nSeed words: ##keywords## \\n\\n', '0', '2026-04-27 14:42:42', '2026-04-27 14:42:42'), (438, '13', 'ar-AE', 'أنشئ أسماء رائعة ومبتكرة وجذابة لوصف بدء التشغيل: ##description## \\n\\nكلمات المصدر: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (439, '13', 'cmn-CN', '为启动描述生成酷炫、有创意且朗朗上口的名称: ##description## \\n\\n种子词: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (440, '13', 'hr-HR', 'Generiraj cool, kreativna i privlačna imena za opis pokretanja: ##description## \\n\\nPočetne riječi: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (441, '13', 'cs-CZ', 'Vygenerujte skvělé, kreativní a chytlavé názvy pro popis spuštění: ##description## \\n\\nVýchozí slova: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (442, '13', 'da-DK', 'Generer seje, kreative og fængende navne til opstartsbeskrivelse: ##description## \\n\\nSeed ord: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (443, '13', 'nl-NL', 'Genereer coole, creatieve en pakkende namen voor opstartbeschrijving: ##description## \\n\\nZaalwoorden: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (444, '13', 'et-EE', 'Looge käivituskirjelduse jaoks lahedad, loomingulised ja meeldejäävad nimed: ##description## \\n\\nAlgussõnad: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (445, '13', 'fi-FI', 'Luo siistejä, luovia ja tarttuvia nimiä käynnistyksen kuvaukselle: ##description## \\n\\nSiemensanat: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (446, '13', 'fr-FR', 'Générez des noms sympas, créatifs et accrocheurs pour la description de démarrage : ##description## \\n\\nMots clés : ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (447, '13', 'de-DE', 'Erzeuge coole, kreative und einprägsame Namen für die Startup-Beschreibung: ##description## \\n\\nStartwörter: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (448, '13', 'el-GR', 'Δημιουργήστε όμορφα, δημιουργικά και ελκυστικά ονόματα για περιγραφή εκκίνησης: ##description## \\n\\nΔείτε λέξεις: ##keywords## \\n\\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (449, '13', 'he-IL', 'ור שמות מגניבים, יצירתיים וקליטים לתיאור ההפעלה: ##description## \n\nמילות הזרע: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (450, '13', 'hi-IN', 'स्टार्टअप विवरण के लिए बढ़िया, रचनात्मक और आकर्षक नाम उत्पन्न करें: ##description## \n\nबीज शब्द: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (451, '13', 'hu-HU', 'Generál menő, kreatív és fülbemászó neveket az indítási leíráshoz: ##description## \n\nKezdőszavak: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (452, '13', 'is-IS', 'Búðu til flott, skapandi og grípandi nöfn fyrir ræsingarlýsingu: ##description## \n\n Fræorð: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (453, '13', 'id-ID', 'Hasilkan nama yang keren, kreatif, dan menarik untuk deskripsi startup: ##description## \n\nBenih kata: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (454, '13', 'it-IT', 'Genera nomi interessanti, creativi e accattivanti per la descrizione dell avvio: ##description## \n\nParole seme: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (455, '13', 'ja-JP', 'スタートアップの説明にクールでクリエイティブでキャッチーな名前を付けてください: ##description## \n\nシード ワード: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (456, '13', 'ko-KR', '스타트업 설명을 위한 멋지고 창의적이며 기억하기 쉬운 이름 생성: ##description## \n\n시드 단어: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (457, '13', 'ms-MY', 'Jana nama yang keren, kreatif dan menarik untuk penerangan permulaan: ##description## \n\nPerkataan benih: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (458, '13', 'nb-NO', 'Generer kule, kreative og fengende navn for oppstartsbeskrivelse: ##description## \n\nFrøord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (459, '13', 'pl-PL', 'Wygeneruj fajne, kreatywne i chwytliwe nazwy dla opisu startowego: ##description## \n\nSłowa źródłowe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (460, '13', 'pt-PT', 'Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (461, '13', 'ru-RU', 'Создавайте крутые, креативные и запоминающиеся названия для описания стартапа: ##description## \n\nИсходные слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (462, '13', 'es-ES', 'Genera nombres geniales, creativos y pegadizos para la descripción de inicio: ##description## \n\nPalabras semilla: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (463, '13', 'sv-SE', 'Skapa coola, kreativa och catchy namn för startbeskrivning: ##description## \n\nFröord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (464, '13', 'tr-TR', 'Başlangıç açıklaması için havalı, yaratıcı ve akılda kalıcı adlar oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (465, '13', 'pt-BR', 'Gerar nomes legais, criativos e atraentes para a descrição da inicialização: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (466, '13', 'ro-RO', 'Generează nume interesante, creative și atrăgătoare pentru descrierea startup-ului: ##description## \n\nCuvinte semințe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (467, '13', 'vi-VN', 'Tạo tên thú vị, sáng tạo và hấp dẫn cho phần mô tả công ty khởi nghiệp:##description## \n\nTừ giống: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (468, '13', 'sw-KE', 'Tengeneza majina mazuri, ya ubunifu na ya kuvutia kwa maelezo ya kuanza: ##description## \n\nManeno ya mbegu: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (469, '13', 'sl-SI', 'Ustvarite kul, kreativna in privlačna imena za opis zagona: ##description## \n\nSemenske besede: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (470, '13', 'th-TH', 'สร้างชื่อที่เจ๋ง สร้างสรรค์ และติดหูสำหรับคำอธิบายการเริ่มต้น: ##description## \n\nคำที่ใช้: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (471, '13', 'uk-UA', 'Створюйте круті, креативні та привабливі назви для опису запуску: ##description## \n\nПочаткові слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (472, '13', 'lt-LT', 'Generuokite šaunius, kūrybingus ir patrauklius paleidimo aprašymo pavadinimus:##description## \n\nPradiniai žodžiai: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (473, '13', 'bg-BG', 'Генерирайте страхотни, креативни и запомнящи се имена за описание при стартиране: ##description## \n\nСедлови думи: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (474, '14', 'en-US', 'Create creative product names: ##description## \n\nSeed words: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (475, '14', 'ar-AE', 'إنشاء أسماء المنتجات الإبداعية: ##description## \n\n كلمات المصدر: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (476, '14', 'cmn-CN', '创建有创意的产品名称: ##description## \n\n种子词:##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (477, '14', 'hr-HR', 'Stvorite kreativne nazive proizvoda: ##description## \n\nPočetne riječi: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (478, '14', 'cs-CZ', 'Vytvořit názvy kreativních produktů: ##description## \n\nVýchozí slova: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (479, '14', 'da-DK', 'Opret kreative produktnavne: ##description## \n\nSeed ord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (480, '14', 'nl-NL', 'Creëer creatieve productnamen: ##description## \n\nZaalwoorden: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (481, '14', 'et-EE', 'Loo loomingulised tootenimed: ##description## \n\nAlgussõnad: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (482, '14', 'fi-FI', 'Luo luovia tuotenimiä: ##description## \n\nSiemensanat: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (483, '14', 'fr-FR', 'Créer des noms de produits créatifs : ##description## \n\nMots clés : ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (484, '14', 'de-DE', 'Kreative Produktnamen erstellen: ##description## \n\nStartwörter: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (485, '14', 'el-GR', 'Δημιουργία δημιουργικών ονομάτων προϊόντων: ##description## \n\nΔείτε λέξεις: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (486, '14', 'he-IL', 'צור שמות מוצרים יצירתיים: ##description## \n\nמילות הזרע: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (487, '14', 'hi-IN', 'रचनात्मक उत्पाद नाम बनाएँ: ##description## \n\nबीज शब्द:##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (488, '14', 'hu-HU', 'Kreatív terméknevek létrehozása: ##description## \n\nKiinduló szavak: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (489, '14', 'is-IS', 'Búa til skapandi vöruheiti: ##description## \n\nSeed orð: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (490, '14', 'id-ID', 'Buat nama produk kreatif: ##description## \n\nBenih kata: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (491, '14', 'it-IT', 'Crea nomi di prodotti creativi: ##description## \n\nParole iniziali: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (492, '14', 'ja-JP', 'クリエイティブな商品名を作成する: ##description## \n\nシード ワード: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (493, '14', 'ko-KR', '창의적인 제품 이름 만들기: ##description## \n\n시드 단어: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (494, '14', 'ms-MY', 'Buat nama produk kreatif: ##description## \n\nPerkataan benih: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (495, '14', 'nb-NO', 'Lag kreative produktnavn: ##description## \n\nSeed ord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (496, '14', 'pl-PL', 'Utwórz kreatywne nazwy produktów: ##description## \n\nSłowa źródłowe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (497, '14', 'pt-PT', 'Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (498, '14', 'ru-RU', 'Создайте креативные названия продуктов: ##description## \n\nИсходные слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (499, '14', 'es-ES', 'Crear nombres de productos creativos: ##description## \n\nPalabras semilla: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (500, '14', 'sv-SE', 'Skapa kreativa produktnamn: ##description## \n\nFröord: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (501, '14', 'tr-TR', 'Yaratıcı ürün adları oluşturun: ##description## \n\nÖz sözcükler: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (502, '14', 'pt-BR', 'Criar nomes de produtos criativos: ##description## \n\nPalavras iniciais: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (503, '14', 'ro-RO', 'Creați nume de produse creative: ##description## \n\nCuvinte semințe: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (504, '14', 'vi-VN', 'Tạo tên sản phẩm sáng tạo: ##description## \n\nTừ giống: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (505, '14', 'sw-KE', 'Unda majina ya ubunifu ya bidhaa: ##description## \n\nManeno ya mbegu: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (506, '14', 'sl-SI', 'Ustvarite ustvarjalna imena izdelkov: ##description## \n\nSemenske besede: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (507, '14', 'th-TH', 'สร้างชื่อผลิตภัณฑ์อย่างสร้างสรรค์:##description## \n\nคำที่ใช้: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (508, '14', 'uk-UA', 'Створіть творчі назви продуктів: ##description## \n\nПочаткові слова: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (509, '14', 'lt-LT', 'Sukurkite kūrybinius produktų pavadinimus: ##description## \n\nPradiniai žodžiai: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (510, '14', 'bg-BG', 'Създайте творчески имена на продукти: ##description## \n\nСедлови думи: ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (511, '15', 'en-US', 'Write SEO meta description for:\n\n ##description## \n\nWebsite name is:\n ##title## \n\nSeed words:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (512, '15', 'ar-AE', 'اكتب وصف تعريف SEO لـ:\n\n ##description## \n\nاسم موقع الويب هو:\n ##title## \n\nكلمات المصدر:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (513, '15', 'cmn-CN', '为以下内容编写 SEO 元描述:\n\n ##description## \n\n 网站名称是:\n ##title## \n\n 种子词:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (514, '15', 'hr-HR', 'Napišite SEO meta opis za:\n\n ##description## \n\n Naziv web stranice je:\n ##title## \n\n Početne riječi:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (515, '15', 'cs-CZ', 'Zapsat SEO meta popis pro:\n\n ##description## \n\n Název webu je:\n ##title## \n\n Výchozí slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (516, '15', 'da-DK', 'Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Webstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (517, '15', 'nl-NL', 'Schrijf SEO-metabeschrijving voor:\n\n ##description## \n\n Websitenaam is:\n ##title## \n\n Zaadwoorden:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (518, '15', 'et-EE', 'Kirjutage SEO metakirjeldus:\n\n ##description## \n\n Veebisaidi nimi on:\n ##title## \n\n Algsõnad:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (519, '15', 'fi-FI', 'Kirjoita hakukoneoptimoinnin metakuvaus kohteelle:\n\n ##description## \n\n Verkkosivuston nimi on:\n ##title## \n\n Alkusanat:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (520, '15', 'fr-FR', 'Ecrire une méta description SEO pour :\n\n ##description## \n\n Le nom du site Web est :\n ##title## \n\n Mots clés :\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (521, '15', 'de-DE', 'SEO-Metabeschreibung schreiben für:\n\n ##description## \n\n Website-Name ist:\n ##title## \n\n Ausgangswörter:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (522, '15', 'el-GR', 'Γράψτε μετα-περιγραφή SEO για:\n\n ##description## \n\n Το όνομα ιστότοπου είναι:\n ##title## \n\n Βασικές λέξεις:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (523, '15', 'he-IL', 'כתוב מטא תיאור SEO עבור:\n\n ##description## \n\n שם האתר הוא:\n ##title## \n\n מילות זרע:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (524, '15', 'hi-IN', 'इसके लिए SEO मेटा विवरण लिखें:\n\n ##description## \n\n वेबसाइट का नाम है:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (525, '15', 'hu-HU', 'Írjon SEO meta leírást:\n\n ##description## \n\n A webhely neve:\n ##title## \n\n Kezdőszavak:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (526, '15', 'is-IS', 'Skrifaðu SEO lýsilýsingu fyrir:\n\n ##description## \n\n Heiti vefsvæðis er:\n ##title## \n\n Fræorð:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (527, '15', 'id-ID', 'Tulis deskripsi meta SEO untuk:\n\n ##description## \n\n Nama situs web adalah:\n ##title## \n\n Kata bibit:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (528, '15', 'it-IT', 'Scrivi meta descrizione SEO per:\n\n ##description## \n\n Il nome del sito web è:\n ##title## \n\n Parole seme:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (529, '15', 'ja-JP', '以下の SEO メタ ディスクリプションを書き込みます:\n\n ##description## \n\n ウェブサイト名:\n ##title## \n\n シード ワード:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (530, '15', 'ko-KR', '다음에 대한 SEO 메타 설명 쓰기:\n\n ##description## \n\n 웹사이트 이름:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (531, '15', 'ms-MY', 'Tulis perihalan meta SEO untuk:\n\n ##description## \n\n Nama tapak web ialah:\n ##title## \n\n Perkataan benih:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (532, '15', 'nb-NO', 'Skriv SEO-metabeskrivelse for:\n\n ##description## \n\n Nettstedets navn er:\n ##title## \n\n Frøord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (533, '15', 'pl-PL', 'Napisz metaopis SEO dla:\n\n ##description## \n\n Nazwa witryny to:\n ##title## \n\n Słowa źródłowe:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (534, '15', 'pt-PT', 'Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (535, '15', 'ru-RU', 'Напишите мета-описание SEO для:\n\n ##description## \n\n Имя веб-сайта:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (536, '15', 'es-ES', 'Escribir meta descripción SEO para:\n\n ##description## \n\n El nombre del sitio web es:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (537, '15', 'sv-SE', 'Skriv SEO-metabeskrivning för:\n\n ##description## \n\n Webbplatsens namn är:\n ##title## \n\n Fröord:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (538, '15', 'tr-TR', 'Şunun için SEO meta açıklaması yaz:\n\n ##description## \n\n Web sitesi adı:\n ##title## \n\n Çekirdek sözcükler:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (539, '15', 'pt-BR', 'Escreva a meta descrição de SEO para:\n\n ##description## \n\n O nome do site é:\n ##title## \n\n Palavras-chave:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (540, '15', 'ro-RO', 'Scrieți metadescriere SEO pentru:\n\n ##description## \n\nNumele site-ului este:\n ##title## \n\n nevoie de cuvinte:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (541, '15', 'vi-VN', 'Viết mô tả meta SEO cho:\n\n ##description## \n\nTên trang web là:\n ##title## \n\ncần từ:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (542, '15', 'sw-KE', 'Andika maelezo ya meta ya SEO ya:\n\n ##description## \n\nJina la tovuti ni:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (543, '15', 'sl-SI', 'Napišite meta opis SEO za:\n\n ##description## \n\nIme spletne strani je:\n ##title## \n\nSemenske besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (544, '15', 'th-TH', 'เขียนคำอธิบายเมตา SEO สำหรับ:\n\n ##description## \n\nชื่อเว็บไซต์คือ:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (545, '15', 'uk-UA', 'Напишіть метаопис SEO для:\n\n ##description## \n\nНазва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (546, '15', 'lt-LT', 'Parašykite SEO meta aprašymą:\n\n ##description## \n\nSvetainės pavadinimas yra:\n ##title## \n\nPradiniai žodžiai:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (547, '15', 'bg-BG', 'Напишете SEO мета описание за:\n\n ##description## \n\nИмето на уебсайта е:\n ##title## \n\nЗародишни думи:\n ##keywords## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (548, '16', 'en-US', 'Generate list of 10 frequently asked questions based on description:\n\n ##description## \n\n Product name:\n ##title## \n\n Tone of voice of the questions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (549, '16', 'ar-AE', 'قم بإنشاء قائمة من 10 أسئلة متداولة بناءً على الوصف:\n\n ##description## \n\nاسم المنتج:\n ##title## \n\nيجب أن تكون نبرة صوت الأسئلة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (550, '16', 'cmn-CN', '根据描述生成 10 个常见问题列表:\n\n ##description## \n\n 产品名称:\n ##title## \n\n 提问的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (551, '16', 'hr-HR', 'Generiraj popis od 10 često postavljanih pitanja na temelju opisa:\n\n ##description## \n\n Naziv proizvoda:\n ##title## \n\n Ton glasa pitanja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (552, '16', 'cs-CZ', 'Vygenerujte seznam 10 často kladených otázek na základě popisu:\n\n ##description## \n\n Název produktu:\n ##title## \n\n Tón hlasu otázek musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (553, '16', 'da-DK', 'Generer en liste med 10 ofte stillede spørgsmål baseret på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørgsmålene skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (554, '16', 'nl-NL', 'Genereer een lijst met 10 veelgestelde vragen op basis van beschrijving:\n\n ##description## \n\n Productnaam:\n ##title## \n\n Tone of voice van de vragen moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (555, '16', 'et-EE', 'Loo kirjelduse põhjal 10 korduma kippuva küsimuse loend:\n\n ##description## \n\n Toote nimi:\n ##title## \n\n Küsimuste hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (556, '16', 'fi-FI', 'Luo luettelo 10 usein kysytystä kysymyksestä kuvauksen perusteella:\n\n ##description## \n\n Tuotteen nimi:\n ##title## \n\n Kysymysten äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (557, '16', 'fr-FR', 'Générer une liste de 10 questions fréquemment posées en fonction de la description :\n\n ##description## \n\n Nom du produit :\n ##title## \n\n Le ton de la voix des questions doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (558, '16', 'de-DE', 'Erzeuge eine Liste mit 10 häufig gestellten Fragen basierend auf der Beschreibung:\n\n ##description## \n\n Produktname:\n ##title## \n\n Tonfall der Fragen muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (559, '16', 'el-GR', 'Δημιουργία λίστας 10 συχνών ερωτήσεων με βάση την περιγραφή:\n\n ##description## \n\n Όνομα προϊόντος:\n ##title## \n\n Ο τόνος της φωνής των ερωτήσεων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (560, '16', 'he-IL', 'צור רשימה של 10 שאלות נפוצות על סמך תיאור:\n\n ##description## \n\n שם המוצר:\n ##title## \n\n טון הדיבור של השאלות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (561, '16', 'hi-IN', 'विवरण के आधार पर अक्सर पूछे जाने वाले 10 प्रश्नों की सूची तैयार करें:\n\n ##description## \n\n उत्पाद का नाम:\n ##title## \n\n प्रश्नों का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (562, '16', 'hu-HU', 'Létrehozzon 10 gyakran ismételt kérdést tartalmazó listát a leírás alapján:\n\n ##description## \n\n Terméknév:\n ##title## \n\n A kérdések hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (563, '16', 'is-IS', 'Búðu til lista yfir 10 algengar spurningar byggðar á lýsingu:\n\n ##description## \n\n Vöruheiti:\n ##title## \n\n Röddtónn spurninganna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (564, '16', 'id-ID', 'Buat daftar 10 pertanyaan umum berdasarkan deskripsi:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara pertanyaan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (565, '16', 'it-IT', 'Genera elenco di 10 domande frequenti in base alla descrizione:\n\n ##description## \n\n Nome prodotto:\n ##title## \n\n Il tono di voce delle domande deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (566, '16', 'ja-JP', '説明に基づいて 10 のよくある質問のリストを生成します:\n\n ##description## \n\n 製品名:\n ##title## \n\n 質問のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (567, '16', 'ko-KR', '설명에 따라 자주 묻는 질문 10개 목록 생성:\n\n ##description## \n\n 제품 이름:\n ##title## \n\n 질문의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (568, '16', 'ms-MY', 'Jana senarai 10 soalan lazim berdasarkan penerangan:\n\n ##description## \n\n Nama produk:\n ##title## \n\n Nada suara soalan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (569, '16', 'nb-NO', 'Generer liste over 10 vanlige spørsmål basert på beskrivelse:\n\n ##description## \n\n Produktnavn:\n ##title## \n\n Tonen i spørsmålene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (570, '16', 'pl-PL', 'Wygeneruj listę 10 najczęściej zadawanych pytań na podstawie opisu:\n\n ##description## \n\n Nazwa produktu:\n ##title## \n\n Ton pytań musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (571, '16', 'pt-PT', 'Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (572, '16', 'ru-RU', 'Создать список из 10 часто задаваемых вопросов на основе описания:\n\n ##description## \n\n Название продукта:\n ##title## \n\n Тон вопросов должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (573, '16', 'es-ES', 'Generar una lista de 10 preguntas frecuentes según la descripción:\n\n ##description## \n\n Nombre del producto:\n ##title## \n\n El tono de voz de las preguntas debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (574, '16', 'sv-SE', 'Skapa en lista med 10 vanliga frågor baserat på beskrivning:\n\n ##description## \n\n Produktnamn:\n ##title## \n\n Tonen i frågorna måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (575, '16', 'tr-TR', 'Açıklamaya göre sık sorulan 10 sorudan oluşan bir liste oluşturun:\n\n ##description## \n\n Ürün adı:\n ##title## \n\n Soruların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (576, '16', 'pt-BR', 'Gerar lista de 10 perguntas frequentes com base na descrição:\n\n ##description## \n\n Nome do produto:\n ##title## \n\n Tom de voz das perguntas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (577, '16', 'ro-RO', 'Generează o listă cu 10 întrebări frecvente pe baza descrierii:\n\n ##description## \n\n Nume produs:\n ##title## \n\n Tonul de voce al întrebărilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (578, '16', 'vi-VN', 'Tạo danh sách 10 câu hỏi thường gặp dựa trên mô tả:\n\n ##description## \n\n Tên sản phẩm:\n ##title## \n\n Giọng điệu của câu hỏi phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (579, '16', 'sw-KE', 'Tengeneza orodha ya maswali 10 yanayoulizwa mara kwa mara kulingana na maelezo:\n\n ##description## \n\n Jina la bidhaa:\n ##title## \n\n Toni ya sauti ya maswali lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (580, '16', 'sl-SI', 'Ustvari seznam 10 pogosto zastavljenih vprašanj na podlagi opisa:\n\n ##description## \n\n Ime izdelka:\n ##title## \n\n Ton glasu vprašanj mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (581, '16', 'th-TH', 'สร้างรายการคำถามที่พบบ่อย 10 รายการตามคำอธิบาย:\n\n ##description## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n เสียงของคำถามต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (582, '16', 'uk-UA', 'Створити список із 10 поширених запитань на основі опису:\n\n ##description## \n\n Назва продукту:\n ##title## \n\n Тон голосу запитань має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (583, '16', 'lt-LT', 'Sukurkite 10 dažniausiai užduodamų klausimų sąrašą pagal aprašymą:\n\n ##description## \n\n Produkto pavadinimas:\n ##title## \n\n Klausimų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (584, '16', 'bg-BG', 'Генериране на списък от 10 често задавани въпроса въз основа на описание:\n\n ##description## \n\n Име на продукта:\n ##title## \n\n Тонът на гласа на въпросите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (585, '17', 'en-US', 'Generate creative 5 answers to question:\n\n ##question## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the answers must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (586, '17', 'ar-AE', 'إنشاء 5 إجابات إبداعية على السؤال:\n\n ##question## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت الإجابات:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (587, '17', 'cmn-CN', '为问题生成有创意的 5 个答案:\n\n ##question## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 回答的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (588, '17', 'hr-HR', 'Generiraj kreativnih 5 odgovora na pitanje:\n\n ##question## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (589, '17', 'cs-CZ', 'Vygenerujte kreativu 5 odpovědí na otázku:\n\n ##question## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu odpovědí musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (590, '17', 'da-DK', 'Generer kreative 5 svar på spørgsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i svarene skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (591, '17', 'nl-NL', 'Genereer creatieve 5 antwoorden op vraag:\n\n ##question## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de antwoorden moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (592, '17', 'et-EE', 'Loo 5 loomingulist vastust küsimusele:\n\n ##question## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Vastuste hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (593, '17', 'fi-FI', 'Luo luova 5 vastausta kysymykseen:\n\n ##question## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Vastausten äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (594, '17', 'fr-FR', 'Générer la création 5 réponses à la question :\n\n ##question## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix des réponses doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (595, '17', 'de-DE', 'Erzeuge kreative 5 Antworten auf Frage:\n\n ##question## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Antworten muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (596, '17', 'el-GR', 'Δημιουργία δημιουργικού 5 απαντήσεων στην ερώτηση:\n\n ##question## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής των απαντήσεων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (597, '17', 'he-IL', 'צור קריאייטיב 5 תשובות לשאלה:\n\n ##question## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של התשובות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (598, '17', 'hi-IN', 'प्रश्न के रचनात्मक 5 उत्तर उत्पन्न करें:\n\n ##question## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n जवाबों के स्वर इस प्रकार होने चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (599, '17', 'hu-HU', 'Kreatív 5 válasz létrehozása a következő kérdésre:\n\n ##question## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A válaszok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (600, '17', 'is-IS', 'Búðu til skapandi 5 svör við spurningu:\n\n ##question## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn svara verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (601, '17', 'id-ID', 'Hasilkan 5 jawaban kreatif untuk pertanyaan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara jawaban harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (602, '17', 'it-IT', 'Genera creatività 5 risposte alla domanda:\n\n ##question## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce delle risposte deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (603, '17', 'ja-JP', '質問に対する創造的な 5 つの回答を生成します:\n\n ##question## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 回答の声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (604, '17', 'ko-KR', '질문에 대한 창의적인 5개 답변 생성:\n\n ##question## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 답변의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (605, '17', 'ms-MY', 'Jana 5 jawapan kreatif untuk soalan:\n\n ##question## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara jawapan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (606, '17', 'nb-NO', 'Generer kreative 5 svar på spørsmål:\n\n ##question## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen til svarene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (607, '17', 'pl-PL', 'Wygeneruj kreację 5 odpowiedzi na pytanie:\n\n ##question## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton odpowiedzi musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (608, '17', 'pt-PT', 'Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (609, '17', 'ru-RU', 'Сгенерировать креативные 5 ответов на вопрос:\n\n ##question## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса ответов должен быть:\n ##tone_language## \\п\\п', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (610, '17', 'es-ES', 'Generar 5 respuestas creativas a la pregunta:\n\n ##question## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de las respuestas debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (611, '17', 'sv-SE', 'Generera kreativa fem svar på frågan:\n\n ##question## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i svaren måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (612, '17', 'tr-TR', 'Soruya yaratıcı 5 yanıt oluşturun:\n\n ##question## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Cevapların ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (613, '17', 'pt-BR', 'Gerar criativo 5 respostas para a pergunta:\n\n ##question## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n Tom de voz das respostas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (614, '17', 'ro-RO', 'Generează reclame 5 răspunsuri la întrebarea:\n\n ##question## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii răspunsurilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (615, '17', 'vi-VN', 'Tạo 5 câu trả lời sáng tạo cho câu hỏi:\n\n ##question## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của câu trả lời phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (616, '17', 'sw-KE', 'Toa majibu 5 ya ubunifu kwa swali:\n\n ##question## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya majibu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (617, '17', 'sl-SI', 'Ustvari kreativnih 5 odgovorov na vprašanje:\n\n ##question## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu odgovorov mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (618, '17', 'th-TH', 'สร้างครีเอทีฟ 5 คำตอบสำหรับคำถาม:\n\n ##question## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (619, '17', 'uk-UA', 'Створіть творчі 5 відповідей на запитання:\n\n ##question## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відповідей має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (620, '17', 'lt-LT', 'Sukurkite 5 kūrybingus atsakymus į klausimą:\n\n ##question## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Atsakymų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (621, '17', 'bg-BG', 'Генерирайте творчески 5 отговора на въпрос:\n\n ##question## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на отговорите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (622, '18', 'en-US', 'Create 5 creative customer reviews for a product. Product name:\n\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the customer review must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (623, '18', 'cmn-CN', '为产品创建 5 个有创意的客户评论。产品名称:\n\n ##title## \n\n 产品描述:\n ##description## \n\n 客户评论的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:49'), (624, '18', 'hr-HR', 'Stvorite 5 kreativnih korisničkih recenzija za proizvod. Naziv proizvoda:\n\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa klijentove recenzije mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (625, '18', 'cs-CZ', 'Vytvořte 5 kreativních zákaznických recenzí pro produkt. Název produktu:\n\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu zákaznické recenze musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (626, '18', 'da-DK', 'Opret 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (627, '18', 'nl-NL', 'Maak 5 creatieve klantrecensies voor een product. Productnaam:\n\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de klantrecensie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (628, '18', 'et-EE', 'Looge toote kohta 5 loomingulist kliendiarvustust. Toote nimi:\n\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Kliendiarvustuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (629, '18', 'fi-FI', 'Luo 5 luovaa asiakasarvostelua tuotteelle. Tuotteen nimi:\n\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Asiakasarvion äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (630, '18', 'fr-FR', 'Créez 5 avis clients créatifs pour un produit. Nom du produit :\n\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'avis client doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (631, '18', 'de-DE', 'Erstellen Sie 5 kreative Kundenrezensionen für ein Produkt. Produktname:\n\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Kundenrezension muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (632, '18', 'el-GR', 'Δημιουργήστε 5 δημιουργικές κριτικές πελατών για ένα προϊόν. Όνομα προϊόντος:\n\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο ήχος της κριτικής πελάτη πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (633, '18', 'he-IL', 'צור 5 ביקורות יצירתיות של לקוחות עבור מוצר. שם המוצר:\n\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של ביקורת הלקוח חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (634, '18', 'hi-IN', 'एक उत्पाद के लिए 5 रचनात्मक ग्राहक समीक्षाएँ बनाएँ। उत्पाद का नाम:\n\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n ग्राहक समीक्षा का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (635, '18', 'hu-HU', 'Hozzon létre 5 kreatív vásárlói véleményt egy termékről. Termék neve:\n\n ##title## \n\n Termékleírás:\n ##description## \n\n A vásárlói vélemény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (636, '18', 'is-IS', 'Búðu til 5 skapandi umsagnir viðskiptavina fyrir vöru. Vöruheiti:\n\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í umsögn viðskiptavina verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (637, '18', 'id-ID', 'Buat 5 ulasan pelanggan yang kreatif untuk sebuah produk. Nama produk:\n\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara ulasan pelanggan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (638, '18', 'it-IT', 'Crea 5 recensioni cliente creative per un prodotto. Nome prodotto:\n\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce della recensione del cliente deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (639, '18', 'ja-JP', '商品のクリエイティブなカスタマー レビューを 5 つ作成します。商品名:\n\n ##title## \n\n 製品説明:\n ##description## \n\n カスタマー レビューの声調は次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (640, '18', 'ko-KR', '제품에 대해 5개의 창의적인 고객 리뷰를 작성하십시오. 제품 이름:\n\n ##title## \n\n 제품 설명:\n ##description## \n\n 고객 리뷰의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (641, '18', 'ms-MY', 'Buat 5 ulasan pelanggan kreatif untuk produk. Nama produk:\n\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara ulasan pelanggan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (642, '18', 'nb-NO', 'Lag 5 kreative kundeanmeldelser for et produkt. Produktnavn:\n\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i kundeanmeldelsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (643, '18', 'pl-PL', 'Utwórz 5 kreatywnych recenzji klientów dla produktu. Nazwa produktu:\n\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton opinii klienta musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (644, '18', 'pt-PT', 'Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (645, '18', 'ru-RU', 'Создайте 5 креативных отзывов клиентов о продукте. Название продукта:\n\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса отзыва клиента должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (646, '18', 'es-ES', 'Cree 5 reseñas creativas de clientes para un producto. Nombre del producto:\n\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz de la reseña del cliente debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (647, '18', 'sv-SE', 'Skapa 5 kreativa kundrecensioner för en produkt. Produktnamn:\n\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i kundrecensionen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (648, '18', 'tr-TR', 'Bir ürün için 5 yaratıcı müşteri yorumu oluşturun. Ürün adı:\n\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Müşteri incelemesinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (649, '18', 'pt-BR', 'Crie 5 avaliações criativas de clientes para um produto. Nome do produto:\n\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz da avaliação do cliente deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (650, '18', 'ro-RO', 'Creați 5 recenzii creative ale clienților pentru un produs. Nume produs:\n\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul de voce al recenziei clientului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (651, '18', 'vi-VN', 'Tạo 5 bài đánh giá sáng tạo của khách hàng cho một sản phẩm. Tên sản phẩm:\n\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của bài đánh giá của khách hàng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (652, '18', 'sw-KE', 'Unda maoni 5 bunifu ya wateja kwa bidhaa. Jina la bidhaa:\n\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya ukaguzi wa mteja lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (653, '18', 'sl-SI', 'Ustvarite 5 kreativnih ocen strank za izdelek. Ime izdelka:\n\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton ocene stranke mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (654, '18', 'th-TH', 'สร้างบทวิจารณ์จากลูกค้าเชิงสร้างสรรค์ 5 รายการสำหรับผลิตภัณฑ์หนึ่งๆ ชื่อผลิตภัณฑ์:\n\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n ความคิดเห็นของลูกค้าต้องเป็นเสียง:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (655, '18', 'uk-UA', 'Створіть 5 креативних відгуків клієнтів про продукт. Назва продукту:\n\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу відгуку клієнта повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (656, '18', 'lt-LT', 'Sukurkite 5 kūrybingus klientų atsiliepimus apie produktą. Produkto pavadinimas:\n\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Kliento atsiliepimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (657, '18', 'bg-BG', 'Създайте 5 креативни клиентски рецензии за продукт. Име на продукта:\n\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на рецензията на клиента трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (659, '19', 'en-US', 'Write a creative ad for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (660, '19', 'ar-AE', 'اكتب إعلانًا إبداعيًا للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (661, '19', 'cmn-CN', '为以下产品编写创意广告以在 Facebook 上投放,目标是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (662, '19', 'hr-HR', 'Napišite kreativni oglas za sljedeći proizvod za prikazivanje na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (663, '19', 'cs-CZ', 'Napište kreativní reklamu pro následující produkt, který se bude zobrazovat na Facebooku a je zaměřen na:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (664, '19', 'da-DK', 'Skriv en kreativ annonce for følgende produkt til at køre på Facebook rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (665, '19', 'nl-NL', 'Schrijf een creatieve advertentie voor het volgende product voor weergave op Facebook gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (666, '19', 'et-EE', 'Kirjutage Facebookis esitamiseks järgmise toote loov reklaam, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (667, '19', 'fi-FI', 'Kirjoita luova mainos seuraavalle tuotteelle Facebookissa, jonka tarkoituksena on:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (668, '19', 'fr-FR', 'Rédigez une publicité créative pour le produit suivant à diffuser sur Facebook et destinée à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'annonce doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (669, '19', 'de-DE', 'Schreiben Sie eine kreative Anzeige für das folgende Produkt, das auf Facebook geschaltet werden soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (670, '19', 'el-GR', 'Γράψτε μια δημιουργική διαφήμιση για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (671, '19', 'hi-IN', 'Facebook पर चलाने के लिए निम्नलिखित उत्पाद के लिए एक रचनात्मक विज्ञापन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (672, '19', 'hu-HU', 'Írjon kreatív hirdetést a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (673, '19', 'is-IS', 'Skrifaðu skapandi auglýsingu fyrir eftirfarandi vöru til að birta á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (674, '19', 'id-ID', 'Tulis iklan kreatif untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (675, '19', 'it-IT', 'Scrivi un annuncio creativo per il seguente prodotto da pubblicare su Facebook rivolto a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'annuncio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (676, '19', 'ja-JP', '次の製品のクリエイティブ広告を作成して、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (677, '19', 'ko-KR', 'Facebook에서 실행할 다음 제품에 대한 크리에이티브 광고 작성:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (678, '19', 'ms-MY', 'Tulis iklan kreatif untuk produk berikut untuk disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (679, '19', 'nb-NO', 'Skriv en kreativ annonse for følgende produkt som skal kjøres på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (680, '19', 'pl-PL', 'Napisz kreatywną reklamę następującego produktu do wyświetlania na Facebooku, skierowaną do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (681, '19', 'pt-PT', 'Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (682, '19', 'ru-RU', 'Напишите креативную рекламу следующего продукта для показа на Facebook, нацеленную на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (683, '19', 'es-ES', 'Escriba un anuncio creativo para que el siguiente producto se publique en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (684, '19', 'sv-SE', 'Skriv en kreativ annons för följande produkt som ska visas på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (685, '19', 'tr-TR', 'Aşağıdaki ürün için Facebook\'ta yayınlanması hedeflenen yaratıcı bir reklam yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (686, '19', 'pt-BR', 'Escreva um anúncio criativo para o seguinte produto para exibição no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (687, '19', 'ro-RO', 'Scrieți un anunț creativ pentru următorul produs, care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (688, '19', 'vi-VN', 'Viết quảng cáo sáng tạo cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (689, '19', 'sw-KE', 'Andika tangazo la ubunifu ili bidhaa ifuatayo ionyeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (690, '19', 'sl-SI', 'Napišite kreativni oglas za naslednji izdelek za prikazovanje na Facebooku, namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (691, '19', 'th-TH', 'เขียนโฆษณาที่สร้างสรรค์สำหรับผลิตภัณฑ์ต่อไปนี้เพื่อทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (692, '19', 'uk-UA', 'Напишіть креативне оголошення для наступного продукту для показу на Facebook, спрямоване на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (693, '19', 'lt-LT', 'Parašykite šio produkto kūrybinį skelbimą, kad jis būtų rodomas „Facebook“, skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (694, '19', 'bg-BG', 'Напишете творческа реклама за следния продукт, която да се пусне във Facebook и е насочена към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (695, '20', 'en-US', 'Write compelling YouTube description to get people interested in watching.\n\nVideo description:\n ##description## \n\nTone of voice of the video description must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (696, '20', 'ar-AE', 'اكتب وصفًا مقنعًا على YouTube لجذب اهتمام الأشخاص بالمشاهدة.\n\n وصف الفيديو:\n ##description## \n\nيجب أن تكون نغمة الصوت في وصف الفيديو:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (697, '20', 'cmn-CN', '撰写引人注目的 YouTube 说明,让人们有兴趣观看。\n\n视频说明:\n ##description## \n\n视频描述的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (698, '20', 'hr-HR', 'Napišite uvjerljiv YouTube opis kako biste zainteresirali ljude za gledanje.\n\nOpis videozapisa:\n ##description## \n\nTon glasa opisa videa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (699, '20', 'cs-CZ', 'Napište působivý popis na YouTube, aby se lidé zajímali o sledování.\n\nPopis videa:\n ##description## \n\nTón hlasu popisu videa musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (700, '20', 'da-DK', 'Skriv en overbevisende YouTube-beskrivelse for at få folk interesseret i at se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (701, '20', 'nl-NL', 'Schrijf een overtuigende YouTube-beschrijving om mensen te interesseren om te kijken.\n\nVideobeschrijving:\n ##description## \n\nDe toon van de videobeschrijving moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (702, '20', 'et-EE', 'Kirjutage ahvatlev YouTube\'i kirjeldus, et tekitada inimestes vaatamisest huvi.\n\nVideo kirjeldus:\n ##description## \n\nVideo kirjelduse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (703, '20', 'fi-FI', 'Kirjoita houkutteleva YouTube-kuvaus saadaksesi ihmiset kiinnostumaan katselusta.\n\nVideon kuvaus:\n ##description## \n\nVideon kuvauksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (704, '20', 'fr-FR', 'Rédigez une description YouTube convaincante pour intéresser les internautes.\n\nDescription de la vidéo :\n ##description## \n\nLe ton de la description de la vidéo doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (705, '20', 'de-DE', 'Schreiben Sie eine überzeugende YouTube-Beschreibung, um das Interesse der Zuschauer zu wecken.\n\nVideobeschreibung:\n ##description## \n\nTonfall der Videobeschreibung muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (706, '20', 'el-GR', 'Γράψτε μια συναρπαστική περιγραφή στο YouTube για να κάνετε τους ανθρώπους να ενδιαφέρονται να παρακολουθήσουν.\n\nΠεριγραφή βίντεο:\n ##description## \n\nΟ τόνος της φωνής της περιγραφής του βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (707, '20', 'he-IL', 'כתוב תיאור משכנע של YouTube כדי לגרום לאנשים להתעניין בצפייה.\n\nתיאור הסרטון:\n ##description## \n\nטון הדיבור של תיאור הסרטון חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (708, '20', 'hi-IN', 'लोगों को देखने में रुचि लेने के लिए आकर्षक YouTube विवरण लिखें।\n\nवीडियो विवरण:\n ##description## \n\nवीडियो विवरण का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (709, '20', 'hu-HU', 'Írjon lenyűgöző YouTube-leírást, hogy felkeltse az emberek érdeklődését a megtekintés iránt.\n\nVideó leírása:\n ##description## \n\nA videó leírásának hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (710, '20', 'is-IS', 'Skrifaðu sannfærandi YouTube lýsingu til að vekja áhuga fólks á að horfa.\n\nLýsing myndskeiðs:\n ##description## \n\nTónn í lýsingu myndbandsins verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (711, '20', 'id-ID', 'Tulis deskripsi YouTube yang menarik agar orang tertarik menonton.\n\nDeskripsi video:\n ##description## \n\nNada suara deskripsi video harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (712, '20', 'it-IT', 'Scrivi una descrizione accattivante per YouTube per attirare l\'interesse delle persone a guardarlo.\n\nDescrizione del video:\n ##description## \n\nIl tono di voce della descrizione del video deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (713, '20', 'ja-JP', '魅力的な YouTube の説明を書いて、視聴者に興味を持ってもらいましょう。\n\n動画の説明:\n ##description## \n\nビデオの説明のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (714, '20', 'ko-KR', '사람들이 시청에 관심을 갖도록 설득력 있는 YouTube 설명을 작성하세요.\n\n동영상 설명:\n ##description## \n\n동영상 설명의 음성 톤은 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (715, '20', 'ms-MY', 'Tulis perihalan YouTube yang menarik untuk menarik minat orang untuk menonton.\n\nPerihalan video:\n ##description## \n\nNada suara penerangan video mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (716, '20', 'nb-NO', 'Skriv overbevisende YouTube-beskrivelse for å få folk interessert i å se.\n\nVideobeskrivelse:\n ##description## \n\nTone i videobeskrivelsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (717, '20', 'pl-PL', 'Napisz przekonujący opis w YouTube, aby zainteresować ludzi oglądaniem.\n\nOpis filmu:\n ##description## \n\nTon głosu w opisie filmu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (718, '20', 'pt-PT', 'Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (719, '20', 'ru-RU', 'Напишите привлекательное описание для YouTube, чтобы заинтересовать людей.\n\nОписание видео:\n ##description## \n\nТон описания видео должен быть:\n ##tone_language## \\п\\п', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (720, '20', 'es-ES', 'Escribe una descripción convincente de YouTube para que las personas se interesen en verlo.\n\nDescripción del video:\n ##description## \n\nEl tono de voz de la descripción del video debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (721, '20', 'sv-SE', 'Skriv övertygande YouTube-beskrivning för att få folk intresserade av att titta.\n\nVideobeskrivning:\n ##description## \n\nRösttonen i videobeskrivningen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (722, '20', 'tr-TR', 'İnsanların izlemekle ilgilenmesini sağlamak için etkileyici bir YouTube açıklaması yazın.\n\nVideo açıklaması:\n ##description## \n\nVideo açıklamasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (723, '20', 'pt-BR', 'Escreva uma descrição atraente do YouTube para atrair o interesse das pessoas em assistir.\n\nDescrição do vídeo:\n ##description## \n\nTom de voz da descrição do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (724, '20', 'ro-RO', 'Scrieți o descriere YouTube convingătoare pentru a-i determina pe oameni să fie interesați de vizionare.\n\nDescrierea videoclipului:\n ##description## \n\nTonul de voce al descrierii videoclipului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (725, '20', 'vi-VN', 'Viết mô tả YouTube hấp dẫn để thu hút mọi người thích xem.\n\nMô tả video:\n ##description## \n\nGiọng điệu của mô tả video phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (726, '20', 'sw-KE', 'Andika maelezo ya YouTube ya kuvutia ili kuwavutia watu kutazama.\n\nMaelezo ya video:\n ##description## \n\nToni ya sauti ya maelezo ya video lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (727, '20', 'sl-SI', 'Napišite privlačen opis YouTube, da boste ljudi zanimali za ogled.\n\nOpis videa:\n ##description## \n\nTon glasu opisa videa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (728, '20', 'th-TH', 'เขียนคำอธิบาย YouTube ที่น่าสนใจเพื่อให้ผู้คนสนใจรับชม\n\n คำอธิบายวิดีโอ:\n ##description## \nเสียงของคำอธิบายวิดีโอต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (729, '20', 'uk-UA', 'Напишіть переконливий опис YouTube, щоб зацікавити людей переглядом.\n\n Опис відео:\n ##description## \n\nТон опису відео має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (730, '20', 'lt-LT', 'Parašykite patrauklų „YouTube“ aprašą, kad žmonės susidomėtų žiūrėti.\n\n Vaizdo įrašo aprašymas:\n ##description## \n\\Vaizdo įrašo aprašymo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (731, '20', 'bg-BG', 'Напишете завладяващо описание в YouTube, за да накарате хората да се заинтересуват да гледат.\n\n Описание на видеоклипа:\n ##description## \n\nТонът на гласа на видео описанието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (732, '21', 'en-US', 'Write compelling YouTube video title for the provided video description to get people interested in watching:\n\nVideo description:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (733, '21', 'ar-AE', 'اكتب عنوان فيديو YouTube مقنعًا لوصف الفيديو المقدم لجذب اهتمام الأشخاص بالمشاهدة:\n\nوصف الفيديو:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (734, '21', 'cmn-CN', '为提供的视频描述写引人注目的 YouTube 视频标题,以引起人们对观看的兴趣:\n\n视频描述:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (735, '21', 'hr-HR', 'Napišite uvjerljiv naslov YouTube videozapisa za navedeni opis videozapisa kako biste zainteresirali ljude za gledanje:\n\nOpis videozapisa:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (736, '21', 'cs-CZ', 'K poskytnutému popisu videa napište působivý název videa na YouTube, aby lidi zaujalo sledování:\n\nPopis videa:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (737, '21', 'da-DK', 'Skriv en overbevisende YouTube-videotitel til den medfølgende videobeskrivelse for at få folk interesseret i at se:\n\nVideobeskrivelse:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (738, '21', 'nl-NL', 'Schrijf een pakkende YouTube-videotitel voor de verstrekte videobeschrijving om mensen te interesseren om te kijken:\n\nVideobeschrijving:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (739, '21', 'et-EE', 'Kirjutage esitatud video kirjeldusele köitev YouTube\'i video pealkiri, et tekitada inimestes huvi vaatamise vastu:\n\nVideo kirjeldus:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (740, '21', 'fi-FI', 'Kirjoita houkutteleva YouTube-videon nimi annetulle videon kuvaukselle saadaksesi ihmiset kiinnostumaan:\n\nVideon kuvaus:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (741, '21', 'fr-FR', 'Écrivez un titre de vidéo YouTube convaincant pour la description de la vidéo fournie afin d\'intéresser les gens à regarder :\n\nDescription de la vidéo :\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (742, '21', 'de-DE', 'Schreiben Sie einen überzeugenden YouTube-Videotitel für die bereitgestellte Videobeschreibung, um das Interesse der Zuschauer zu wecken:\n\nVideobeschreibung:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (743, '21', 'el-GR', 'Γράψτε τον συναρπαστικό τίτλο του βίντεο YouTube για την παρεχόμενη περιγραφή του βίντεο για να ενθαρρύνετε τους χρήστες να το παρακολουθήσουν:\n\nΠεριγραφή βίντεο:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (744, '21', 'he-IL', 'כתוב כותרת סרטון YouTube משכנעת עבור תיאור הסרטון שסופק כדי לגרום לאנשים להתעניין בצפייה:\n\nתיאור הסרטון:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (745, '21', 'hi-IN', 'लोगों को देखने में रुचि लेने के लिए प्रदान किए गए वीडियो विवरण के लिए आकर्षक YouTube वीडियो शीर्षक लिखें:\n\nवीडियो विवरण:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (746, '21', 'hu-HU', 'Írjon lenyűgöző YouTube-videócímet a mellékelt videó leírásához, hogy felkeltse az emberek érdeklődését a megtekintés iránt:\n\nVideó leírása:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (747, '21', 'is-IS', 'Skrifaðu sannfærandi titil á YouTube vídeói fyrir vídeólýsinguna sem fylgir til að vekja áhuga fólks á að horfa á:\n\nLýsing myndskeiðs:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (748, '21', 'id-ID', 'Tulis judul video YouTube yang menarik untuk deskripsi video yang diberikan agar orang-orang tertarik untuk menonton:\n\nDeskripsi video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (749, '21', 'it-IT', 'Scrivi un titolo del video di YouTube convincente per la descrizione del video fornita per attirare l\'interesse delle persone a guardarlo:\n\nDescrizione del video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (750, '21', 'ja-JP', '視聴者に興味を持ってもらうために、提供された動画の説明に説得力のある YouTube 動画のタイトルを書いてください:\n\n動画の説明:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (751, '21', 'ko-KR', '사람들이 시청에 관심을 갖도록 제공된 동영상 설명에 대한 매력적인 YouTube 동영상 제목을 작성하세요:\n\n동영상 설명:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (752, '21', 'ms-MY', 'Tulis tajuk video YouTube yang menarik untuk penerangan video yang disediakan untuk menarik minat orang untuk menonton:\n\nPerihalan video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (753, '21', 'nb-NO', 'Skriv en overbevisende YouTube-videotittel for den oppgitte videobeskrivelsen for å få folk interessert i å se:\n\nVideobeskrivelse:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (754, '21', 'pl-PL', 'Napisz przekonujący tytuł filmu YouTube dla podanego opisu filmu, aby zainteresować ludzi oglądaniem:\n\nOpis filmu:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (755, '21', 'pt-PT', 'Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (756, '21', 'ru-RU', 'Напишите привлекательное название видео YouTube для предоставленного описания видео, чтобы заинтересовать людей в просмотре:\n\nОписание видео:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (757, '21', 'es-ES', 'Escribe un título de video de YouTube atractivo para la descripción del video proporcionada para que las personas se interesen en verlo:\n\nDescripción del video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (758, '21', 'sv-SE', 'Skriv övertygande YouTube-videotitel för den medföljande videobeskrivningen för att få folk intresserade av att titta på:\n\nVideobeskrivning:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (759, '21', 'tr-TR', 'Kullanıcıların izlemekle ilgilenmesini sağlamak için sağlanan video açıklamasına çekici bir YouTube video başlığı yazın:\n\nVideo açıklaması:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (760, '21', 'pt-BR', 'Escreva um título de vídeo do YouTube atraente para a descrição do vídeo fornecida para atrair o interesse das pessoas em assistir:\n\nDescrição do vídeo:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (761, '21', 'ro-RO', 'Scrieți un titlu convingător al videoclipului YouTube pentru descrierea videoclipului furnizată pentru a-i determina pe oameni să fie interesați să vizioneze:\n\nDescrierea videoclipului:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (762, '21', 'vi-VN', 'Viết tiêu đề video hấp dẫn trên YouTube cho phần mô tả video được cung cấp để thu hút mọi người quan tâm đến việc xem:\n\nMô tả video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (763, '21', 'sw-KE', 'Andika mada ya video ya YouTube yenye kuvutia kwa maelezo ya video yaliyotolewa ili kuwavutia watu kutazama:\n\nMaelezo ya video:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (764, '21', 'sl-SI', 'Napišite privlačen naslov videoposnetka YouTube za predloženi opis videoposnetka, da boste ljudi zanimali za ogled:\n\nOpis videoposnetka:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (765, '21', 'th-TH', 'เขียนชื่อวิดีโอ YouTube ที่น่าสนใจสำหรับคำอธิบายวิดีโอที่ให้มาเพื่อให้ผู้คนสนใจรับชม:\n\nคำอธิบายวิดีโอ:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (766, '21', 'uk-UA', 'Напишіть переконливу назву відео YouTube для наданого опису відео, щоб зацікавити людей до перегляду:\n\nОпис відео:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (767, '21', 'lt-LT', 'Parašykite patrauklų „YouTube“ vaizdo įrašo pavadinimą pateiktam vaizdo įrašo aprašui, kad žmonės susidomėtų žiūrėti:\n\nVaizdo įrašo aprašas:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (768, '21', 'bg-BG', 'Напишете завладяващо заглавие на видеоклипа в YouTube за предоставеното описание на видеоклипа, за да предизвикате интерес у хората да гледат:\n\nОписание на видеоклипа:\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (769, '22', 'en-US', 'Generate SEO-optimized YouTube tags and keywords for:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (770, '22', 'ar-AE', 'إنشاء علامات وكلمات رئيسية على YouTube مُحسّنة لتحسين محركات البحث لـ:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (771, '22', 'cmn-CN', '为以下内容生成针对 SEO 优化的 YouTube 标签和关键字:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (772, '22', 'hr-HR', 'Generiraj SEO-optimizirane YouTube oznake i ključne riječi za:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (773, '22', 'cs-CZ', 'Generujte značky a klíčová slova YouTube optimalizované pro SEO pro:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (774, '22', 'da-DK', 'Generer SEO-optimerede YouTube-tags og søgeord til:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (775, '22', 'nl-NL', 'Genereer SEO-geoptimaliseerde YouTube-tags en trefwoorden voor:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (776, '22', 'et-EE', 'SEO jaoks optimeeritud YouTube\'i märgendite ja märksõnade loomine:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (777, '22', 'fi-FI', 'Luo SEO-optimoituja YouTube-tageja ja avainsanoja:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (778, '22', 'fr-FR', 'Générez des balises et des mots clés YouTube optimisés pour le référencement pour :\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (779, '22', 'de-DE', 'Generiere SEO-optimierte YouTube-Tags und Keywords für:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (780, '22', 'el-GR', 'Δημιουργήστε ετικέτες και λέξεις-κλειδιά YouTube βελτιστοποιημένες για SEO για:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (781, '22', 'he-IL', 'צור תגיות YouTube ומילות מפתח מותאמות לקידום אתרים עבור:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (782, '22', 'hi-IN', 'इनके लिए SEO-अनुकूलित YouTube टैग और कीवर्ड जनरेट करें:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (783, '22', 'hu-HU', 'SEO-optimalizált YouTube-címkék és kulcsszavak létrehozása a következőkhöz:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (784, '22', 'is-IS', 'Búðu til SEO-bjartsýni YouTube merki og leitarorð fyrir:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (785, '22', 'id-ID', 'Buat tag dan kata kunci YouTube yang dioptimalkan untuk SEO untuk:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (786, '22', 'it-IT', 'Genera tag e parole chiave YouTube ottimizzati per la SEO per:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (787, '22', 'ja-JP', 'SEO 用に最適化された YouTube タグとキーワードを生成します:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (788, '22', 'ko-KR', 'SEO에 최적화된 YouTube 태그 및 키워드 생성:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (789, '22', 'ms-MY', 'Jana teg dan kata kunci YouTube yang dioptimumkan SEO untuk:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (790, '22', 'nb-NO', 'Generer SEO-optimaliserte YouTube-tagger og søkeord for:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (791, '22', 'pl-PL', 'Wygeneruj zoptymalizowane pod kątem SEO tagi i słowa kluczowe YouTube dla:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (792, '22', 'pt-PT', 'Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (793, '22', 'ru-RU', 'Создать SEO-оптимизированные теги и ключевые слова YouTube для:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (794, '22', 'es-ES', 'Generar etiquetas y palabras clave de YouTube optimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (795, '22', 'sv-SE', 'Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (796, '22', 'tr-TR', 'Şunlar için SEO için optimize edilmiş YouTube etiketleri ve anahtar kelimeler oluşturun:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (797, '22', 'pt-BR', 'Gerar tags e palavras-chave do YouTube otimizadas para SEO para:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (798, '22', 'ro-RO', 'Generează etichete și cuvinte cheie YouTube optimizate pentru SEO pentru:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (799, '22', 'vi-VN', 'Tạo thẻ và từ khóa YouTube được tối ưu hóa cho SEO cho:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (800, '22', 'sw-KE', 'Zalisha lebo za YouTube zilizoboreshwa na SEO na maneno muhimu ya:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (801, '22', 'sl-SI', 'Ustvari YouTube oznake in ključne besede, optimizirane za SEO za:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (802, '22', 'th-TH', 'สร้างแท็ก YouTube ที่ปรับให้เหมาะสม SEO และคำหลักสำหรับ:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (803, '22', 'uk-UA', 'Створіть оптимізовані для SEO теги та ключові слова YouTube для:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (804, '22', 'lt-LT', 'Generuokite pagal SEO optimizuotas „YouTube“ žymas ir raktinius žodžius:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (805, '22', 'bg-BG', 'Генериране на оптимизирани за SEO маркери и ключови думи в YouTube за:\n\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (806, '23', 'en-US', 'Grab attention with catchy captions for this Instagram post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (807, '23', 'ar-AE', 'اجذب الانتباه باستخدام التسميات التوضيحية الجذابة لمشاركة Instagram هذه:\n\n ##description## \n\nيجب أن تكون نغمة صوت التسميات التوضيحية:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (808, '23', 'cmn-CN', '为这条 Instagram 帖子添加朗朗上口的标题以吸引注意力:\n\n ##description## \n\n字幕的语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (809, '23', 'hr-HR', 'Privucite pažnju privlačnim natpisima za ovu objavu na Instagramu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (810, '23', 'cs-CZ', 'Přitáhněte pozornost chytlavými titulky k tomuto příspěvku na Instagramu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (811, '23', 'da-DK', 'Fang opmærksomhed med fængende billedtekster til dette Instagram-opslag:\n\n ##description## \n\nTelefonen for billedteksterne skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (812, '23', 'nl-NL', 'Trek de aandacht met pakkende bijschriften voor dit Instagram-bericht:\n\n ##description## \n\nDe toon van de ondertiteling moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (813, '23', 'et-EE', 'Pöörake tähelepanu selle Instagrami postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nTiitrite hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (814, '23', 'fi-FI', 'Kiinnitä huomiota tarttuvilla kuvateksteillä tälle Instagram-julkaisulle:\n\n ##description## \n\nTekstitysten äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (815, '23', 'fr-FR', 'Attirez l\'attention avec des légendes accrocheuses pour cette publication Instagram :\n\n ##description## \n\nLe ton de la voix des sous-titres doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (816, '23', 'de-DE', 'Erregen Sie Aufmerksamkeit mit einprägsamen Bildunterschriften für diesen Instagram-Post:\n\n ##description## \n\nTonlage der Untertitel muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (817, '23', 'el-GR', 'Τραβήξτε την προσοχή με εντυπωσιακούς λεζάντες για αυτήν την ανάρτηση στο Instagram:\n\n ##description## \n\nΟ τόνος της φωνής των υπότιτλων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (818, '23', 'he-IL', 'משכו תשומת לב עם כיתובים קליטים לפוסט הזה באינסטגרם:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (819, '23', 'hi-IN', 'इस Instagram पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (820, '23', 'hu-HU', 'Felhívja fel a figyelmet ennek az Instagram-bejegyzésnek a fülbemászó felirataival:\n\n ##description## \n\nA feliratok hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (821, '23', 'is-IS', 'Gríptu athygli með grípandi texta fyrir þessa Instagram færslu:\n\n ##description## \n\nTónn skjátextanna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (822, '23', 'id-ID', 'Raih perhatian dengan teks menarik untuk postingan Instagram ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (823, '23', 'it-IT', 'Attira l\'attenzione con didascalie accattivanti per questo post di Instagram:\n\n ##description## \n\nIl tono di voce dei sottotitoli deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (824, '23', 'ja-JP', 'この Instagram 投稿のキャッチーなキャプションで注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (825, '23', 'ko-KR', '이 Instagram 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n캡션의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (826, '23', 'ms-MY', 'Tarik perhatian dengan kapsyen yang menarik untuk siaran Instagram ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (827, '23', 'nb-NO', 'Fang oppmerksomhet med fengende bildetekster for dette Instagram-innlegget:\n\n ##description## \n\nStemmetonen til bildetekstene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (828, '23', 'pl-PL', 'Przyciągnij uwagę chwytliwymi napisami do tego posta na Instagramie:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (829, '23', 'pt-PT', 'Chame a atenção com legendas cativantes para esta postagem do Instagram:\n\n ##description## \n\nTom de voz das legendas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (830, '23', 'uk-UA', 'Привертайте увагу привабливими підписами до цієї публікації в Instagram:\n\n ##description## \n\nТон субтитрів має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (831, '23', 'lt-LT', 'Patraukite dėmesį patraukliais šio Instagram įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (832, '23', 'bg-BG', 'Привлечете вниманието със закачливи надписи за тази публикация в Instagram:\n\n ##description## \n\nТонът на надписите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (833, '24', 'en-US', 'Find the best hashtags to use for this Instagram keyword:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (834, '24', 'ar-AE', 'ابحث عن أفضل علامات التصنيف لاستخدامها لهذه الكلمة الأساسية في Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (835, '24', 'cmn-CN', '找到用于此 Instagram 关键字的最佳主题标签:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (836, '24', 'hr-HR', 'Pronađite najbolje hashtagove za ovu ključnu riječ za Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (837, '24', 'cs-CZ', 'Najděte nejlepší hashtagy pro toto klíčové slovo na Instagramu:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (838, '24', 'da-DK', 'Find de bedste hashtags til dette Instagram-søgeord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (839, '24', 'nl-NL', 'Vind de beste hashtags om te gebruiken voor dit Instagram-trefwoord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (840, '24', 'et-EE', 'Leia parimad hashtagid, mida selle Instagrami märksõna jaoks kasutada:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (841, '24', 'fi-FI', 'Etsi parhaat hashtagit tälle Instagram-avainsanalle:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (842, '24', 'fr-FR', 'Trouvez les meilleurs hashtags à utiliser pour ce mot clé Instagram :\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (843, '24', 'de-DE', 'Finde die besten Hashtags für dieses Instagram-Keyword:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (844, '24', 'el-GR', 'Βρείτε τα καλύτερα hashtags για χρήση για αυτήν τη λέξη-κλειδί Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (845, '24', 'he-IL', 'מצא את ההאשטאגים הטובים ביותר לשימוש עבור מילת המפתח הזו באינסטגרם:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (846, '24', 'hi-IN', 'इस Instagram कीवर्ड के लिए उपयोग करने के लिए सर्वोत्तम हैशटैग खोजें:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (847, '24', 'hu-HU', 'Keresse meg az ehhez az Instagram-kulcsszóhoz használható legjobb hashtageket:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (848, '24', 'is-IS', 'Finndu bestu myllumerkin til að nota fyrir þetta Instagram leitarorð:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (849, '24', 'id-ID', 'Temukan tagar terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (850, '24', 'it-IT', 'Trova i migliori hashtag da utilizzare per questa parola chiave di Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (851, '24', 'ja-JP', 'この Instagram キーワードに使用するのに最適なハッシュタグを見つけてください:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (852, '24', 'ko-KR', '이 Instagram 키워드에 사용할 최고의 해시태그 찾기:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (853, '24', 'ms-MY', 'Cari hashtag terbaik untuk digunakan untuk kata kunci Instagram ini:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (854, '24', 'nb-NO', 'Finn de beste hashtaggene du kan bruke for dette Instagram-søkeordet:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (855, '24', 'pl-PL', 'Znajdź najlepsze hashtagi do użycia dla tego słowa kluczowego na Instagramie:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (856, '24', 'pt-PT', 'Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (857, '24', 'ru-RU', 'Найдите лучшие хэштеги для этого ключевого слова Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (858, '24', 'sv-SE', 'Hitta de bästa hashtaggarna att använda för detta Instagram-sökord:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:50'), (859, '24', 'tr-TR', 'Bu Instagram anahtar kelimesi için kullanılacak en iyi etiketleri bulun:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (860, '24', 'pt-BR', 'Encontre as melhores hashtags para usar com esta palavra-chave do Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (861, '24', 'ro-RO', 'Găsiți cele mai bune hashtag-uri de folosit pentru acest cuvânt cheie Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (862, '24', 'vi-VN', 'Tìm các thẻ bắt đầu bằng # tốt nhất để sử dụng cho từ khóa Instagram này:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (863, '24', 'sw-KE', 'Tafuta lebo za reli bora za kutumia kwa neno kuu la Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (864, '24', 'sl-SI', 'Poiščite najboljše hashtage za to ključno besedo za Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (865, '24', 'th-TH', 'ค้นหาแฮชแท็กที่ดีที่สุดเพื่อใช้สำหรับคีย์เวิร์ด Instagram นี้:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (866, '24', 'uk-UA', 'Знайдіть найкращі хештеги для цього ключового слова Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (867, '24', 'lt-LT', 'Rasti geriausias žymas su grotelėmis, kurias galima naudoti šiam „Instagram“ raktiniam žodžiui:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (868, '24', 'bg-BG', 'Намерете най-добрите хаштагове, които да използвате за тази ключова дума в Instagram:\n\n ##keyword## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (869, '25', 'en-US', 'Write a personal social media post about:\n\n ##description## \n\nTone of voice of the post must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (870, '25', 'ar-AE', 'اكتب منشورًا شخصيًا على وسائل التواصل الاجتماعي حول:\n\n ##description## \n\nيجب أن تكون نغمة صوت المشاركة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (871, '25', 'cmn-CN', '写一篇个人社交媒体帖子:\n\n ##description## \n\n帖子的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (872, '25', 'hr-HR', 'Napišite osobnu objavu na društvenim mrežama o:\n\n ##description## \n\nTon glasa objave mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (873, '25', 'cs-CZ', 'Napište osobní příspěvek na sociální média o:\n\n ##description## \n\nTón hlasu příspěvku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (874, '25', 'da-DK', 'Skriv et personligt opslag på sociale medier om:\n\n ##description## \n\nOplæggets stemme skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (875, '25', 'nl-NL', 'Schrijf een persoonlijk bericht op sociale media over:\n\n ##description## \n\nDe toon van het bericht moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (876, '25', 'et-EE', 'Kirjutage isiklik sotsiaalmeedia postitus teemal:\n\n ##description## \n\nPostituse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (877, '25', 'fi-FI', 'Kirjoita henkilökohtainen sosiaalisen median viesti aiheesta:\n\n ##description## \n\nViestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (878, '25', 'fr-FR', 'Rédigez un message personnel sur les réseaux sociaux à propos de :\n\n ##description## \n\nLe ton de la voix du message doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (879, '25', 'de-DE', 'Schreiben Sie einen persönlichen Social-Media-Beitrag über:\n\n ##description## \n\nTonlage des Beitrags muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (880, '25', 'el-GR', 'Γράψτε μια προσωπική ανάρτηση στα μέσα κοινωνικής δικτύωσης σχετικά με:\n\n ##description## \n\nΟ τόνος της φωνής της ανάρτησης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (881, '25', 'he-IL', 'כתוב פוסט אישי במדיה החברתית על:\n\n ##description## \n\nטון הדיבור של הפוסט חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (882, '25', 'hi-IN', 'इसके बारे में एक निजी सोशल मीडिया पोस्ट लिखें:\n\n ##description## \n\nपोस्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (883, '25', 'hu-HU', 'Írjon személyes közösségimédia-bejegyzést erről:\n\n ##description## \n\nA bejegyzés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (884, '25', 'is-IS', 'Skrifaðu persónulega færslu á samfélagsmiðlum um:\n\n ##description## \n\nTónn færslunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (885, '25', 'id-ID', 'Tulis postingan media sosial pribadi tentang:\n\n ##description## \n\nNada suara postingan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (886, '25', 'it-IT', 'Scrivi un post personale sui social media su:\n\n ##description## \n\nIl tono di voce del post deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (887, '25', 'ja-JP', '個人的なソーシャル メディアの投稿について書く:\n\n ##description## \n\n投稿のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (888, '25', 'ko-KR', '다음에 대한 개인 소셜 미디어 게시물 작성:\n\n ##description## \n\n포스트의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (889, '25', 'ms-MY', 'Tulis siaran media sosial peribadi tentang:\n\n ##description## \n\nNada suara siaran mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (890, '25', 'nb-NO', 'Skriv et personlig innlegg på sosiale medier om:\n\n ##description## \n\nTone i innlegget må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (891, '25', 'pl-PL', 'Napisz osobisty post w mediach społecznościowych na temat:\n\n ##description## \n\nTon wypowiedzi w poście musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (892, '25', 'pt-PT', 'Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (893, '25', 'ru-RU', 'Напишите личный пост в социальной сети о:\n\n ##description## \n\nТон сообщения должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (894, '25', 'es-ES', 'Escribe una publicación personal en las redes sociales sobre:\n\n ##description## \n\nEl tono de voz de la publicación debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (895, '25', 'sv-SE', 'Skriv ett personligt inlägg på sociala medier om:\n\n ##description## \n\nTonfallet i inlägget måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (896, '25', 'tr-TR', 'Şununla ilgili kişisel bir sosyal medya gönderisi yaz:\n\n ##description## \n\nGönderinin ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (897, '25', 'pt-BR', 'Escreva uma postagem de mídia social pessoal sobre:\n\n ##description## \n\nTom de voz da postagem deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (898, '25', 'ro-RO', 'Scrieți o postare personală pe rețelele sociale despre:\n\n ##description## \n\nTonul vocii postării trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (899, '25', 'vi-VN', 'Viết một bài đăng cá nhân trên mạng xã hội về:\n\n ##description## \n\nGiọng điệu của bài đăng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (900, '25', 'sw-KE', 'Andika chapisho la kibinafsi la mtandao wa kijamii kuhusu:\n\n ##description## \n\nToni ya sauti ya chapisho lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (901, '25', 'sl-SI', 'Napišite osebno objavo v družabnem omrežju o:\n\n ##description## \n\nTon objave mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (902, '25', 'th-TH', 'เขียนโพสต์โซเชียลมีเดียส่วนตัวเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของโพสต์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (903, '25', 'uk-UA', 'Напишіть особисту публікацію в соціальних мережах про:\n\n ##description## \n\nТон допису має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (904, '25', 'lt-LT', 'Parašykite asmeninį socialinių tinklų įrašą apie:\n\n ##description## \n\nĮrašo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (905, '25', 'bg-BG', 'Напишете лична публикация в социалните медии за:\n\n ##description## \n\nТонът на публикацията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (906, '26', 'en-US', 'Create a large professional social media post for my company. Post description:\n\n ##post## \n\nCompany description:\n ##description## \n\nCompany name:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (907, '26', 'ar-AE', 'أنشئ منشورًا احترافيًا كبيرًا على الوسائط الاجتماعية لشركتي. وصف المشاركة:\n\n ##post## \n\nوصف الشركة:\n ##description## \n\nاسم الشركة:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (908, '26', 'cmn-CN', '为我的公司创建大型专业社交媒体帖子。帖子描述:\n\n ##post## \n\n公司描述:\n ##description## \n\n公司名称:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (909, '26', 'hr-HR', 'Stvorite veliku profesionalnu objavu na društvenim mrežama za moju tvrtku. Opis objave:\n\n ##post## \n\nOpis tvrtke:\n ##description## \n\nNaziv tvrtke:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (910, '26', 'cs-CZ', 'Vytvořte pro mou společnost velký profesionální příspěvek na sociálních sítích. Popis příspěvku:\n\n ##post## \n\nPopis společnosti:\n ##description## \n\nNázev společnosti:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (911, '26', 'da-DK', 'Opret et stort professionelt opslag på sociale medier til min virksomhed. Indlægsbeskrivelse:\n\n ##post## \n\nVirksomhedsbeskrivelse:\n ##description## \n\nVirksomhedsnavn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (912, '26', 'nl-NL', 'Maak een groot professioneel bericht op sociale media voor mijn bedrijf. Berichtbeschrijving:\n\n ##post## \n\nBedrijfsomschrijving:\n ##description## \n\nBedrijfsnaam:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (913, '26', 'et-EE', 'Loo minu ettevõtte jaoks suur professionaalne sotsiaalmeediapostitus. Postituse kirjeldus:\n\n ##post## \n\nEttevõtte kirjeldus:\n ##description## \n\nEttevõtte nimi:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (914, '26', 'fi-FI', 'Luo suuri ammattimainen sosiaalisen median viesti yritykselleni. Viestin kuvaus:\n\n ##post## \n\nYrityksen kuvaus:\n ##description## \n\nYrityksen nimi:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (915, '26', 'fr-FR', 'Créer une grande publication professionnelle sur les réseaux sociaux pour mon entreprise. Description de la publication :\n\n ##post## \n\nDescription de l\'entreprise :\n ##description## \n\nNom de l\'entreprise :\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (916, '26', 'de-DE', 'Erstelle einen großen professionellen Social-Media-Beitrag für mein Unternehmen. Beitragsbeschreibung:\n\n ##post## \n\nUnternehmensbeschreibung:\n ##description## \n\nFirmenname:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (917, '26', 'el-GR', 'Δημιουργήστε μια μεγάλη επαγγελματική ανάρτηση στα μέσα κοινωνικής δικτύωσης για την εταιρεία μου. Περιγραφή ανάρτησης:\n\n ##post## \n\nΠεριγραφή εταιρείας:\n ##description## \n\nΌνομα εταιρείας:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (918, '26', 'he-IL', 'צור פוסט מקצועי גדול במדיה החברתית עבור החברה שלי. תיאור הפוסט:\n\n ##post## \n\nתיאור החברה:\n ##description## \n\nשם החברה:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (919, '26', 'hi-IN', 'मेरी कंपनी के लिए एक बड़ी पेशेवर सोशल मीडिया पोस्ट बनाएं। पोस्ट विवरण:\n\n ##post## \n\nकंपनी विवरण:\n ##description## \n\nकंपनी का नाम:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (920, '26', 'hu-HU', 'Hozzon létre egy nagy, professzionális közösségi média bejegyzést a cégem számára. Bejegyzés leírása:\n\n ##post## \n\nCég leírása:\n ##description## \n\nCég neve:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (921, '26', 'is-IS', 'Búðu til 10 grípandi bloggtitla fyrir:\n\n ##description## \n\n\'Búa til stóra faglega samfélagsmiðlafærslu fyrir fyrirtækið mitt. Lýsing færslu:\n\n ##post## \n\nFyrirtækislýsing:\n ##description## \n\nNafn fyrirtækis:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (922, '26', 'id-ID', 'Buat postingan media sosial profesional yang besar untuk perusahaan saya. Deskripsi postingan:\n\n ##post## \n\nDeskripsi perusahaan:\n ##description## \n\nNama perusahaan:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (923, '26', 'it-IT', 'Crea un grande post professionale sui social media per la mia azienda. Descrizione del post:\n\n ##post## \n\nDescrizione azienda:\n ##description## \n\nNome azienda:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (924, '26', 'ja-JP', '私の会社のために大規模なプロフェッショナル ソーシャル メディア投稿を作成します。投稿の説明:\n\n ##post## \n\n会社説明:\n ##description## \n\n会社名:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (925, '26', 'ko-KR', '우리 회사를 위한 대규모 전문 소셜 미디어 게시물을 작성합니다. 게시물 설명:\n\n ##post## \n\n회사 설명:\n ##description## \n\n회사 이름:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (926, '26', 'ms-MY', 'Buat siaran media sosial profesional yang besar untuk syarikat saya. Perihalan siaran:\n\n ##post## \n\nPerihalan syarikat:\n ##description## \n\nNama syarikat:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (927, '26', 'nb-NO', 'Opprett et stort profesjonelt innlegg på sosiale medier for firmaet mitt. Innleggsbeskrivelse:\n\n ##post## \n\nBedriftsbeskrivelse:\n ##description## \n\nBedriftsnavn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (928, '26', 'pl-PL', 'Utwórz obszerny, profesjonalny post mojej firmy w mediach społecznościowych. Opis wpisu:\n\n ##post## \n\nOpis firmy:\n ##description## \n\nNazwa firmy:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (929, '26', 'pt-PT', 'Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (930, '26', 'ru-RU', 'Создайте большую профессиональную публикацию в социальных сетях для моей компании. Описание публикации:\n\n ##post## \n\nОписание компании:\n ##description## \n\nНазвание компании:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (931, '26', 'es-ES', 'Crear una gran publicación profesional en las redes sociales para mi empresa. Descripción de la publicación:\n\n ##post## \n\nDescripción de la empresa:\n ##description## \n\nNombre de la empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (932, '26', 'sv-SE', 'Skapa ett stort professionellt inlägg på sociala medier för mitt företag. Inläggsbeskrivning:\n\n ##post## \n\nFöretagsbeskrivning:\n ##description## \n\nFöretagsnamn:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (933, '26', 'tr-TR', 'Şirketim için büyük bir profesyonel sosyal medya gönderisi oluştur. Gönderi açıklaması:\n\n ##post## \n\nŞirket açıklaması:\n ##description## \n\nŞirket adı:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (934, '26', 'pt-BR', 'Criar uma grande postagem de mídia social profissional para minha empresa. Descrição da postagem:\n\n ##post## \n\nDescrição da empresa:\n ##description## \n\nNome da empresa:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (935, '26', 'ro-RO', 'Creează o postare mare profesională pe rețelele sociale pentru compania mea. Descrierea postării:\n\n ##post## \n\nDescrierea companiei:\n ##description## \n\nNumele companiei:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (936, '26', 'vi-VN', 'Tạo một bài đăng lớn chuyên nghiệp trên mạng xã hội cho công ty của tôi. Mô tả bài đăng:\n\n ##post## \n\nMô tả công ty:\n ##description## \n\nTên công ty:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (937, '26', 'sw-KE', 'Unda chapisho kubwa la kitaalamu la mitandao ya kijamii kwa ajili ya kampuni yangu. Chapisha maelezo:\n\n ##post## \n\nMaelezo ya kampuni:\n ##description## \n\nJina la kampuni:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (938, '26', 'sl-SI', 'Ustvari veliko profesionalno objavo v družbenih medijih za moje podjetje. Opis objave:\n\n ##post## \n\nOpis podjetja:\n ##description## \n\nIme podjetja:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (939, '26', 'th-TH', 'สร้างโพสต์โซเชียลมีเดียระดับมืออาชีพขนาดใหญ่สำหรับบริษัทของฉัน คำอธิบายโพสต์:\n\n ##post## \n\nคำอธิบายบริษัท:\n ##description## \n\nชื่อบริษัท:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (940, '26', 'uk-UA', 'Створіть великий професійний допис у соціальних мережах для моєї компанії. Опис допису:\n\n ##post## \n\nОпис компанії:\n ##description## \n\nНазва компанії:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (941, '26', 'lt-LT', 'Sukurkite didelį profesionalų mano įmonės socialinės žiniasklaidos įrašą. Įrašo aprašas: \n\n ##post## \n\nĮmonės aprašymas:\n ##description## \n\nĮmonės pavadinimas:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (942, '26', 'bg-BG', 'Създайте голяма професионална публикация в социалните медии за моята компания. Описание на публикацията:\n\n ##post## \n\nОписание на фирмата:\n ##description## \n\nИме на фирмата:\n ##title## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (943, '27', 'en-US', 'Write a long creative headline for the following product to run on Facebook aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the headline must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (944, '27', 'ar-AE', 'اكتب عنوانًا إبداعيًا طويلاً للمنتج التالي ليتم تشغيله على Facebook بهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نبرة صوت العنوان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (945, '27', 'cmn-CN', '为以下产品写一个长创意标题以在 Facebook 上运行,旨在:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 标题的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (946, '27', 'hr-HR', 'Napišite dugačak kreativni naslov za sljedeći proizvod koji će se prikazivati na Facebooku s ciljem:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (947, '27', 'cs-CZ', 'Napište dlouhý kreativní nadpis pro následující produkt, který bude spuštěn na Facebooku:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu titulku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (948, '27', 'da-DK', 'Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (949, '27', 'nl-NL', 'Skriv en lang kreativ overskrift til følgende produkt, der skal køre på Facebook, rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (950, '27', 'et-EE', 'Kirjutage Facebookis käivitamiseks järgmise toote jaoks pikk loominguline pealkiri, mille eesmärk on:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Pealkirja hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (951, '27', 'fi-FI', 'Kirjoita pitkä luova otsikko seuraavalle tuotteelle Facebookissa käytettäväksi:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Otsikon äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (952, '27', 'fr-FR', 'Écrivez un long titre créatif pour le produit suivant à diffuser sur Facebook destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix du titre doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (953, '27', 'de-DE', 'Schreiben Sie eine lange kreative Überschrift für das folgende Produkt, das auf Facebook laufen soll:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Überschrift muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (954, '27', 'el-GR', 'Γράψτε μια μακρά δημιουργική επικεφαλίδα για το ακόλουθο προϊόν για προβολή στο Facebook με στόχο:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (955, '27', 'he-IL', 'כתוב כותרת יצירתית ארוכה למוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של הכותרת חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (956, '27', 'hi-IN', 'Facebook पर चलने के लिए निम्न उत्पाद के लिए एक लंबी क्रिएटिव हेडलाइन लिखें:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n शीर्षक का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (957, '27', 'hu-HU', 'Írjon egy hosszú kreatív címsort a következő termékhez a Facebookon való futtatáshoz, amelynek célja:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (958, '27', 'is-IS', 'Skrifaðu langa skapandi fyrirsögn fyrir eftirfarandi vöru til að birtast á Facebook sem miðar að:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í fyrirsögninni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (959, '27', 'id-ID', 'Tulis judul kreatif yang panjang untuk produk berikut agar berjalan di Facebook yang ditujukan untuk:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara judul harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (960, '27', 'it-IT', 'Scrivi un lungo titolo creativo per il seguente prodotto da pubblicare su Facebook destinato a:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del titolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (961, '27', 'ja-JP', '次の製品の長いクリエイティブな見出しを書いて、Facebook で実行することを目的としています:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 見出しの口調は次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (962, '27', 'ko-KR', 'Facebook에서 실행할 다음 제품에 대한 길고 창의적인 헤드라인을 작성하세요.\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 헤드라인의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (963, '27', 'ms-MY', 'Tulis tajuk kreatif yang panjang untuk produk berikut disiarkan di Facebook bertujuan:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara tajuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (964, '27', 'nb-NO', 'Skriv en lang kreativ overskrift for følgende produkt å kjøre på Facebook rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i overskriften må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (965, '27', 'pl-PL', 'Napisz długi kreatywny nagłówek dla następującego produktu do wyświetlania na Facebooku, którego celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton nagłówka musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (966, '27', 'pt-PT', 'Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (967, '27', 'ru-RU', 'Напишите длинный креативный заголовок для следующего продукта, который будет запущен на Facebook и нацелен на:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон голоса заголовка должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (968, '27', 'es-ES', 'Escribe un título creativo largo para que el siguiente producto se ejecute en Facebook dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del titular debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (969, '27', 'sv-SE', 'Skriv en lång kreativ rubrik för följande produkt att köra på Facebook som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rubriken måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (970, '27', 'tr-TR', 'Aşağıdaki ürünün Facebook\'ta yayınlanması için uzun bir yaratıcı başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Başlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (971, '27', 'pt-BR', 'Escreva um longo título criativo para o seguinte produto a ser executado no Facebook destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (972, '27', 'ro-RO', 'Scrieți un titlu creativ lung pentru următorul produs care să fie difuzat pe Facebook, care vizează:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii titlului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (973, '27', 'vi-VN', 'Viết một dòng tiêu đề sáng tạo dài cho sản phẩm sau để chạy trên Facebook nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của tiêu đề phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (974, '27', 'sw-KE', 'Andika kichwa kirefu cha ubunifu ili bidhaa ifuatayo iendeshwe kwenye Facebook inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (975, '27', 'sl-SI', 'Napišite dolg kreativni naslov za naslednji izdelek, ki bo deloval na Facebooku in bo namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (976, '27', 'th-TH', 'เขียนพาดหัวโฆษณาแบบยาวเพื่อให้ผลิตภัณฑ์ต่อไปนี้ทำงานบน Facebook โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงพาดหัวต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (977, '27', 'uk-UA', 'Напишіть довгий креативний заголовок для наступного продукту для показу на Facebook, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон заголовка має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (978, '27', 'lt-LT', 'Parašykite ilgą kūrybinę antraštę, kad šis produktas būtų paleistas „Facebook“ ir skirtas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Antraštės balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (979, '27', 'bg-BG', 'Напишете дълго творческо заглавие за следния продукт, който да се пусне във Facebook и е насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на заглавието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (980, '28', 'en-US', 'Write catchy 30-character headlines to promote your product with Google Ads. Product name:\n\n ##title## \n\nProduct description:\n ##description## \n\nTarget audience for ad:\n ##audience## \n\nTone of voice of the headline must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (981, '28', 'ar-AE', 'اكتب عناوين جذابة مكونة من 30 حرفًا للترويج لمنتجك باستخدام إعلانات Google. اسم المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\nالجمهور المستهدف للإعلان:\n ##audience## \n\nيجب أن تكون نغمة الصوت في العنوان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (982, '28', 'cmn-CN', '撰写醒目的 30 个字符的标题,以使用 Google Ads 宣传您的产品。产品名称:\n\n ##title## \n\n产品描述:\n ##description## \n\n广告的目标受众:\n ##audience## \n\n标题的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (983, '28', 'hr-HR', 'Napišite upečatljive naslove od 30 znakova kako biste promovirali svoj proizvod uz Google Ads. Naziv proizvoda:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\nCiljana publika za oglas:\n ##audience## \n\nTon glasa naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (984, '28', 'cs-CZ', 'Napište chytlavé nadpisy o délce 30 znaků a propagujte svůj produkt pomocí Google Ads. Název produktu:\n\n ##title## \n\nPopis produktu:\n ##description## \n\nCílové publikum pro reklamu:\n ##audience## \n\nTón hlasu titulku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (985, '28', 'da-DK', 'Skriv fængende overskrifter på 30 tegn for at promovere dit produkt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonce:\n ##audience## \n\nTone i overskriften skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (986, '28', 'nl-NL', 'Schrijf pakkende koppen van 30 tekens om uw product te promoten met Google Ads. Productnaam:\n\n ##title## \n\nProductbeschrijving:\n ##description## \n\nDoelgroep voor advertentie:\n ##audience## \n\nDe toon van de kop moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (987, '28', 'et-EE', 'Kirjutage meeldejäävaid 30-märgilisi pealkirju, et reklaamida oma toodet Google Adsiga. Toote nimi:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\nReklaami sihtrühm:\n ##audience## \n\nPealkirja hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (988, '28', 'fi-FI', 'Kirjoita tarttuvia 30 merkin pituisia otsikoita mainostaaksesi tuotettasi Google Adsin avulla. Tuotteen nimi:\n\n ##title## \n\nTuotteen kuvaus:\n ##description## \n\nMainoksen kohdeyleisö:\n ##audience## \n\nOtsikon äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (989, '28', 'fr-FR', 'Rédigez des titres accrocheurs de 30 caractères pour promouvoir votre produit avec Google Ads. Nom du produit :\n\n ##title## \n\nDescription du produit :\n ##description## \n\nAudience cible pour l\'annonce :\n ##audience## \n\nLe ton de la voix du titre doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (990, '28', 'de-DE', 'Schreiben Sie ansprechende Überschriften mit 30 Zeichen, um Ihr Produkt mit Google Ads zu bewerben. Produktname:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\nZielpublikum für Anzeige:\n ##audience## \n\nTonlage der Überschrift muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (991, '28', 'el-GR', 'Γράψτε εντυπωσιακούς τίτλους 30 χαρακτήρων για να προωθήσετε το προϊόν σας με το Google Ads. Όνομα προϊόντος:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\nΣτόχευση κοινού για διαφήμιση:\n ##audience## \n\nΟ τόνος της φωνής της επικεφαλίδας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (992, '28', 'he-IL', 'צור 10 כותרות בלוג קליטות עבור:\n\n ##description## \n\n\'כתוב כותרות קליטות של 30 תווים כדי לקדם את המוצר שלך עם Google Ads. שם המוצר:\n\n ##title## \n\nתיאור המוצר:\n ##description## \n\nקהל יעד למודעה:\n ##audience## \n\nטון הדיבור של הכותרת חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (993, '28', 'hi-IN', 'Google Ads के साथ अपने उत्पाद का प्रचार करने के लिए आकर्षक 30-वर्ण वाली सुर्खियाँ लिखें। उत्पाद का नाम:\n\n ##title## \n\nउत्पाद विवरण:\n ##description## \n\nविज्ञापन के लिए लक्षित दर्शक:\n ##audience## \n\nशीर्षक की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (994, '28', 'hu-HU', 'Írjon fülbemászó, 30 karakterből álló címsorokat, hogy reklámozza termékét a Google Ads szolgáltatással. Termék neve:\n\n ##title## \n\nTermékleírás:\n ##description## \n\nHirdetés célközönsége:\n ##audience## \n\nA címsor hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (995, '28', 'is-IS', 'Skrifaðu grípandi 30 stafa fyrirsagnir til að kynna vöruna þína með Google Ads. Vöruheiti:\n\n ##title## \n\nVörulýsing:\n ##description## \n\nMarkhópur auglýsingar:\n ##audience## \n\nTónn í fyrirsögninni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (996, '28', 'id-ID', 'Tulis judul 30 karakter yang menarik untuk mempromosikan produk Anda dengan Google Ads. Nama produk:\n\n ##title## \n\nDeskripsi produk:\n ##description## \n\nTarget pemirsa untuk iklan:\n ##audience## \n\nNada suara judul harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (997, '28', 'it-IT', 'Scrivi titoli accattivanti di 30 caratteri per promuovere il tuo prodotto con Google Ads. Nome del prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\nPubblico di destinazione dell\'annuncio:\n ##audience## \n\nIl tono di voce del titolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (998, '28', 'ja-JP', 'キャッチーな 30 文字の見出しを書いて、Google 広告で商品を宣伝しましょう。商品名:\n\n ##title## \n\n商品説明:\n ##description## \n\n広告のターゲット ユーザー:\n ##audience## \n\n見出しの声のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (999, '28', 'ko-KR', 'Google Ads로 제품을 홍보하려면 눈길을 끄는 30자의 제목을 작성하세요. 제품 이름:\n\n ##title## \n\n제품 설명:\n ##description## \n\n광고 대상:\n ##audience## \n\n제목의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1000, '28', 'ms-MY', 'Tulis tajuk 30 aksara yang menarik untuk mempromosikan produk anda dengan Google Ads. Nama produk:\n\n ##title## \n\nPerihalan produk:\n ##description## \n\nSasarkan khalayak untuk iklan:\n ##audience## \n\nNada suara tajuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1001, '28', 'nb-NO', 'Skriv fengende overskrifter på 30 tegn for å markedsføre produktet ditt med Google Ads. Produktnavn:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\nMålgruppe for annonse:\n ##audience## \n\nTone i overskriften må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1002, '28', 'pl-PL', 'Pisz chwytliwe 30-znakowe nagłówki, aby promować swój produkt w Google Ads. Nazwa produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\nDocelowi odbiorcy reklamy:\n ##audience## \n\nTon nagłówka musi być następujący:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1003, '28', 'pt-PT', 'Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1004, '28', 'ru-RU', 'Напишите броские 30-символьные заголовки, чтобы продвигать свой продукт с помощью Google Реклама. Название продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\nЦелевая аудитория для рекламы:\n ##audience## \n\nТон заголовка должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1005, '28', 'es-ES', 'Escriba títulos llamativos de 30 caracteres para promocionar su producto con Google Ads. Nombre del producto:\n\n ##title## \n\nDescripción del producto:\n ##description## \n\nAudiencia objetivo para el anuncio:\n ##audience## \n\nEl tono de voz del titular debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1006, '28', 'sv-SE', 'Skriv medryckande rubriker med 30 tecken för att marknadsföra din produkt med Google Ads. Produktnamn:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\nMålgrupp för annons:\n ##audience## \n\nTonfallet i rubriken måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1007, '28', 'tr-TR', 'Ürününüzü Google Ads ile tanıtmak için akılda kalıcı 30 karakterlik başlıklar yazın. Ürün adı:\n\n ##title## \n\nÜrün açıklaması:\n ##description## \n\nReklamın hedef kitlesi:\n ##audience## \n\nBaşlığın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1008, '28', 'pt-BR', 'Escreva títulos atraentes de 30 caracteres para promover seu produto com o Google Ads. Nome do produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\nPúblico-alvo do anúncio:\n ##audience## \n\nTom de voz do título deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1009, '28', 'ro-RO', 'Scrieți titluri atractive de 30 de caractere pentru a vă promova produsul cu Google Ads. Nume produs:\n\n ##title## \n\nDescrierea produsului:\n ##description## \n\nPublic țintă pentru anunț:\n ##audience## \n\nTonul vocii titlului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1010, '28', 'vi-VN', 'Viết dòng tiêu đề hấp dẫn gồm 30 ký tự để quảng cáo sản phẩm của bạn với Google Ads. Tên sản phẩm:\n\n ##title## \n\nMô tả sản phẩm:\n ##description## \n\nĐối tượng mục tiêu cho quảng cáo:\n ##audience## \n\nGiọng điệu của tiêu đề phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1011, '28', 'sw-KE', 'Andika vichwa vya habari vya kuvutia vya herufi 30 ili kutangaza bidhaa yako ukitumia Google Ads. Jina la bidhaa:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\nHadhira lengwa ya tangazo:\n ##audience## \n\nToni ya sauti ya kichwa lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1012, '28', 'sl-SI', 'Napišite privlačne naslove s 30 znaki za promocijo svojega izdelka z Google Ads. Ime izdelka:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\nCiljna publika za oglas:\n ##audience## \n\nTon glasu naslova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1013, '28', 'th-TH', 'เขียนบรรทัดแรก 30 อักขระที่ดึงดูดใจเพื่อโปรโมตผลิตภัณฑ์ของคุณด้วย Google Ads ชื่อผลิตภัณฑ์:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\nกลุ่มเป้าหมายสำหรับโฆษณา:\n ##audience## \n\nน้ำเสียงของพาดหัวต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1014, '28', 'uk-UA', 'Напишіть привабливі заголовки з 30 символів, щоб рекламувати свій продукт за допомогою Google Ads. Назва продукту:\n\n ##title## \n\nОпис товару:\n ##description## \n\nЦільова аудиторія для реклами:\n ##audience## \n\nТон заголовка має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1015, '28', 'lt-LT', 'Parašykite patrauklias 30 simbolių antraštes, kad reklamuotumėte savo produktą naudodami Google Ads. Produkto pavadinimas:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\nSkelbimo tikslinė auditorija:\n ##audience## \n\nAntraštės balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1016, '28', 'bg-BG', 'Напишете закачливи заглавия от 30 знака, за да популяризирате продукта си с Google Ads. Име на продукта:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\nЦелева аудитория за реклама:\n ##audience## \n\nТонът на заглавието трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1017, '29', 'en-US', 'Write a Google Ads description that makes your ad stand out and generates leads. Target audience:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the ad must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1018, '29', 'ar-AE', 'اكتب وصفًا لبرنامج إعلانات Google يجعل إعلانك متميزًا ويكتسب عملاء محتملين. الجمهور المستهدف:\n\n ##audience## \n\nاسم المنتج:\n ##title## \n\nوصف المنتج:\n ##description## \n\nيجب أن تكون نغمة صوت الإعلان:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1019, '29', 'cmn-CN', '撰写 Google Ads 说明,使您的广告脱颖而出并带来潜在客户。目标受众:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 广告语调必须是:\n ##tone_language## \n\n\'为以下内容生成 10 个吸引人的博客标题:\n\n ##description## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1020, '29', 'hr-HR', 'Napišite Google Ads opis koji ističe vaš oglas i generira potencijalne kupce. Ciljana publika:\n\n ##audience## \n\n Naziv proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1021, '29', 'cs-CZ', 'Napište popis Google Ads, díky kterému vaše reklama vynikne a generuje potenciální zákazníky. Cílové publikum:\n\n ##audience## \n\n Název produktu:\n ##title## \n\n Popis produktu:\n ##description## \n\n Tón hlasu reklamy musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1022, '29', 'da-DK', 'Skriv en Google Ads-beskrivelse, der får din annonce til at skille sig ud og genererer kundeemner. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annoncen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1023, '29', 'nl-NL', 'Schrijf een Google Ads-beschrijving waardoor uw advertentie opvalt en leads genereert. Doelgroep:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Productbeschrijving:\n ##description## \n\n Tone of voice van de advertentie moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1024, '29', 'et-EE', 'Kirjutage Google Adsi kirjeldus, mis muudab teie reklaami silmapaistvaks ja loob müügivihjeid. Sihtpublik:\n\n ##audience## \n\n Toote nimi:\n ##title## \n\n Toote kirjeldus:\n ##description## \n\n Reklaami hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1025, '29', 'fi-FI', 'Kirjoita Google Ads -kuvaus, joka tekee mainoksestasi erottuvan ja luo liidejä. Kohdeyleisö:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen kuvaus:\n ##description## \n\n Mainoksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1026, '29', 'fr-FR', 'Rédigez une description Google Ads qui permet à votre annonce de se démarquer et de générer des prospects. Public cible :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit :\n ##description## \n\n Le ton de la voix de l\'annonce doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1027, '29', 'de-DE', 'Schreiben Sie eine Google Ads-Beschreibung, die Ihre Anzeige hervorhebt und Leads generiert. Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Tonfall der Anzeige muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1028, '29', 'el-GR', 'Γράψτε μια περιγραφή του Google Ads που κάνει τη διαφήμισή σας να ξεχωρίζει και να δημιουργεί δυνητικούς πελάτες. Στοχευόμενο κοινό:\n\n ##audience## \n\n Όνομα προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της διαφήμισης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1029, '29', 'he-IL', 'כתוב תיאור של Google Ads שיבלוט את המודעה שלך ויוצר לידים. קהל יעד:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n טון הדיבור של המודעה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1030, '29', 'hi-IN', 'एक Google Ads विवरण लिखें जो आपके विज्ञापन को सबसे अलग बनाता है और लीड उत्पन्न करता है। लक्षित ऑडियंस:\n\n ##audience## \n\n उत्पाद का नाम:\n ##title## \n\n उत्पाद विवरण:\n ##description## \n\n विज्ञापन का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1031, '29', 'hu-HU', 'Írjon olyan Google Ads-leírást, amely kiemeli hirdetését, és potenciális ügyfeleket generál. Célközönség:\n\n ##audience## \n\n Terméknév:\n ##title## \n\n Termékleírás:\n ##description## \n\n A hirdetés hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1032, '29', 'is-IS', 'Skrifaðu Google Ads lýsingu sem gerir auglýsinguna þína áberandi og gefur af sér leiðir. Markhópur:\n\n ##audience## \n\n Vöruheiti:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Röddtónn auglýsingarinnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1033, '29', 'id-ID', 'Tulis deskripsi Google Ads yang menonjolkan iklan Anda dan menghasilkan prospek. Audiens target:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Deskripsi produk:\n ##description## \n\n Nada suara iklan harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1034, '29', 'it-IT', 'Scrivi una descrizione di Google Ads che faccia risaltare il tuo annuncio e generi lead. Pubblico di destinazione:\n\n ##audience## \n\n Nome prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'annuncio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1035, '29', 'ja-JP', '広告を目立たせ、リードを生み出す Google 広告の説明を書いてください。対象ユーザー:\n\n ##audience## \n\n 製品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 広告のトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1036, '29', 'ko-KR', '광고를 돋보이게 하고 리드를 생성하는 Google Ads 설명을 작성하세요. 타겟층:\n\n ##audience## \n\n 제품 이름:\n ##title## \n\n 제품 설명:\n ##description## \n\n 광고의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1037, '29', 'ms-MY', 'Tulis perihalan Google Ads yang menjadikan iklan anda menonjol dan menjana petunjuk. Khalayak sasaran:\n\n ##audience## \n\n Nama produk:\n ##title## \n\n Penerangan produk:\n ##description## \n\n Nada suara iklan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1038, '29', 'nb-NO', 'Skriv en Google Ads-beskrivelse som gjør at annonsen din skiller seg ut og genererer potensielle kunder. Målgruppe:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i annonsen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1039, '29', 'pl-PL', 'Napisz opis Google Ads, który wyróżni Twoją reklamę i przyciągnie potencjalnych klientów. Grupa docelowa:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton reklamy musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1040, '29', 'pt-PT', 'Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1041, '29', 'ru-RU', 'Напишите описание Google Реклама, которое выделит вашу рекламу и привлечет потенциальных клиентов. Целевая аудитория:\n\n ##audience## \n\n Название продукта:\n ##title## \n\n Описание товара:\n ##description## \n\n Тон объявления должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1042, '29', 'es-ES', 'Escriba una descripción de Google Ads que haga que su anuncio se destaque y genere clientes potenciales. Público objetivo:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del producto:\n ##description## \n\n El tono de voz del anuncio debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1043, '29', 'sv-SE', 'Skriv en Google Ads-beskrivning som får din annons att sticka ut och genererar potentiella kunder. Målgrupp:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i annonsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1044, '29', 'tr-TR', 'Reklamınızı öne çıkaran ve olası satışlar sağlayan bir Google Ads açıklaması yazın. Hedef kitle:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün açıklaması:\n ##description## \n\n Reklamın ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1045, '29', 'pt-BR', 'Escreva uma descrição do Google Ads que destaque seu anúncio e gere leads. Público-alvo:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do anúncio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1046, '29', 'ro-RO', 'Scrieți o descriere Google Ads care să vă facă anunțul în evidență și să genereze clienți potențiali. Publicul țintă:\n\n ##audience## \n\n Nume produs:\n ##title## \n\n Descrierea produsului:\n ##description## \n\n Tonul vocii al anunțului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1047, '29', 'vi-VN', 'Viết mô tả Google Ads giúp quảng cáo của bạn nổi bật và tạo khách hàng tiềm năng. Đối tượng mục tiêu:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả sản phẩm:\n ##description## \n\n Giọng điệu của quảng cáo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1048, '29', 'sw-KE', 'Andika maelezo ya Google Ads ambayo yanafanya tangazo lako liwe bora zaidi na kuzalisha watu wanaoongoza. Hadhira inayolengwa:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya tangazo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1049, '29', 'sl-SI', 'Napišite opis Google Ads, s katerim bo vaš oglas izstopal in pritegnil potencialne stranke. Ciljna publika:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu oglasa mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1050, '29', 'th-TH', 'เขียนคำอธิบาย Google Ads ที่ทำให้โฆษณาของคุณโดดเด่นและสร้างโอกาสในการขาย ผู้ชมเป้าหมาย:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของโฆษณาต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1051, '29', 'uk-UA', 'Напишіть опис Google Ads, який виділятиме вашу рекламу та залучатиме потенційних клієнтів. Цільова аудиторія:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу оголошення має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1052, '29', 'lt-LT', 'Parašykite Google Ads aprašą, kad jūsų skelbimas išsiskirtų ir pritrauktų potencialių klientų. Tikslinė auditorija:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Produkto aprašymas:\n ##description## \n\n Skelbimo balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1053, '29', 'bg-BG', 'Напишете описание в Google Ads, което прави рекламата ви да се откроява и генерира потенциални клиенти. Целева аудитория:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на рекламата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1054, '30', 'en-US', 'Write problem-agitate-solution for the following product description:\n\n ##description## \n\nProduct name:\n ##title## \n\nTarget audience:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1055, '30', 'ar-AE', 'اكتب حل المشكلات لوصف المنتج التالي:\n\n ##description## \n\n اسم المنتج و\n ##title## \n\n الجمهور المستهدف: \n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1056, '30', 'cmn-CN', '为以下产品描述编写问题解决方案:\n\n ##description## \nProduct name:\n ##title## \n\n 目标受众:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1057, '30', 'hr-HR', 'Napišite problem-agitate-solution za sljedeći opis proizvoda:\n\n ##description## \n\nNaziv proizvoda:\n ##title## \n\nCiljana publika:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1058, '30', 'cs-CZ', 'Napište problém-agitovat-řešení pro následující popis produktu:\n\n ##description## \n\n\\Název produktu:\n ##title## \n\nCílové publikum:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1059, '30', 'da-DK', 'Skriv problem-agitere-løsning til følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1060, '30', 'nl-NL', 'Schrijf probleem-agitatie-oplossing voor de volgende productbeschrijving:\n\n ##description## \n\nProductnaam:\n ##title## \n\nDoelgroep:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1061, '30', 'et-EE', 'Kirjutage probleem-agitate-lahendus järgmisele tootekirjeldusele:\n\n ##description## \n\nToote nimi:\n ##title## \n\nSihtpublik:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1062, '30', 'fi-FI', 'Kirjoita ongelma-agitate-ratkaisu seuraavaan tuotekuvaukseen:\n\n ##description## \n\nTuotteen nimi:\n ##title## \n\nKohdeyleisö:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1063, '30', 'fr-FR', 'Écrivez problem-agitate-solution pour la description de produit suivante :\n\n ##description## \n\nNom du produit :\n ##title## \n\nPublic cible :\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1064, '30', 'de-DE', 'Problem-agitate-solution für die folgende Produktbeschreibung schreiben:\n\n ##description## \n\nProduktname:\n ##title## \n\nZielgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1065, '30', 'el-GR', 'Γράψτε πρόβλημα-ανακίνηση-λύση για την ακόλουθη περιγραφή προϊόντος:\n\n ##description## \n\nProduct name:\n ##title## \n\nΣτοχευόμενο κοινό:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1066, '30', 'he-IL', 'כתוב פתרון לבעיה-ערעור עבור תיאור המוצר הבא:\n\n ##description## \n\\שם המוצר:\n ##title## \n\nקהל יעד:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1067, '30', 'hi-IN', 'निम्नलिखित उत्पाद विवरण के लिए समस्या-आंदोलन-समाधान लिखें:\n\n ##description## \n\nप्रोडक्ट का नाम:\n ##title## \n\nलक्षित दर्शक:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1068, '30', 'hu-HU', 'Írjon probléma-agitáció-megoldást a következő termékleíráshoz:\n\n ##description## \n\nTerméknév:\n ##title## \n\nCélközönség:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1069, '30', 'is-IS', 'Skrifaðu vandamál-agitate-lausn fyrir eftirfarandi vörulýsingu:\n\n ##description## \n\nVöruheiti:\n ##title## \n\nMarkhópur:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1070, '30', 'id-ID', 'Tulis problem-agitate-solution untuk deskripsi produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nAudiens target:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1071, '30', 'it-IT', 'Scrivi problem-agitate-solution per la seguente descrizione del prodotto:\n\n ##description## \n\nNome prodotto:\n ##title## \n\nPubblico di destinazione:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1072, '30', 'ja-JP', '次の製品説明について、問題 - 扇動 - 解決策を書いてください:\n\n ##description##\n\n商品名:\n ##title## \n\n対象視聴者:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1073, '30', 'ko-KR', '다음 제품 설명에 대한 문제-동요-해결책 쓰기:\n\n ##description## \n제품 이름:\\및 \n##title## \n\n대상:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1074, '30', 'ms-MY', 'Tulis problem-agitate-solution untuk penerangan produk berikut:\n\n ##description## \n\nNama produk:\n ##title## \n\nKhalayak sasaran:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1075, '30', 'nb-NO', 'Skriv problem-agitere-løsning for følgende produktbeskrivelse:\n\n ##description## \n\nProduktnavn:\n ##title## \n\nMålgruppe:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1076, '30', 'pl-PL', 'Napisz problem-agitate-solution dla następującego opisu produktu:\n\n ##description## \n\nNazwa produktu:\n ##title## \n\nDocelowi odbiorcy:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1077, '30', 'pt-PT', 'Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1078, '30', 'ru-RU', 'Напишите проблему-агитация-решение для следующего описания продукта:\n\n ##description## \n\nНазвание продукта:\n ##title## \n\nЦелевая аудитория:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1079, '30', 'es-ES', 'Escriba problema-agitación-solución para la siguiente descripción del producto:\n\n ##description## \n\nNombre del producto:\n ##title## \n\nAudiencia objetivo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1080, '30', 'sv-SE', 'Skriv problem-agitera-lösning för följande produktbeskrivning:\n\n ##description## \n\nProduktnamn:\n ##title## \n\nMålgrupp:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1081, '30', 'tr-TR', 'Aşağıdaki ürün açıklaması için problem-ajitasyon-çözüm yazın:\n\n ##description## \n\nÜrün adı:\n ##title## \n\nHedef kitle:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1082, '30', 'pt-BR', 'Escrever problema-agitar-solução para a seguinte descrição do produto:\n\n ##description## \n\nNome do produto:\n ##title## \n\nPúblico-alvo:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1083, '30', 'ro-RO', 'Scrieți problem-agitate-solution pentru următoarea descriere a produsului:\n\n ##description## \n\nNume produs:\n ##title## \n\nPublic țintă:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1084, '30', 'vi-VN', 'Viết giải pháp kích động vấn đề cho phần mô tả sản phẩm sau:\n\n ##description## \n\nTên sản phẩm:\n ##title## \n\nĐối tượng mục tiêu:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1085, '30', 'sw-KE', 'Andika utatuzi wa tatizo kwa maelezo yafuatayo ya bidhaa:\n\n ##description## \n\nJina la bidhaa:\n ##title## \n\nHadhira lengwa:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1086, '30', 'sl-SI', 'Napišite problem-agitate-solution za naslednji opis izdelka:\n\n ##description## \n\nIme izdelka:\n##title## \n\nCiljna publika:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1087, '30', 'th-TH', 'เขียนปัญหา-ปั่นป่วน-แก้ปัญหาสำหรับคำอธิบายผลิตภัณฑ์ต่อไปนี้:\n\n ##description## \n\nชื่อผลิตภัณฑ์:\n ##title## \n\nกลุ่มเป้าหมาย:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1088, '30', 'uk-UA', 'Напишіть problem-agitate-solution для такого опису продукту:\n\n ##description## \n\nНазва продукту:\n ##title## \n\nЦільова аудиторія:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1089, '30', 'lt-LT', 'Rašykite problemą-agituokite-sprendimą šiam gaminio aprašymui:\n\n ##description## \n\nProdukto pavadinimas:\n ##title## \n\nTikslinė auditorija:\n ##audience## \n\n', '0', '2026-04-27 14:42:43', '2026-04-27 14:42:43'), (1090, '30', 'bg-BG', 'Напишете проблем-раздвижване-решение за следното описание на продукта:\n\n ##description## \nИме на продукта:\n ##title## \n\nЦелева аудитория:\n ##audience## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1091, '31', 'en-US', 'Write an academic essay about:\n\n ##title## \n\nUse following keywords in the essay:\n ##keywords## \n\nTone of voice of the essay must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1092, '31', 'ar-AE', 'اكتب مقالًا أكاديميًا حول:\n\n ##title## \n\nاستخدم الكلمات الأساسية التالية في المقال:\n ##keywords## \n\nيجب أن تكون نغمة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1093, '31', 'cmn-CN', '写一篇关于:\n\n”的学术论文 ##title## \n\n在文章中使用以下关键词:\n ##keywords## \n\n文章的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1094, '31', 'hr-HR', 'Napišite akademski esej o:\n\n ##title## \n\nKoristite sljedeće ključne riječi u eseju:\n ##keywords## \n\nTon glasa eseja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1095, '31', 'cs-CZ', 'Napište akademickou esej o:\n\n ##title## \n\nV eseji použijte následující klíčová slova:\n ##keywords## \n\nTón hlasu eseje musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1096, '31', 'da-DK', 'Skriv et akademisk essay om:\n\n ##title## \n\nBrug følgende nøgleord i essayet:\n ##keywords## \n\nStemmetonen i essayet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1097, '31', 'nl-NL', 'Schrijf een academisch essay over:\n\n ##title## \n\nGebruik de volgende trefwoorden in het essay:\n ##keywords## \n\nDe toon van het essay moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1098, '31', 'et-EE', 'Kirjutage akadeemiline essee teemal:\n\n ##title## \n\nKasutage essees järgmisi märksõnu:\n ##keywords## \n\nEssee hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1099, '31', 'fi-FI', 'Kirjoita akateeminen essee aiheesta:\n\n ##title## \n\nKäytä esseessä seuraavia avainsanoja:\n ##keywords## \n\nEsseen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1100, '31', 'fr-FR', 'Rédigez une dissertation académique sur :\n\n ##title## \n\nUtilisez les mots clés suivants dans lessai :\n ##keywords## \n\nLe ton de la dissertation doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1101, '31', 'de-DE', 'Schreiben Sie einen akademischen Aufsatz über:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter im Aufsatz:\n ##keywords## \n\nTonlage des Aufsatzes muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1102, '31', 'el-GR', 'Γράψτε ένα ακαδημαϊκό δοκίμιο για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στο δοκίμιο:\n ##keywords## \n\nΟ τόνος της φωνής του δοκιμίου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1103, '31', 'he-IL', 'כתוב חיבור אקדמי על:\n\n ##title## \n\nהשתמש במילות המפתח הבאות במאמר:\n ##keywords## \n\nטון הדיבור של החיבור חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1104, '31', 'hi-IN', 'के बारे में एक अकादमिक निबंध लिखें:\n\n ##title## \n\nनिबंध में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\nनिबंध का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1105, '31', 'hu-HU', 'Írjon tudományos esszét erről:\n\n ##title## \n\nHasználja a következő kulcsszavakat az esszében:\n ##keywords## \n\nAz esszé hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1106, '31', 'is-IS', 'Skrifaðu fræðilega ritgerð um:\n\n ##title## \n\nNotaðu eftirfarandi lykilorð í ritgerðinni:\n ##keywords## \n\nTónn í ritgerðinni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1107, '31', 'id-ID', 'Tulis esai akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esai:\n ##keywords## \n\nNada suara esai harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1108, '31', 'it-IT', 'Scrivi un saggio accademico su:\n\n ##title## \n\nUsa le seguenti parole chiave nel saggio:\n ##keywords## \n\nIl tono di voce del saggio deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1109, '31', 'ja-JP', '以下について学術論文を書きます:\n\n ##title## \n\nエッセイでは次のキーワードを使用してください:\n ##keywords## \n\nエッセイの口調は:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1110, '31', 'ko-KR', '다음에 대한 학술 에세이 쓰기:\n\n ##title## \n\n에세이에서 다음 키워드를 사용하십시오:\n ##keywords## \n\n에세이의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1111, '31', 'ms-MY', 'Tulis esei akademik tentang:\n\n ##title## \n\nGunakan kata kunci berikut dalam esei:\n ##keywords## \n\nNada suara esei mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1112, '31', 'nb-NO', 'Skriv et akademisk essay om:\n\n ##title## \n\nBruk følgende nøkkelord i essayet:\n ##keywords## \n\nTone i essayet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1113, '31', 'pl-PL', 'Napisz esej akademicki na temat:\n\n ##title## \n\nUżyj w eseju następujących słów kluczowych:\n ##keywords## \n\nTon wypowiedzi w eseju musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1114, '31', 'pt-PT', 'Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1115, '31', 'ru-RU', 'Напишите академическое эссе о:\n\n ##title## \n\nИспользуйте следующие ключевые слова в эссе:\n ##keywords## \n\nТон голоса эссе должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1116, '31', 'es-ES', 'Escribe un ensayo académico sobre:\n\n ##title## \n\nUtilice las siguientes palabras clave en el ensayo:\n ##keywords## \n\nEl tono de voz del ensayo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1117, '31', 'sv-SE', 'Skriv en akademisk uppsats om:\n\n ##title## \n\nAnvänd följande nyckelord i uppsatsen:\n ##keywords## \n\nRösten i uppsatsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1118, '31', 'tr-TR', 'Şunun hakkında akademik bir makale yazın:\n\n ##title## \n\nMakalede şu anahtar kelimeleri kullanın:\n ##keywords## \n\nYazının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1119, '31', 'pt-BR', 'Escreva um ensaio acadêmico sobre:\n\n ##title## \n\nUse as seguintes palavras-chave no ensaio:\n ##keywords## \n\nTom de voz da redação deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1120, '31', 'ro-RO', 'Scrieți un eseu academic despre:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în eseu:\n ##keywords## \n\nTonul vocii al eseului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1121, '31', 'vi-VN', 'Viết một bài luận học thuật về:\n\n ##title## \n\nSử dụng các từ khóa sau trong bài luận:\n ##keywords## \n\nGiọng điệu của bài luận phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1122, '31', 'sw-KE', 'Andika insha ya kitaaluma kuhusu:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika insha:\n ##keywords## \n\nToni ya sauti ya insha lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1123, '31', 'sl-SI', 'Napišite akademski esej o:\n\n ##title## \n\nV eseju uporabite naslednje ključne besede:\n ##keywords## \n\nTon glasu eseja mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1124, '31', 'th-TH', 'เขียนเรียงความเชิงวิชาการเกี่ยวกับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในเรียงความ:\n ##keywords## \n\nน้ำเสียงของเรียงความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1125, '31', 'uk-UA', 'Напишіть науковий твір про:\n\n ##title## \n\nВикористовуйте такі ключові слова в есе:\n ##keywords## \n\nТон есе має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1126, '31', 'lt-LT', 'Parašykite akademinį rašinį apie:\n\n ##title## \n\nRašinyje naudokite šiuos raktinius žodžius:\n ##keywords## \n\nEsė balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1127, '31', 'bg-BG', 'Напишете академично есе за:\n\n ##title## \n\nИзползвайте следните ключови думи в есето:\n ##keywords## \n\nТонът на есето трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1128, '32', 'en-US', 'Write a welcome email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the welcome email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1129, '32', 'ar-AE', 'اكتب بريدًا إلكترونيًا ترحيبيًا عن:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالجمهور المستهدف هو:\n ##keywords## \n\n يجب أن تكون نغمة صوت البريد الإلكتروني الترحيبي:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1130, '32', 'cmn-CN', '写一封关于以下内容的欢迎电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n目标受众是:\n ##keywords## \n\n欢迎邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1131, '32', 'hr-HR', 'Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1132, '32', 'cs-CZ', 'Napišite poruku dobrodošlice o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa e-pošte dobrodošlice mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1133, '32', 'da-DK', 'Skriv en velkomstmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nMålgruppe er:\n ##keywords## \n\nTone i velkomstmailen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1134, '32', 'nl-NL', 'Schrijf een welkomstmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de welkomstmail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1135, '32', 'et-EE', 'Kirjutage tervitusmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nSihtpublik on:\n ##keywords## \n\nTervitusmeili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1136, '32', 'fi-FI', 'Kirjoita tervetuloa sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKohdeyleisö on:\n ##keywords## \n\nTervetuloviestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1137, '32', 'fr-FR', 'Écrivez un e-mail de bienvenue à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l\'e-mail de bienvenue doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1138, '32', 'de-DE', 'Willkommens-E-Mail schreiben über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Willkommens-E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1139, '32', 'el-GR', 'Γράψτε ένα email καλωσορίσματος σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του email καλωσορίσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1140, '32', 'he-IL', 'כתוב הודעת קבלת פנים על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nקהל היעד הוא:\n ##keywords## \n\nנימת הקול של הודעת קבלת הפנים חייבת להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1141, '32', 'hi-IN', 'इस बारे में एक स्वागत योग्य ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nस्वागत ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1142, '32', 'hu-HU', 'Írjon üdvözlő e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA célközönség:\n ##keywords## \n\nAz üdvözlő e-mail hangjának a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1143, '32', 'is-IS', 'Skrifaðu velkominn tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nMarkhópur er:\n ##keywords## \n\nTónn í móttökupóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1144, '32', 'id-ID', 'Tulis email selamat datang tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email selamat datang harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1145, '32', 'it-IT', 'Scrivi un\'e-mail di benvenuto su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono della mail di benvenuto deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1146, '32', 'ja-JP', 'ウェルカム メールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\n対象者:\n ##keywords## \n\nウェルカム メールのトーンは次のようにする必要があります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1147, '32', 'ko-KR', '다음에 대한 환영 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n대상은:\n ##keywords## \n\n환영 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1148, '32', 'ms-MY', 'Tulis e-mel alu-aluan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel alu-aluan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1149, '32', 'nb-NO', 'Skriv en velkomst-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nMålgruppen er:\n ##keywords## \n\nStemmetonen i velkomst-e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1150, '32', 'pl-PL', 'Napisz powitalną wiadomość e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon powitalnego e-maila musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1151, '32', 'pt-PT', 'Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1152, '32', 'ru-RU', 'Напишите приветственное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nЦелевая аудитория:\n ##keywords## \n\nТон приветственного письма должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1153, '32', 'es-ES', 'Escribe un correo electrónico de bienvenida sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del email de bienvenida debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1154, '32', 'sv-SE', 'Skriv ett välkomstmail om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nMålgruppen är:\n ##keywords## \n\nRösten i välkomstmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1155, '32', 'tr-TR', 'Şunun hakkında bir karşılama e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nHedef kitle:\n ##keywords## \n\nKarşılama e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1156, '32', 'pt-BR', 'Escreva um e-mail de boas-vindas sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de boas-vindas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1157, '32', 'ro-RO', 'Scrieți un e-mail de bun venit despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nPublicul țintă este:\n ##keywords## \n\nTonul vocii al e-mailului de bun venit trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1158, '32', 'vi-VN', 'Viết email chào mừng về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email chào mừng phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1159, '32', 'sw-KE', 'Andika barua pepe ya kukaribisha kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya kukaribisha lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1160, '32', 'sl-SI', 'Napišite pozdravno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu pozdravnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1161, '32', 'th-TH', 'เขียนอีเมลต้อนรับเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลต้อนรับต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1162, '32', 'uk-UA', 'Напишіть вітальний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nЦільова аудиторія:\n ##keywords## \n\nТон привітального листа має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1163, '32', 'lt-LT', 'Parašykite sveikinimo laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nTikslinė auditorija yra:\n ##keywords## \n\nPasveikinimo el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1164, '32', 'bg-BG', 'Напишете приветствен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на приветствения имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1165, '33', 'en-US', 'Write a cold email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nContext to include in the cold email:\n ##keywords## \n\nTone of voice of the cold email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1166, '33', 'ar-AE', 'اكتب بريدًا إلكترونيًا باردًا حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالسياق المراد تضمينه في البريد الإلكتروني البارد:\n ##keywords## \n\nيجب أن تكون نغمة صوت البريد الإلكتروني البارد:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1167, '33', 'cmn-CN', '写一封冷电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n要包含在冷电子邮件中的上下文:\n ##keywords## \n\n冷邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1168, '33', 'hr-HR', 'Napišite hladnu e-poštu o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nKontekst za uključivanje u hladnu e-poštu:\n ##keywords## \n\nTon glasa hladne e-pošte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1169, '33', 'cs-CZ', 'Napište chladný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nKontext, který se má zahrnout do studeného e-mailu:\n ##keywords## \n\nTón hlasu chladného e-mailu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1170, '33', 'da-DK', 'Skriv en kold e-mail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nKontekst, der skal inkluderes i den kolde e-mail:\n ##keywords## \n\nTone i den kolde e-mail skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1171, '33', 'nl-NL', 'Schrijf een koude e-mail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nContext om op te nemen in de koude e-mail:\n ##keywords## \n\nDe toon van de koude e-mail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1172, '33', 'et-EE', 'Kirjutage külma meili teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nKülmasse meili lisatav kontekst:\n ##keywords## \n\nKülma meili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1173, '33', 'fi-FI', 'Kirjoita kylmä sähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nKonteksti sisällytettäväksi kylmään sähköpostiin:\n ##keywords## \n\nKylmän sähköpostin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1174, '33', 'fr-FR', 'Écrivez un e-mail froid à propos de :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nContexte à inclure dans le cold email :\n ##keywords## \n\nLe ton de la voix de l\'e-mail froid doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1175, '33', 'de-DE', 'Schreiben Sie eine kalte E-Mail über:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nIn die Cold-E-Mail aufzunehmender Kontext:\n ##keywords## \n\nTonfall der kalten E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1176, '33', 'el-GR', 'Γράψτε ένα κρύο email για:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n 117title## \n\nΠλαίσιο που θα συμπεριληφθεί στο κρύο email:\n ##keywords## \n\nΟ τόνος της φωνής του κρύου email πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1177, '33', 'he-IL', 'כתוב אימייל קר על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nהקשר לכלול בדוא הקר:\n ##keywords## \n\nטון הדיבור של האימייל הקר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1178, '33', 'hi-IN', 'इस बारे में एक ठंडा ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nकोल्ड ईमेल में शामिल करने के लिए प्रसंग:\n ##keywords## \n\nठंडे ईमेल की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1179, '33', 'hu-HU', 'Írjon hideg e-mailt erről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nA hideg e-mailben szereplő kontextus:\n ##keywords## \n\nA hideg e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1180, '33', 'is-IS', 'Skrifaðu kalt tölvupóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nSamhengi til að hafa með í kalda tölvupóstinum:\n ##keywords## \n\nTónn í kalda tölvupóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1181, '33', 'id-ID', 'Tulis email dingin tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nKonteks untuk disertakan dalam email dingin:\n ##keywords## \n\nNada suara email dingin harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1182, '33', 'it-IT', 'Scrivi una fredda email su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nContesto da includere nell\'email fredda:\n ##keywords## \n\nIl tono di voce dell\'email fredda deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1183, '33', 'ja-JP', '以下についての冷たいメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nコールド メールに含めるコンテキスト:\n ##keywords## \n\nコールド メールのトーンは次のとおりです:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1184, '33', 'ko-KR', '다음에 대한 콜드 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n콜드 이메일에 포함할 컨텍스트:\n ##keywords## \n\n콜드 이메일의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1185, '33', 'ms-MY', 'Tulis e-mel sejuk tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nKonteks untuk disertakan dalam e-mel sejuk:\n ##keywords## \n\nNada suara e-mel sejuk mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1186, '33', 'nb-NO', 'Skriv en kald e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nKontekst som skal inkluderes i den kalde e-posten:\n ##keywords## \n\nStemmetonen til den kalde e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1187, '33', 'pl-PL', 'Napisz zimny e-mail na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontekst do uwzględnienia w zimnej wiadomości e-mail:\n ##keywords## \n\nTon zimnej wiadomości e-mail musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1188, '33', 'pt-PT', 'Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1189, '33', 'ru-RU', 'Напишите холодное электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nКонтекст для включения в холодное электронное письмо:\n ##keywords## \n\nТон голоса холодного письма должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1190, '33', 'es-ES', 'Escribe un correo electrónico frío sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nContexto para incluir en el correo electrónico frío:\n ##keywords## \n\nEl tono de voz del correo frío debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1191, '33', 'sv-SE', 'Skriv ett kallt e-postmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nKontext att inkludera i det kalla e-postmeddelandet:\n ##keywords## \n\nTonfallet för det kalla e-postmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1192, '33', 'tr-TR', '10 akılda kalıcı blog başlığı oluşturun:\n\n ##description## \n\n\'Şirketimizin veya ürünümüzün adı:\n ##title## \n\nSoğuk e-postaya eklenecek içerik:\n ##keywords## \n\nSoğuk e-postanın ses tonu şöyle olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1193, '33', 'pt-BR', 'Escreva um e-mail frio sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nContexto para incluir no e-mail frio:\n ##keywords## \n\nTom de voz do e-mail frio deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1194, '33', 'ro-RO', 'Scrieți un e-mail rece despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nContext de inclus în e-mailul rece:\n ##keywords## \n\nTonul de voce al e-mailului rece trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1195, '33', 'vi-VN', 'Viết một email lạnh nhạt về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nBối cảnh bao gồm trong email lạnh:\n ##keywords## \n\nGiọng nói của email lạnh phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1196, '33', 'sw-KE', 'Andika barua pepe baridi kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nMuktadha wa kujumuisha katika barua pepe baridi:\n ##keywords## \n\nToni ya sauti ya barua pepe baridi lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1197, '33', 'sl-SI', 'Napišite hladno e-pošto o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nKontekst za vključitev v hladno e-pošto:\n ##keywords## \n\nTon glasu hladnega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1198, '33', 'th-TH', 'เขียนอีเมลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nบริบทที่จะรวมไว้ในอีเมลเย็น:\n ##keywords## \n\nน้ำเสียงของอีเมลเย็นต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1199, '33', 'uk-UA', 'Напишіть холодний електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nКонтекст для включення в холодний електронний лист:\n ##keywords## \n\nТон холодного електронного листа має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1200, '33', 'lt-LT', 'Parašykite šaltą el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nKontekstas, kurį reikia įtraukti į šaltą el. laišką:\n ##keywords## \n\nŠalto el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1201, '33', 'bg-BG', 'Напишете студен имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nКонтекст за включване в студения имейл:\n ##keywords## \n\nТонът на гласа на студения имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1202, '34', 'en-US', 'Write a follow up email about:\n\n ##description## \n\nOur company or product name is:\n ##title## \n\nFollowing up after:\n ##event## \n\nTarget audience is:\n ##keywords## \n\nTone of voice of the follow up email must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1203, '34', 'ar-AE', 'اكتب رسالة متابعة بالبريد الإلكتروني حول:\n\n ##description## \n\nاسم الشركة أو المنتج هو:\n ##title## \n\nالمتابعة بعد:\n##event## \n\nالجمهور المستهدف هو:\n ##keywords## \n\nيجب أن تكون نغمة الصوت في رسالة البريد الإلكتروني للمتابعة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1204, '34', 'cmn-CN', '写一封跟进电子邮件:\n\n ##description## \n\n我们的公司或产品名称是:\n ##title## \n\n跟进之后:\n ##event## \n\n目标受众是:\n ##keywords## \n\n跟进邮件的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1205, '34', 'hr-HR', 'Napišite naknadnu e-poruku o:\n\n ##description## \n\nIme naše tvrtke ili proizvoda je:\n ##title## \n\nSljedeće nakon:\n ##event## \n\nCiljana publika je:\n ##keywords## \n\nTon glasa dodatne e-pošte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1206, '34', 'cs-CZ', 'Napište následný e-mail o:\n\n ##description## \n\nNázev naší společnosti nebo produktu je:\n ##title## \n\nSledování po:\n ##event## \n\nCílové publikum je:\n ##keywords## \n\nTón hlasu následného e-mailu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1207, '34', 'da-DK', 'Skriv en opfølgningsmail om:\n\n ##description## \n\nVores firma- eller produktnavn er:\n ##title## \n\nOpfølgning efter:\n ##event## \n\nMålgruppe er:\n ##keywords## \n\nTone i opfølgnings-e-mailen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1208, '34', 'nl-NL', 'Schrijf een vervolgmail over:\n\n ##description## \n\nOnze bedrijfs- of productnaam is:\n ##title## \n\nOpvolging na:\n ##event## \n\nDoelgroep is:\n ##keywords## \n\nDe toon van de vervolgmail moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1209, '34', 'et-EE', 'Kirjutage järelmeil teemal:\n\n ##description## \n\nMeie ettevõtte või toote nimi on:\n ##title## \n\nJälgimine pärast:\n ##event## \n\nSihtpublik on:\n ##keywords## \n\nJärelmeili hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1210, '34', 'fi-FI', 'Kirjoita seurantasähköposti aiheesta:\n\n ##description## \n\nYrityksemme tai tuotteemme nimi on:\n ##title## \n\nSeurataan tämän jälkeen:\n ##event## \n\nKohdeyleisö on:\n ##keywords## \n\nSeurantaviestin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1211, '34', 'fr-FR', 'Rédigez un e-mail de suivi concernant :\n\n ##description## \n\nLe nom de notre entreprise ou de notre produit est :\n ##title## \n\nSuivi après :\n ##event## \n\nLe public cible est :\n ##keywords## \n\nLe ton de la voix de l\'e-mail de suivi doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1212, '34', 'de-DE', 'Schreiben Sie eine Folge-E-Mail zu:\n\n ##description## \n\nUnser Firmen- oder Produktname lautet:\n ##title## \n\nNachverfolgung nach:\n ##event## \n\nZielpublikum ist:\n ##keywords## \n\nTonfall der Folge-E-Mail muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1213, '34', 'el-GR', 'Γράψτε ένα επόμενο μήνυμα ηλεκτρονικού ταχυδρομείου σχετικά με:\n\n ##description## \n\nΗ εταιρεία ή το όνομα του προϊόντος μας είναι:\n ##title## \n\nΣυνέχεια μετά:\n ##event## \n\nΤο κοινό-στόχος είναι:\n ##keywords## \n\nΟ τόνος της φωνής του επόμενου email πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1214, '34', 'he-IL', 'כתוב אימייל מעקב על:\n\n ##description## \n\nשם החברה או המוצר שלנו הוא:\n ##title## \n\nמעקב אחרי:\n ##event## \n\nקהל היעד הוא:\n ##keywords## \n\nטון הדיבור של דואל המעקב חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1215, '34', 'hi-IN', 'इस बारे में एक अनुवर्ती ईमेल लिखें:\n\n ##description## \n\nहमारी कंपनी या उत्पाद का नाम है:\n ##title## \n\nइसके बाद:\n ##event## \n\nलक्षित दर्शक हैं:\n ##keywords## \n\nफ़ॉलो अप ईमेल का स्वर इस प्रकार होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1216, '34', 'hu-HU', 'Írjon e-mailt a következőről:\n\n ##description## \n\nCégünk vagy termékünk neve:\n ##title## \n\nKövetés a következő után:\n ##event## \n\nA célközönség:\n ##keywords## \n\nA követő e-mail hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1217, '34', 'is-IS', 'Skrifaðu eftirfylgnipóst um:\n\n ##description## \n\nFyrirtækis eða vöruheiti okkar er:\n ##title## \n\nFylgst með eftir:\n ##event## \n\nMarkhópur er:\n ##keywords## \n\nTónn í eftirfylgnipóstinum verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1218, '34', 'id-ID', 'Tulis email tindak lanjut tentang:\n\n ##description## \n\nNama perusahaan atau produk kami adalah:\n ##title## \n\nMenindaklanjuti setelah:\n ##event## \n\nTarget audiens adalah:\n ##keywords## \n\nNada suara email tindak lanjut harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1219, '34', 'it-IT', 'Scrivi un\'email di follow-up su:\n\n ##description## \n\nIl nome della nostra azienda o prodotto è:\n ##title## \n\nFollow up dopo:\n ##event## \n\nIl pubblico di destinazione è:\n ##keywords## \n\nIl tono di voce dell\'email di follow-up deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1220, '34', 'ja-JP', 'フォローアップのメールを書いてください:\n\n ##description## \n\n当社または製品名は次のとおりです:\n ##title## \n\nフォローアップ:\n ##event## \n\n対象者:\n ##keywords## \n\nフォローアップ メールのトーンは次のとおりです:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1221, '34', 'ko-KR', '다음에 대한 후속 이메일 작성:\n\n ##description## \n\n저희 회사 또는 제품 이름은:\n ##title## \n\n다음 이후:\n ##event## \n\n대상은:\n ##keywords## \n\n후속 이메일의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1222, '34', 'ms-MY', 'Tulis e-mel susulan tentang:\n\n ##description## \n\nNama syarikat atau produk kami ialah:\n ##title## \n\nMenyusul selepas:\n ##event## \n\nKhalayak sasaran ialah:\n ##keywords## \n\nNada suara e-mel susulan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1223, '34', 'nb-NO', 'Skriv en oppfølgings-e-post om:\n\n ##description## \n\nVårt firma eller produktnavn er:\n ##title## \n\nOppfølging etter:\n ##event## \n\nMålgruppen er:\n ##keywords## \n\nTone i oppfølgings-e-posten må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1224, '34', 'pl-PL', 'Napisz e-mail uzupełniający na temat:\n\n ##description## \n\nNazwa naszej firmy lub produktu to:\n ##title## \n\nKontynuacja po:\n ##event## \n\nDocelowi odbiorcy to:\n ##keywords## \n\nTon w e-mailu uzupełniającym musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1225, '34', 'pt-PT', 'Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1226, '34', 'ru-RU', 'Напишите последующее электронное письмо о:\n\n ##description## \n\nНазвание нашей компании или продукта:\n ##title## \n\nПоследующие действия после:\n ##event## \n\nЦелевая аудитория:\n ##keywords## \n\nТон голоса в последующем электронном письме должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1227, '34', 'es-ES', 'Escribe un correo electrónico de seguimiento sobre:\n\n ##description## \n\nEl nombre de nuestra empresa o producto es:\n ##title## \n\nSeguimiento después de:\n ##event## \n\nEl público objetivo es:\n ##keywords## \n\nEl tono de voz del correo electrónico de seguimiento debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1228, '34', 'sv-SE', 'Skriv ett uppföljningsmeddelande om:\n\n ##description## \n\nVårt företag eller produktnamn är:\n ##title## \n\nFöljer upp efter:\n ##event## \n\nMålgruppen är:\n ##keywords## \n\nRösten i uppföljningsmeddelandet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1229, '34', 'tr-TR', 'Şu konuda bir takip e-postası yazın:\n\n ##description## \n\nŞirketimizin veya ürünümüzün adı:\n ##title## \n\nSonra takip:\n ##event## \n\nHedef kitle:\n ##keywords## \n\nTakip e-postasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1230, '34', 'pt-BR', 'Escreva um e-mail de acompanhamento sobre:\n\n ##description## \n\nO nome da nossa empresa ou produto é:\n ##title## \n\nAcompanhamento após:\n ##event## \n\nO público-alvo é:\n ##keywords## \n\nTom de voz do e-mail de acompanhamento deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1231, '34', 'ro-RO', 'Scrieți un e-mail de continuare despre:\n\n ##description## \n\nNumele companiei sau al produsului nostru este:\n ##title## \n\nUrmărire după:\n ##event## \n\nPublicul țintă este:\n ##keywords## \n\nTonul de voce al e-mailului de urmărire trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1232, '34', 'vi-VN', 'Viết email tiếp theo về:\n\n ##description## \n\nTên sản phẩm hoặc công ty của chúng tôi là:\n ##title## \n\nTiếp tục sau:\n ##event## \n\nĐối tượng mục tiêu là:\n ##keywords## \n\nGiọng điệu của email tiếp theo phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1233, '34', 'sw-KE', 'Andika barua pepe ya ufuatiliaji kuhusu:\n\n ##description## \n\nJina la kampuni au bidhaa yetu ni:\n ##title## \n\nInafuata baada ya:\n ##event## \n\nHadhira inayolengwa ni:\n ##keywords## \n\nToni ya sauti ya barua pepe ya ufuatiliaji lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1234, '34', 'sl-SI', 'Napišite nadaljnje e-poštno sporočilo o:\n\n ##description## \n\nIme našega podjetja ali izdelka je:\n ##title## \n\nNadaljevanje po:\n ##event## \n\nCiljna publika je:\n ##keywords## \n\nTon glasu nadaljnjega e-poštnega sporočila mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1235, '34', 'th-TH', 'เขียนอีเมลติดตามผลเกี่ยวกับ:\n\n ##description## \n\nชื่อบริษัทหรือผลิตภัณฑ์ของเราคือ:\n ##title## \n\nติดตามผลหลังจากนี้:\n ##event## \n\nกลุ่มเป้าหมายคือ:\n ##keywords## \n\nเสียงของอีเมลติดตามจะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1236, '34', 'uk-UA', 'Напишіть додатковий електронний лист про:\n\n ##description## \n\nНазва нашої компанії або продукту:\n ##title## \n\nПодальші дії після:\n ##event## \n\nЦільова аудиторія:\n ##keywords## \n\nТон голосу в електронному листі має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1237, '34', 'lt-LT', 'Parašykite tolesnius el. laišką apie:\n\n ##description## \n\nMūsų įmonės arba produkto pavadinimas yra:\n ##title## \n\nStebimas po:\n ##event## \n\nTikslinė auditorija yra:\n ##keywords## \n\nTolesnio el. laiško balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1238, '34', 'bg-BG', 'Напишете последващ имейл за:\n\n ##description## \n\nИмето на нашата компания или продукт е:\n ##title## \n\nПоследващи действия след:\n ##event## \n\nЦелевата аудитория е:\n ##keywords## \n\nТонът на последващия имейл трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1239, '35', 'en-US', 'Write a creative story about:\n\n ##description## \n\nTone of voice of the story must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1240, '35', 'ar-AE', 'اكتب قصة إبداعية عن:\n\n ##description## \n\nيجب أن تكون نغمة الصوت في القصة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1241, '35', 'cmn-CN', '写一个有创意的故事:\n\n ##description## \n\n故事的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1242, '35', 'hr-HR', 'Napišite kreativnu priču o:\n\n ##description## \n\nTon glasa priče mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1243, '35', 'cs-CZ', 'Napište kreativní příběh o:\n\n ##description## \n\nTón hlasu příběhu musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1244, '35', 'da-DK', 'Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1245, '35', 'nl-NL', 'Schrijf een creatief verhaal over:\n\n ##description## \n\nDe toon van het verhaal moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1246, '35', 'et-EE', 'Kirjutage loov lugu teemal:\n\n ##description## \n\nLoo hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1247, '35', 'fi-FI', 'Kirjoita luova tarina aiheesta:\n\n ##description## \n\nTarinan äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1248, '35', 'fr-FR', 'Ecrire une histoire créative sur :\n\n ##description## \n\nLe ton de la voix de l\'histoire doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1249, '35', 'de-DE', 'Schreibe eine kreative Geschichte über:\n\n ##description## \n\nTonfall der Geschichte muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1250, '35', 'el-GR', 'Γράψτε μια δημιουργική ιστορία για:\n\n ##description## \n\nΟ τόνος της φωνής της ιστορίας πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1251, '35', 'he-IL', 'כתוב סיפור יצירתי על:\n\n ##description## \n\nטון הדיבור של הסיפור חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1252, '35', 'hi-IN', 'के बारे में एक रचनात्मक कहानी लिखें:\n\n ##description## \n\nकहानी का स्वर ऐसा होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1253, '35', 'hu-HU', 'Írjon kreatív történetet erről:\n\n ##description## \n\nA történet hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1254, '35', 'is-IS', 'Skrifaðu skapandi sögu um:\n\n ##description## \n\nTónn í sögunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1255, '35', 'id-ID', 'Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1256, '35', 'it-IT', 'Scrivi una storia creativa su:\n\n ##description## \n\nIl tono di voce della storia deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1257, '35', 'ja-JP', '次のようなクリエイティブなストーリーを書きましょう:\n\n ##description## \n\nストーリーの声のトーンは次のとおりでなければなりません:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1258, '35', 'ko-KR', '다음에 대한 창의적인 이야기 쓰기:\n\n ##description## \n\n이야기의 목소리 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1259, '35', 'ms-MY', 'Tulis cerita kreatif tentang:\n\n ##description## \n\nNada suara cerita mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1260, '35', 'nb-NO', 'Skriv en kreativ historie om:\n\n ##description## \n\nTone i historien må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1261, '35', 'pl-PL', 'Napisz kreatywną historię na temat:\n\n ##description## \n\nTon opowieści musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1262, '35', 'pt-PT', 'Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1263, '35', 'ru-RU', 'Напишите творческую историю о:\n\n ##description## \n\nТон голоса истории должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1264, '35', 'es-ES', 'Escribe una historia creativa sobre:\n\n ##description## \n\nEl tono de voz de la historia debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1265, '35', 'sv-SE', 'Skriv en kreativ berättelse om:\n\n ##description## \n\nTonfallet i berättelsen måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1266, '35', 'tr-TR', 'Şunun hakkında yaratıcı bir hikaye yaz:\n\n ##description## \n\nHikayenin ses tonu şöyle olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1267, '35', 'pt-BR', 'Escreva uma história criativa sobre:\n\n ##description## \n\nTom de voz da história deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1268, '35', 'ro-RO', 'Scrieți o poveste creativă despre:\n\n ##description## \n\nTonul vocii al poveștii trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1269, '35', 'vi-VN', 'Viết một câu chuyện sáng tạo về:\n\n ##description## \n\nGiọng điệu của câu chuyện phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1270, '35', 'sw-KE', 'Andika hadithi ya ubunifu kuhusu:\n\n ##description## \n\nToni ya sauti ya hadithi lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1271, '35', 'sl-SI', 'Napišite ustvarjalno zgodbo o:\n\n ##description## \n\nTon glasu zgodbe mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1272, '35', 'th-TH', 'เขียนเรื่องราวที่สร้างสรรค์เกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของเรื่องต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1273, '35', 'uk-UA', 'Напишіть творчу розповідь про:\n\n ##description## \n\nТон розповіді має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1274, '35', 'lt-LT', 'Parašykite kūrybinę istoriją apie:\n\n ##description## \n\nIstorijos balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1275, '35', 'bg-BG', 'Напишете творческа история за:\n\n ##description## \n\nТонът на гласа на историята трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1276, '36', 'en-US', 'Check and correct grammar of this text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1277, '36', 'ar-AE', 'تحقق من القواعد النحوية لهذا النص وصححه:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1278, '36', 'cmn-CN', '检查并更正此文本的语法:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1279, '36', 'hr-HR', 'Provjeri i ispravi gramatiku ovog teksta:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1280, '36', 'cs-CZ', 'Zkontrolujte a opravte gramatiku tohoto textu:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1281, '36', 'da-DK', 'Tjek og ret grammatik af denne tekst:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1282, '36', 'nl-NL', 'Controleer en corrigeer de grammatica van deze tekst:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1283, '36', 'et-EE', 'Kontrollige ja parandage selle teksti grammatikat:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1284, '36', 'fi-FI', 'Tarkista ja korjaa tämän tekstin kielioppi:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1285, '36', 'fr-FR', 'Vérifiez et corrigez la grammaire de ce texte :\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1286, '36', 'de-DE', 'Prüfe und korrigiere die Grammatik dieses Textes:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1287, '36', 'el-GR', 'Ελέγξτε και διορθώστε τη γραμματική αυτού του κειμένου:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1288, '36', 'he-IL', 'בדוק ותקן את הדקדוק של הטקסט הזה:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1289, '36', 'hi-IN', 'इस पाठ का व्याकरण जांचें और सही करें:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1290, '36', 'hu-HU', 'Ellenőrizze és javítsa ki ennek a szövegnek a nyelvtanát:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1291, '36', 'is-IS', 'Athugaðu og leiðréttu málfræði þessa texta:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1292, '36', 'id-ID', 'Periksa dan perbaiki tata bahasa teks ini:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1293, '36', 'it-IT', 'Controlla e correggi la grammatica di questo testo:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1294, '36', 'ja-JP', 'このテキストの文法を確認して修正してください:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1295, '36', 'ko-KR', '이 텍스트의 문법을 확인하고 수정하십시오:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1296, '36', 'ms-MY', 'Semak dan betulkan tatabahasa teks ini:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1297, '36', 'nb-NO', 'Sjekk og korriger grammatikken til denne teksten:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1298, '36', 'pl-PL', 'Sprawdź i popraw gramatykę tego tekstu:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1299, '36', 'pt-PT', 'Verifique e corrija a gramática deste texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1300, '36', 'ru-RU', 'Проверьте и исправьте грамматику этого текста:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1301, '36', 'es-ES', 'Revise y corrija la gramática de este texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1302, '36', 'sv-SE', 'Kontrollera och korrigera grammatiken för denna text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1303, '36', 'tr-TR', 'Bu metnin gramerini kontrol edin ve düzeltin:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1304, '36', 'pt-BR', 'Verifique e corrija a gramática deste texto:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1305, '36', 'ro-RO', 'Verificați și corectați gramatica acestui text:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1306, '36', 'vi-VN', 'Kiểm tra và sửa ngữ pháp của văn bản này:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1307, '36', 'sw-KE', 'Angalia na urekebishe sarufi ya maandishi haya:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1308, '36', 'sl-SI', 'Preveri in popravi slovnico tega besedila:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1309, '36', 'th-TH', 'ตรวจสอบและแก้ไขไวยากรณ์ของข้อความนี้:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1310, '36', 'uk-UA', 'Перевірте та виправте граматику цього тексту:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1311, '36', 'lt-LT', 'Patikrinkite ir pataisykite šio teksto gramatiką:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1312, '36', 'bg-BG', 'Проверете и коригирайте граматиката на този текст:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1313, '37', 'en-US', 'Summarize this text for 2nd grader:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1314, '37', 'ar-AE', 'تلخيص هذا النص لطلاب الصف الثاني:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1315, '37', 'cmn-CN', '为二年级学生总结这篇课文:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1316, '37', 'hr-HR', 'Sažmi ovaj tekst za učenika 2. razreda:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1317, '37', 'cs-CZ', 'Shrňte tento text pro žáka 2. třídy:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1318, '37', 'da-DK', 'Opsummer denne tekst for 2. klasse:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1319, '37', 'nl-NL', 'Vat deze tekst samen voor groep 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1320, '37', 'et-EE', 'Tee sellest tekstist kokkuvõte 2. klassi õpilasele:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1321, '37', 'fi-FI', 'Tee yhteenveto tästä tekstistä 2. luokkalaiselle:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1322, '37', 'fr-FR', 'Résumez ce texte pour un élève de 2e :\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1323, '37', 'de-DE', 'Fass diesen Text für die 2. Klasse zusammen:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1324, '37', 'el-GR', 'Σύνοψτε αυτό το κείμενο για μαθητή της Β\' δημοτικού:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1325, '37', 'he-IL', 'סכם את הטקסט הזה עבור כיתה ב\':\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1326, '37', 'hi-IN', 'इस पाठ को दूसरे ग्रेडर के लिए सारांशित करें:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1327, '37', 'hu-HU', 'Összefoglalja ezt a szöveget 2. osztályosnak:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1328, '37', 'is-IS', 'Taktu saman þennan texta fyrir 2. bekk:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1329, '37', 'id-ID', 'Ringkaskan teks ini untuk siswa kelas 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1330, '37', 'it-IT', 'Riassumi questo testo per la seconda elementare:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1331, '37', 'ja-JP', '2 年生向けにこのテキストを要約してください:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1332, '37', 'ko-KR', '2학년을 위해 이 텍스트 요약:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1333, '37', 'ms-MY', 'Ringkaskan teks ini untuk pelajar gred 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1334, '37', 'nb-NO', 'Oppsummer denne teksten for 2. klassing:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1335, '37', 'pl-PL', 'Podsumuj ten tekst dla uczniów drugiej klasy:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1336, '37', 'pt-PT', 'Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1337, '37', 'ru-RU', 'Обобщите этот текст для второклассника:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1338, '37', 'es-ES', 'Generar 10 títulos de blog pegadizos para:\\n\\n ##description## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1339, '37', 'sv-SE', 'Sammanfatta den här texten för klass 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1340, '37', 'tr-TR', '2. sınıf öğrencisi için bu metni özetleyin:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1341, '37', 'pt-BR', 'Resuma este texto para aluno da 2ª série:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1342, '37', 'ro-RO', 'Rezumați acest text pentru elevul de clasa a II-a:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1343, '37', 'vi-VN', 'Tóm tắt văn bản này cho học sinh lớp 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1344, '37', 'sw-KE', 'Fanya muhtasari wa maandishi haya kwa mwanafunzi wa darasa la 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1345, '37', 'sl-SI', 'Povzemite to besedilo za 2. razred:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1346, '37', 'th-TH', 'สรุปข้อความนี้สำหรับนักเรียนชั้นประถมศึกษาปีที่ 2:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1347, '37', 'uk-UA', 'Підсумуйте цей текст для 2-класника:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1348, '37', 'lt-LT', 'Apibendrinkite šį tekstą 2 klasės mokiniui:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1349, '37', 'bg-BG', 'Обобщете този текст за второкласник:\n\n ##description## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1350, '38', 'en-US', 'Write an interesting video script about:\n\n ##description## \n\nTone of voice of the video script must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1351, '38', 'ar-AE', 'اكتب نص فيديو مثيرًا للاهتمام حول:\n\n ##description## \n\n يجب أن تكون نغمة الصوت في نص الفيديو:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1352, '38', 'cmn-CN', '写一个有趣的视频脚本:\n\n ##description## \n\n视频脚本的语调必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1353, '38', 'hr-HR', 'Napišite zanimljiv video scenarij o:\n\n ##description## \n\nTon glasa video skripte mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1354, '38', 'cs-CZ', 'Napište zajímavý video skript o:\n\n ##description## \n\nTón hlasu skriptu videa musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1355, '38', 'da-DK', 'Skriv et interessant videoscript om:\n\n ##description## \n\nTone i videoscriptet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1356, '38', 'nl-NL', 'Schrijf een interessant videoscript over:\n\n ##description## \n\nDe toon van het videoscript moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1357, '38', 'et-EE', 'Kirjutage huvitav videostsenaarium teemal:\n\n ##description## \n\nVideo skripti hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1358, '38', 'fi-FI', 'Kirjoita mielenkiintoinen videokäsikirjoitus aiheesta:\n\n ##description## \n\nVideokäsikirjoituksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1359, '38', 'fr-FR', 'Écrivez un script vidéo intéressant sur :\n\n ##description## \n\nLe ton de la voix du script vidéo doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1360, '38', 'de-DE', 'Schreiben Sie ein interessantes Videoskript über:\n\n ##description## \n\nTonlage des Videoskripts muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1361, '38', 'el-GR', 'Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1362, '38', 'he-IL', 'Γράψτε ένα ενδιαφέρον σενάριο βίντεο για:\n\n ##description## \n\nΟ τόνος της φωνής του σεναρίου βίντεο πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1363, '38', 'hi-IN', 'इस बारे में एक दिलचस्प वीडियो स्क्रिप्ट लिखें:\n\n ##description## \n\nवीडियो स्क्रिप्ट की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1364, '38', 'hu-HU', 'Írj egy érdekes videó forgatókönyvet erről:\n\n ##description## \n\nA videó forgatókönyvének hangszínének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1365, '38', 'is-IS', 'Skrifaðu áhugavert myndbandshandrit um:\n\n ##description## \n\nRaddónn myndbandshandritsins verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1366, '38', 'id-ID', 'Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1367, '38', 'it-IT', 'Scrivi un copione video interessante su:\n\n ##description## \n\nIl tono di voce del copione video deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1368, '38', 'ja-JP', '興味深いビデオ スクリプトを作成してください:\n\n ##description## \n\nビデオ スクリプトの声の調子:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1369, '38', 'ko-KR', '다음에 대한 흥미로운 비디오 스크립트 작성:\n\n ##description## \n\n비디오 스크립트의 음성 톤은 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1370, '38', 'ms-MY', 'Tulis skrip video yang menarik tentang:\n\n ##description## \n\nNada suara skrip video mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1371, '38', 'nb-NO', 'Skriv et interessant videoskript om:\n\n ##description## \n\nStemmetonen til videoskriptet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1372, '38', 'pl-PL', 'Napisz ciekawy scenariusz wideo na temat:\n\n ##description## \n\nTon głosu skryptu wideo musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1373, '38', 'pt-PT', 'Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1374, '38', 'ru-RU', 'Напишите интересный сценарий видео о:\n\n ##description## \n\nТон голоса видеосценария должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1375, '38', 'es-ES', 'Escribe un guión de video interesante sobre:\n\n ##description## \n\nEl tono de voz del guión del video debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1376, '38', 'sv-SE', 'Skriv ett intressant videomanus om:\n\n ##description## \n\nRösten i videoskriptet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1377, '38', 'tr-TR', 'Şununla ilgili ilginç bir video komut dosyası yazın:\n\n ##description## \n\nVideo komut dosyasının ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1378, '38', 'pt-BR', 'Escreva um script de vídeo interessante sobre:\n\n ##description## \n\nTom de voz do roteiro do vídeo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1379, '38', 'ro-RO', 'Scrieți un script video interesant despre:\n\n ##description## \n\nTonul vocii al scriptului video trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1380, '38', 'vi-VN', 'Viết kịch bản video thú vị về:\n\n ##description## \n\nGiọng nói của kịch bản video phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1381, '38', 'sw-KE', 'Andika hati ya video ya kuvutia kuhusu:\n\n ##description## \n\nToni ya sauti ya hati ya video lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1382, '38', 'sl-SI', 'Napišite zanimiv video scenarij o:\n\n ##description## \n\nTon glasu video scenarija mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1383, '38', 'th-TH', 'เขียนสคริปต์วิดีโอที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\nน้ำเสียงของสคริปต์วิดีโอต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1384, '38', 'uk-UA', 'Напишіть сценарій цікавого відео про:\n\n ##description## \n\nТон голосу сценарію відео має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1385, '38', 'lt-LT', 'Parašykite įdomų vaizdo įrašo scenarijų apie:\n\n ##description## \n\nVaizdo įrašo scenarijaus balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1386, '38', 'bg-BG', 'Напишете интересен видео сценарий за:\n\n ##description## \n\nТонът на гласа на видео сценария трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1387, '39', 'en-US', 'Write attention grabbing Amazon marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1388, '39', 'ar-AE', 'اكتب وصف منتج سوق أمازون الذي يجذب الانتباه لـ:\n\n ##title## \n\n استخدم الكلمات الأساسية التالية في وصف المنتج:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1389, '39', 'cmn-CN', '为以下内容撰写引人注目的亚马逊市场产品说明:\n\n ##title## \n\n在产品描述中使用以下关键词:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1390, '39', 'hr-HR', 'Napišite opis proizvoda na Amazonovom tržištu koji privlači pažnju za:\n\n ##title## \n\nKoristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1391, '39', 'cs-CZ', 'Napište popis produktu na tržišti Amazon pro:\n\n ##title## \n\nV popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1392, '39', 'da-DK', 'Skriv opmærksomhedsfangende Amazon-markedsplads-produktbeskrivelse for:\n\n ##title## \n\nBrug følgende søgeord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1393, '39', 'nl-NL', 'Schrijf een opvallende productbeschrijving op de Amazon-marktplaats voor:\n\n ##title## \n\nGebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1394, '39', 'et-EE', 'Kirjutage tähelepanu haarav Amazoni turu tootekirjeldus:\n\n ##title## \n\nKasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1395, '39', 'fi-FI', 'Kirjoita huomiota herättävä Amazon Marketplace -tuotteen kuvaus:\n\n ##title## \n\nKäytä seuraavia avainsanoja tuotekuvauksessa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1396, '39', 'fr-FR', 'Rédigez une description de produit accrocheuse sur la place de marché Amazon pour :\n\n ##title## \n\nUtilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1397, '39', 'de-DE', 'Schreiben Sie eine aufmerksamkeitsstarke Amazon Marketplace-Produktbeschreibung für:\n\n ##title## \n\nVerwenden Sie folgende Schlüsselwörter in der Produktbeschreibung:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1398, '39', 'el-GR', 'Γράψτε την προσοχή που προσελκύει την περιγραφή προϊόντος της Amazon Marketplace για:\n\n ##title## \n\nΧρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1399, '39', 'he-IL', 'כתוב תשומת לב מושכת את תיאור המוצר של Amazon Marketplace עבור:\n\n ##title## \n\nהשתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1400, '39', 'hi-IN', 'ध्यान आकर्षित करने वाले Amazon मार्केटप्लेस उत्पाद विवरण के लिए लिखें:\n\n ##title## \n\nउत्पाद विवरण में निम्नलिखित कीवर्ड का उपयोग करें:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1401, '39', 'hu-HU', 'Írjon figyelemfelkeltő Amazon Marketplace termékleírást:\n\n ##title## \n\nHasználja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1402, '39', 'is-IS', 'Skrifaðu athyglisverða vörulýsingu á Amazon markaðstorginu fyrir:\n\n ##title## \n\nNotaðu eftirfarandi leitarorð í vörulýsingunni:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1403, '39', 'id-ID', 'Tulis deskripsi produk pasar Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1404, '39', 'it-IT', 'Scrivi una descrizione del prodotto del marketplace Amazon che attiri l\'attenzione per:\n\n ##title## \n\nUsa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1405, '39', 'ja-JP', '注目を集める Amazon マーケットプレイスの商品説明を書いてください:\n\n ##title## \n\n製品説明には次のキーワードを使用してください:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1406, '39', 'ko-KR', '다음에 대한 관심을 끄는 Amazon 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1407, '39', 'ms-MY', 'Tulis penerangan produk pasaran Amazon yang menarik perhatian untuk:\n\n ##title## \n\nGunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1408, '39', 'nb-NO', 'Skriv en oppmerksomhetsfangende produktbeskrivelse for Amazon Marketplace for:\n\n ##title## \n\nBruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1409, '39', 'pl-PL', 'Napisz przyciągający uwagę opis produktu na rynku Amazon dla:\n\n ##title## \n\nUżyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1410, '39', 'pt-PT', 'Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1411, '39', 'ru-RU', 'Напишите привлекающее внимание описание продукта на торговой площадке Amazon для:\n\n ##title## \n\nИспользуйте следующие ключевые слова в описании продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1412, '39', 'es-ES', 'Escriba la descripción del producto del mercado de Amazon que llame la atención para:\n\n ##title## \n\nUtilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1413, '39', 'sv-SE', 'Skriv uppmärksamhet fånga Amazon marknadsplats produktbeskrivning för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1414, '39', 'tr-TR', 'Şunun için dikkat çekici Amazon pazar yeri ürün açıklamasını yazın:\n\n ##title## \n\nÜrün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1415, '39', 'pt-BR', 'Escreva uma descrição atraente do produto Amazon marketplace para:\n\n ##title## \n\nUse as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1416, '39', 'ro-RO', 'Scrieți atenția captând descrierea produsului Amazon marketplace pentru:\n\n ##title## \n\nFolosiți următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1417, '39', 'vi-VN', 'Viết mô tả sản phẩm thu hút sự chú ý trên thị trường Amazon cho:\n\n ##title## \n\nSử dụng các từ khóa sau trong phần mô tả sản phẩm:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1418, '39', 'sw-KE', 'Andika umakini wa kunyakua maelezo ya bidhaa ya soko la Amazon kwa:\n\n ##title## \n\nTumia manenomsingi yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1419, '39', 'sl-SI', 'Napišite opis izdelka Amazon Marketplace, ki pritegne pozornost za:\n\n ##title## \n\nV opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1420, '39', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ในตลาดกลางของ Amazon ที่ดึงดูดใจสำหรับ:\n\n ##title## \n\nใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1421, '39', 'uk-UA', 'Напишіть опис продукту Amazon Marketplace для:\n\n ##title## \n\nВикористовуйте такі ключові слова в описі продукту:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1422, '39', 'lt-LT', 'Parašykite dėmesį patraukiančio Amazon prekyvietės produkto aprašymą:\n\n ##title## \n\nProdukto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1423, '39', 'bg-BG', 'Напишете грабващо вниманието описание на продукта на пазара на Amazon за:\n\n ##title## \n\nИзползвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1424, '40', 'en-US', 'please Improve and rewrite this artical in a creative and smart way:\\n\\n ##description## \\n\\n using this keywords ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1425, '40', 'ar-AE', 'برجاء تحسين واعادة كتابة هذا الشكل من الورق بطريقة مبتكرة وذكية :\\n\\n ##description## \\n\\n استخدام هذه الكلمات المرشدة ##keywords## \\n\\n يجب أن يكون نبرة صوت النتيجة كما يلي :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1426, '40', 'cmn-CN', '请以创造性和聪明的方式改进和撰写这篇文章:\\n\\n ##description## \\n\\n 使用这个关键字 ##keywords## \\n\\n 结果的语气必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1427, '40', 'hr-HR', 'molimo poboljšajte i napišite ovaj članak na kreativan i pametan način:\\n\\n ##description## \\n\\n koristeći ove ključne riječi ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1428, '40', 'cs-CZ', 'prosím vylepšete a napište tento článek kreativním a chytrým způsobem:\\n\\n ##description## \\n\\n pomocí těchto klíčových slov ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1429, '40', 'da-DK', 'venligst forbedre og skrive denne artikel på en kreativ og smart måde:\\n\\n ##description## \\n\\n ved at bruge disse søgeord ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1430, '40', 'nl-NL', 'verbeter en schrijf dit artikel op een creatieve en slimme manier:\\n\\n ##description## \\n\\n met behulp van deze trefwoorden ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1431, '40', 'et-EE', 'Täiustage ja kirjutage see artikkel loominguliselt ja nutikalt:\\n\\n ##description## \\n\\n kasutades neid märksõnu ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1432, '40', 'fi-FI', 'Paranna ja kirjoita tämä artikkeli luovalla ja älykkäällä tavalla:\\n\\n ##description## \\n\\n käyttämällä näitä avainsanoja ##keywords## \\n\\n Tuloksen äänensävyn tulee olla:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1433, '40', 'fr-FR', 'Veuillez améliorer et écrire cet article de manière créative et intelligente :\\n\\n ##description## \\n\\n en utilisant ces mots clés ##keywords## \\n\\n Le ton de voix du résultat doit être :\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1434, '40', 'de-DE', 'Bitte verbessern Sie diesen Artikel und schreiben Sie ihn auf kreative und intelligente Weise:\\n\\n ##description## \\n\\n mit diesen Schlüsselwörtern ##keywords## \\n\\n Der Tonfall des Ergebnisses muss sein:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1435, '40', 'el-GR', 'Βελτιώστε και γράψτε αυτό το άρθρο με δημιουργικό και έξυπνο τρόπο:\\n\\n ##description## \\n\\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \\n\\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1436, '40', 'he-IL', 'אנא שפר וכתוב מאמר זה בצורה יצירתית וחכמה:\\n\\n ##description## \\n\\n באמצעות מילות מפתח אלו ##keywords## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1437, '40', 'hi-IN', 'कृपया इस लेख को रचनात्मक और स्मार्ट तरीके से सुधारें और लिखें:\\n\\n ##description## \\n\\n इस खोजशब्दों का उपयोग करना ##keywords## \\n\\n परिणाम की आवाज़ का स्वर होना चाहिए:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1438, '40', 'hu-HU', 'Kérjük, javítsa és írja meg ezt a cikket kreatív és okos módon:\\n\\n ##description## \\n\\n ezen kulcsszavak használatával ##keywords## \\n\\n Az eredmény hangnemének a következőnek kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1439, '40', 'is-IS', 'vinsamlegast bættu og skrifaðu þessa grein á skapandi og snjallan hátt:\\n\\n ##description## \\n\\n nota þessi leitarorð ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1440, '40', 'id-ID', 'tolong Tingkatkan dan tulis artikel ini dengan cara yang kreatif dan cerdas:\\n\\n ##description## \\n\\n menggunakan kata kunci ini ##keywords## \\n\\n Nada suara hasil harus:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1441, '40', 'it-IT', 'per favore Migliora e scrivi questo articolo in modo creativo e intelligente:\\n\\n ##description## \\n\\n utilizzando queste parole chiave ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1442, '40', 'ja-JP', 'この記事を改善し、創造的かつ賢明な方法で書いてください:\\n\\n ##description## \\n\\n このキーワードを使って ##keywords## \\n\\n 結果の口調は次のようになります:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1443, '40', 'ko-KR', '창의적이고 현명한 방법으로 이 문서를 개선하고 작성하십시오:\\n\\n ##description## \\n\\n 이 키워드를 사용하여 ##keywords## \\n\\n 결과의 어조는 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1444, '40', 'ms-MY', 'sila Perbaiki dan tulis artikel ini dengan cara yang kreatif dan bijak:\\n\\n ##description## \\n\\n menggunakan kata kunci ini ##keywords## \\n\\n Nada suara keputusan mestilah:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1445, '40', 'nb-NO', 'Vennligst forbedre og skriv denne artikkelen på en kreativ og smart måte:\\n\\n ##description## \\n\\n ved å bruke disse søkeordene ##keywords## \\n\\n Stemmetonen for resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1446, '40', 'pl-PL', 'proszę Popraw i napisz ten artykuł w kreatywny i inteligentny sposób:\\n\\n ##description## \\n\\n używając tych słów kluczowych ##keywords## \\n\\n Ton głosu wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1447, '40', 'pt-PT', 'Por favor, melhore e escreva este artigo de forma criativa e inteligente:\\n\\n ##description## \\n\\n usando essas palavras-chave ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1448, '40', 'ru-RU', 'пожалуйста, улучшите и напишите эту статью творчески и умно:\\n\\n ##description## \\n\\n используя эти ключевые слова ##keywords## \\n\\n Тон озвучивания результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1449, '40', 'es-ES', 'por favor Mejorar y reescribir esta táctica de una manera creativa e inteligente:\\n\\n ##description## \\n\\n utilizando estas palabras clave ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1450, '40', 'sv-SE', 'snälla förbättra och skriv den här artikeln på ett kreativt och smart sätt:\\n\\n ##description## \\n\\n använder dessa nyckelord ##keywords## \\n\\n Tonen i resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1451, '40', 'tr-TR', 'lütfen bu makaleyi geliştirin ve yaratıcı ve akıllı bir şekilde yazın:\\n\\n ##description## \\n\\n bu anahtar kelimeleri kullanarak ##keywords## \\n\\n Sonucun ses tonu şöyle olmalıdır:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1452, '40', 'pt-BR', 'Por favor, melhore e reescreva esse artigo de forma criativa e inteligente:\\n\\n ##description## \\n\\n usando essas palavras-chave ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1453, '40', 'ro-RO', 'Vă rugăm să îmbunătățiți și să scrieți acest articol într-un mod creativ și inteligent:\\n\\n ##description## \\n\\n folosind aceste cuvinte cheie ##keywords## \\n\\n Tonul de voce al rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1454, '40', 'vi-VN', 'vui lòng Cải thiện và viết bài viết này một cách sáng tạo và thông minh:\\n\\n ##description## \\n\\n Sử dụng từ khóa này ##keywords## \\n\\n Giọng điệu của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1455, '40', 'sw-KE', 'tafadhali Boresha na uandike nakala hii kwa njia ya ubunifu na busara:\\n\\n ##description## \\n\\n kwa kutumia maneno haya ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1456, '40', 'sl-SI', 'prosimo, izboljšajte in napišite ta članek na kreativen in pameten način:\\n\\n ##description## \\n\\n z uporabo teh ključnih besed ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1457, '40', 'th-TH', 'โปรดปรับปรุงและเขียนบทความนี้ใหม่ด้วยวิธีที่สร้างสรรค์และชาญฉลาด:\\n\\n ##description## \\n\\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \\n\\n โทนเสียงของผลลัพธ์จะต้อง:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1458, '40', 'uk-UA', 'Будь ласка, вдосконаліть і перепишіть цю статтю креативно та розумно:\\n\\n ##description## \\n\\n використовуючи ці ключові слова ##keywords## \\n\\n Тон голосу результату повинен бути таким:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1459, '40', 'lt-LT', 'Patobulinkite ir perrašykite šį straipsnį kūrybiškai ir sumaniai:\\n\\n ##description## \\n\\n naudojant šiuos raktinius žodžius ##keywords## \\n\\n Rezultato balso tonas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1460, '40', 'bg-BG', 'моля, подобрете и пренапишете тази статия по креативен и интелигентен начин:\\n\\n ##description## \\n\\n използвайки тези ключови думи ##keywords## \\n\\n Тонът на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1461, '41', 'en-US', 'Rephrase this content:\n\n ##description## in a different voice and style to appeal to different readers \n\n using this keywords ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1462, '41', 'ar-AE', 'اعادة مسح هذه المحتويات:\n\n ##description## بصوت وأسلوب مختلف للاستئناف للقراء المختلفين \n\n استخدام هذه الكلمات المرشدة ##keywords## \n\n \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1463, '41', 'cmn-CN', '重新詞組此內容:\n\n ##description## 用不同的聲音和風格來吸引不同的讀者 \n\n 使用此關鍵字 ##keywords## \n\n \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1464, '41', 'hr-HR', 'Preformulirati ovaj sadržaj:\n\n ##description## u drukčjoj glasu i stilu da se priziva na različite čitatelje. \n\n koristeći ove ključne riječi ##keywords## \n\n \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1465, '41', 'cs-CZ', 'Přesousloví tento obsah:\n\n ##description## v jiném hlasu a stylu pro odvolání k různým čtenářům \n\n použití těchto klíčových slov ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1466, '41', 'da-DK', 'Omsætning af dette indhold:\n\n ##description## i en anden stemme og typografi for at appellere til forskellige læsere \n\n bruge disse nøgleord ##keywords## \n\n \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1467, '41', 'nl-NL', 'Deze content herformuleren:\n\n ##description## in een andere stem en stijl om beroep te doen op verschillende lezers \n\n met deze trefwoorden ##keywords## \n\n \n\n Toon van de stem van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1468, '41', 'et-EE', 'Väljenda seda sisu uuesti:\n\n ##description## teise hääle ja stiili, et pöörduda erinevate lugejate \n\n Kasuta sõnu ##keywords## \n\n \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1469, '41', 'fi-FI', 'Korjaa tämä sisältö:\n\n ##description## Eri ääni ja tyyli valittaa eri lukijoille \n\n Käyttämällä tätä avainsanaa ##keywords## \n\n \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1470, '41', 'fr-FR', 'Rephrase ce contenu:\n\n ##description## D\'une voix et d\'un style différents pour faire appel à différents lecteurs \n\n Utilisation de ces mots clés ##keywords## \n\n \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1471, '41', 'de-DE', 'Umschreibung dieses Inhalts:\n\n ##description## in einer anderen Stimme und einem anderen Stil, um an verschiedene Leser zu appellieren \n\n Verwendung dieser Schlüsselwörter ##keywords## \n\n \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1472, '41', 'el-GR', 'Αναδιατύπωση αυτού του περιεχομένου.:\n\n ##description## με διαφορετική φωνή και στυλ να απευθυνόταν σε διαφορετικούς αναγνώστες \n\n χρησιμοποιώντας αυτές τις λέξεις-κλειδιά ##keywords## \n\n \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1473, '41', 'he-IL', 'משפט חוזר של תוכן זה:\n\n ##description## בקול וסגנון שונים כדי לפנות לקוראים שונים. \n\n שימוש במילות מפתח אלה ##keywords## \n\n \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1474, '41', 'hi-IN', 'इस सामग्री को पुनः वाक्यांश करें:\n\n ##description## विभिन्न पाठकों से अपील करने के लिए एक अलग आवाज और शैली में \n\n इस कीवर्ड का उपयोग कर ##keywords## \n\n \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1475, '41', 'hu-HU', 'A tartalom javítása:\n\n ##description## Eltérő hangon és stílusban a különböző olvasók számára \n\n E kulcsszavak használata ##keywords## \n\n \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1476, '41', 'is-IS', 'Umorðaðu þetta efni:\n\n ##description## í annarri rödd og stíl til að höfða til ólíkra lesenda \n\n nota þessi leitarorð ##keywords## \n\n \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1477, '41', 'id-ID', 'Ulangi konten ini:\n\n ##description## dengan suara dan gaya yang berbeda untuk menarik pembaca yang berbeda \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1478, '41', 'it-IT', 'Riformula questo contenuto:\n\n ##description## con una voce e uno stile diversi per attrarre lettori diversi \n\n utilizzando queste parole chiave ##keywords## \n\n \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1479, '41', 'ja-JP', 'この内容を言い換える:\n\n ##description## さまざまな読者にアピールするために、さまざまな声とスタイルで \n\n このキーワードを使って ##keywords## \n\n \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1480, '41', 'ko-KR', '이 콘텐츠를 다른 말로 표현:\n\n ##description## 다른 독자들에게 어필하기 위해 다른 목소리와 스타일로 \n\n 이 키워드를 사용하여 ##keywords## \n\n \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1481, '41', 'ms-MY', 'Ungkapkan semula kandungan ini:\n\n ##description## dengan suara dan gaya yang berbeza untuk menarik minat pembaca yang berbeza \n\n menggunakan kata kunci ini ##keywords## \n\n \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1482, '41', 'nb-NO', 'Omformuler dette innholdet:\n\n ##description## i en annen stemme og stil for å appellere til forskjellige lesere \n\n ved å bruke disse søkeordene ##keywords## \n\n \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1483, '41', 'pl-PL', 'Przeformułuj tę treść:\n\n ##description## innym głosem i stylem, aby przemawiać do różnych czytelników \n\n używając tych słów kluczowych ##keywords## \n\n \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1484, '41', 'pt-PT', 'Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1485, '41', 'ru-RU', 'Перефразируйте этот контент:\n\n ##description## в другом голосе и стиле, чтобы обратиться к разным читателям \n\n используя эти ключевые слова ##keywords## \n\n \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1486, '41', 'es-ES', 'Reformular este contenido:\n\n ##description## en una voz y estilo diferente para atraer a diferentes lectores \n\n usando estas palabras clave ##keywords## \n\n \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1487, '41', 'sv-SE', 'Omformulera detta innehåll:\n\n ##description## med en annan röst och stil för att tilltala olika läsare \n\n använder dessa nyckelord ##keywords## \n\n \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1488, '41', 'tr-TR', 'Bu içeriği yeniden ifade et:\n\n ##description## farklı okuyuculara hitap etmek için farklı bir ses ve tarzda \n\n bu anahtar kelimeleri kullanarak ##keywords## \n\n \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1489, '41', 'pt-BR', 'Reformule este conteúdo:\n\n ##description## em uma voz e estilo diferentes para atrair diferentes leitores \n\n usando essas palavras-chave ##keywords## \n\n \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1490, '41', 'ro-RO', 'Reformulați acest conținut:\n\n ##description## într-o voce și stil diferit pentru a atrage diferiți cititori \n\n folosind aceste cuvinte cheie ##keywords## \n\n \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1491, '41', 'vi-VN', 'Viết lại nội dung này:\n\n ##description## bằng một giọng điệu và phong cách khác để thu hút những độc giả khác nhau \n\n sử dụng từ khóa này ##keywords## \n\n \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1492, '41', 'sw-KE', 'Andika upya maudhui haya:\n\n ##description## kwa sauti na mtindo tofauti ili kuwavutia wasomaji mbalimbali \n\n kwa kutumia maneno haya ##keywords## \n\n \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1493, '41', 'sl-SI', 'Preoblikujte to vsebino:\n\n ##description## z drugačnim glasom in slogom, da pritegne različne bralce \n\n z uporabo teh ključnih besed ##keywords## \n\n \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1494, '41', 'th-TH', 'ใช้ถ้อยคำเนื้อหานี้ใหม่:\n\n ##description## ด้วยเสียงและสไตล์ที่แตกต่างเพื่อดึงดูดผู้อ่านที่แตกต่างกัน \n\n โดยใช้คีย์เวิร์ดนี้ ##keywords## \n\n \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1495, '41', 'uk-UA', 'Перефразуйте цей зміст:\n\n ##description## іншим голосом і стилем, щоб звернутися до різних читачів \n\n використовуючи ці ключові слова ##keywords## \n\n \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1496, '41', 'lt-LT', 'Perfrazuokite šį turinį:\n\n ##description## kitu balsu ir stiliumi, kad patiktų skirtingiems skaitytojams \n\n naudojant šiuos raktinius žodžius ##keywords## \n\n \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1497, '41', 'bg-BG', 'Перифразирайте това съдържание :\n\n ##description## с различен глас и стил, за да се хареса на различни читатели \n\n използвайки тези ключови думи ##keywords## \n\n \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1498, '42', 'en-US', 'Improve and extend this content:\\n\\n ##description## \\n\\n Use following keywords in the content:\\n ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1499, '42', 'ar-AE', 'تحسين وتوسيع هذه المحتويات:\\n\\n ##description## \\n\\n استخدام الكلمات المرشدة التالية في المحتويات:\\n ##keywords## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1500, '42', 'cmn-CN', '改进和扩展此内容:\\n\\n ##description## \\n\\n 在内容中使用以下关键字:\\n ##keywords## \\n\\n T结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1501, '42', 'hr-HR', 'Poboljsi i produži ovaj sadržaj:\\n\\n ##description## \\n\\n Koristite sljedeće ključne riječi u sadržaju:\\n ##keywords## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1502, '42', 'cs-CZ', 'Vylepšit a rozšířit tento obsah:\\n\\n ##description## \\n\\n UPoužít následující klíčová slova v obsahu:\\n ##keywords## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1503, '42', 'da-DK', 'Forbedre og udvid dette indhold:\\n\\n ##description## \\n\\n Brug følgende nøgleord i indholdet:\\n ##keywords## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1504, '42', 'nl-NL', 'Deze content verbeteren en uitbreiden:\\n\\n ##description## \\n\\n Gebruik de volgende sleutelwoorden in de inhoud:\\n ##keywords## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1505, '42', 'et-EE', 'Parandada ja laiendada seda sisu:\\n\\n ##description## \\n\\n Kasuta järgmisi võtmesõnu:\\n ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1506, '42', 'fi-FI', 'Tämän sisällön parantaminen ja laajentaminen:\\n\\n ##description## \\n\\n Käytä sisällön avainsanoja:\\n ##keywords## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1507, '42', 'fr-FR', 'Améliorer et étendre ce contenu:\\n\\n ##description## \\n\\n Utiliser les mots clés suivants dans le contenu:\\n ##keywords## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1508, '42', 'de-DE', 'Diese Inhalte verbessern und erweitern:\\n\\n ##description## \\n\\n Verwenden Sie die folgenden Schlüsselwörter im Inhalt:\\n ##keywords## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1509, '42', 'el-GR', 'Βελτίωση και επέκταση αυτού του περιεχομένου.:\\n\\n ##description## \\n\\n Χρήση ακόλουθων λέξεων-κλειδιών στο περιεχόμενο:\\n ##keywords## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1510, '42', 'he-IL', 'שיפור ולהרחיב תוכן זה:\\n\\n ##description## \\n\\n שימוש במילות המפתח שלהלן בתוכן:\\n ##keywords## \\n\\n Tone של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1511, '42', 'hi-IN', 'इस सामग्री को सुधारता और विस्तार करें:\\n\\n ##description## \\n\\n सामग्री में निम्नलिखित कीवर्ड का प्रयोग करें:\\n ##keywords## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1512, '42', 'hu-HU', 'A tartalom javítása és kiterjesztése:\\n\\n ##description## \\n\\n Használja a következő kulcsszavakat a tartalomban:\\n ##keywords## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1513, '42', 'is-IS', 'Bættu og stækkuðu þetta efni:\\n\\n ##description## \\n\\n Notaðu eftirfarandi leitarorð í innihaldinu:\\n ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1514, '42', 'id-ID', 'Meningkatkan dan memperluas konten ini:\\n\\n ##description## \\n\\n Gunakan kata kunci berikut dalam isi:\\n ##keywords## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1515, '42', 'it-IT', 'Migliorare ed estendere questo contenuto:\\n\\n ##description## \\n\\n Utilizzare le seguenti parole chiave nel contenuto:\\n ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1516, '42', 'ja-JP', 'このコンテンツの改善と拡張:\\n\\n ##description## \\n\\n コンテンツ内の以下のキーワードを使用:\\n ##keywords## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1517, '42', 'ko-KR', '이 컨텐츠 향상 및 확장:\\n\\n ##description## \\n\\n 컨텐츠에서 다음 키워드 사용:\\n ##keywords## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1518, '42', 'ms-MY', 'Tingkatkan dan lanjutkan kandungan ini:\\n\\n ##description## \\n\\n Guna kata kekunci berikut dalam kandungan:\\n ##keywords## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1519, '42', 'nb-NO', 'Forbedre og utvide dette innholdet:\\n\\n ##description## \\n\\n Bruk følgende nøkkelord i innholdet:\\n ##keywords## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1520, '42', 'pl-PL', 'Ulepszanie i rozszerzanie tej treści:\\n\\n ##description## \\n\\n Użyj następujących słów kluczowych w treści:\\n ##keywords## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1521, '42', 'pt-PT', 'Melhorar e alargar este conteúdo:\\n\\n ##description## \\n\\n Utilizar as seguintes palavras-chave no conteúdo:\\n ##keywords## \\n\\n Tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1522, '42', 'ru-RU', 'Улучшить и расширить это содержимое:\\n\\n ##description## \\n\\n Использовать следующие ключевые слова в содержимом:\\n ##keywords## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1523, '42', 'es-ES', 'Mejorar y ampliar este contenido:\\n\\n ##description## \\n\\n Utilizar las palabras clave siguientes en el contenido:\\n ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1524, '42', 'sv-SE', 'Förbättra och utöka innehållet:\\n\\n ##description## \\n\\n Använd följande nyckelord i innehållet:\\n ##keywords## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1525, '42', 'tr-TR', 'Bu içeriği iyileştirin ve genişletin:\\n\\n ##description## \\n\\n İçerikte aşağıdaki anahtar sözcükleri kullan:\\n ##keywords## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1526, '42', 'pt-BR', 'Aprimore e amplie esse conteúdo:\\n\\n ##description## \\n\\n Use as seguintes palavras-chave no conteúdo:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1527, '42', 'ro-RO', 'Îmbunătățirea și extinderea acestui conținut:\\n\\n ##description## \\n\\n Utilizați următoarele cuvinte cheie în conținut:\\n ##keywords## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1528, '42', 'vi-VN', 'Cải thiện và mở rộng nội dung này:\\n\\n ##description## \\n\\n Sử dụng sau tư ̀ khóa trong nội dung:\\n ##keywords## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1529, '42', 'sw-KE', 'Boresha na upanue maudhui haya:\\n\\n ##description## \\n\\n Tumia maneno muhimu yafuatayo katika yaliyomo:\\n ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1530, '42', 'sl-SI', 'Izboljjte in razširite to vsebino:\\n\\n ##description## \\n\\n Uporabi naslednje ključne besede v vsebini:\\n ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1531, '42', 'th-TH', 'ปรับปรุงและขยายเนื้อหานี้:\\n\\n ##description## \\n\\n ใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\\n ##keywords## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1532, '42', 'uk-UA', 'Покращення і розширення вмісту:\\n\\n ##description## \\n\\n Використовувати наступні ключові слова у зміні:\\n ##keywords## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1533, '42', 'lt-LT', 'Pagerinti ir išplėsti šį turinį:\\n\\n ##description## \\n\\n Naudoti pagal raktažodžius turinį:\\n ##keywords## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1534, '42', 'bg-BG', 'Подобряване и разширяване на това съдържание:\\n\\n ##description## \\n\\n Използване на следните ключови думи в съдържанието:\\n ##keywords## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1535, '43', 'en-US', 'Summarize this text in a short concise way:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1536, '43', 'ar-AE', 'قم بتلخيص هذا النص بطريقة مختصرة قصيرة:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1537, '43', 'cmn-CN', '以簡短的方式彙總此文字:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1538, '43', 'hr-HR', 'Sumiraj ovaj tekst na kratki koncizni način:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1539, '43', 'cs-CZ', 'Shrňte tento text stručným výstižným způsobem:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1540, '6', 'da-DK', 'Opsummér teksten på kort koncis måde:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1541, '43', 'nl-NL', 'Een korte samenvatting van deze tekst samenvatten:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1542, '43', 'et-EE', 'Selle teksti kokkuvõtlik lühikokkuvõte:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1543, '43', 'fi-FI', 'Tiivistä tämä teksti lyhyesti lyhyesti:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1544, '43', 'fr-FR', 'Résumez ce texte de manière concise et concise:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1545, '43', 'de-DE', 'Fassen Sie diesen Text kurz zusammen.:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1546, '43', 'el-GR', 'Συνοπτική παρουσίαση αυτού του κειμένου με συνοπτικές συνοπτικές:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1547, '43', 'he-IL', 'סיכום התמליל באופן תמציתי קצר.:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1548, '43', 'hi-IN', 'संक्षिप्त सारांश में इस पाठ को सारांशित करें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1549, '43', 'hu-HU', 'Összegezze ezt a szöveget rövid tömör formában:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1550, '43', 'is-IS', 'Dragðu saman þennan texta á stuttan hnitmiðaðan hátt:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1551, '43', 'id-ID', 'Ikhtisar teks ini dengan cara ringkas singkat:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1552, '43', 'it-IT', 'Riepiloga questo testo in modo conciso breve:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1553, '43', 'ja-JP', '簡潔な簡潔な方法でこのテキストを要約する:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1554, '43', 'ko-KR', '짧은 간결한 방식으로 이 텍스트 요약:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1555, '43', 'ms-MY', 'Panggil teks ini dalam cara concise pendek:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1556, '43', 'nb-NO', 'Oppsummer denne teksten på en kort og konsist måte:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1557, '43', 'pl-PL', 'Podsumuj ten tekst w krótkim zwięzonym sposobie:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1558, '43', 'pt-PT', 'Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1559, '43', 'ru-RU', 'Обобщить этот текст кратким кратким способом:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1560, '43', 'es-ES', 'Resumir este texto de una manera breve y concisa:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1561, '43', 'sv-SE', 'Sammanfatta den här texten på kort koncist sätt:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1562, '43', 'tr-TR', 'Bu metni kısa kısa bir kısa yolla özetle:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1563, '43', 'pt-BR', 'Resumir este texto de uma forma concisa curta:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1564, '43', 'ro-RO', 'Rezumă acest text într-un mod concis scurt:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1565, '43', 'vi-VN', 'Tóm tắt văn bản này một cách ngắn gọn:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1566, '43', 'sw-KE', 'Fupisha maandishi haya kwa njia fupi fupi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1567, '43', 'sl-SI', 'Seštej to besedilo na kratko kratko:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1568, '43', 'th-TH', 'สรุปข้อความนี้ในวิธีที่สั้นกระชับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1569, '43', 'uk-UA', 'Підсумовувати цей текст коротким шляхом:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1570, '43', 'lt-LT', 'Apibendrinkite šį tekstą trumpai glaustai:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1571, '43', 'bg-BG', 'Обобщи този текст по кратък кратък начин:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1572, '44', 'en-US', 'Write a detailed answer for Quora of this question:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1573, '44', 'ar-AE', 'ككتابة جواب مفصل عن Quora من هذا السؤال:\n\n ##title## \n\nاستخدم هذه المحتويات لمزيد من المعلومات:\n ##description## \n\n نبرة صوت الإجابة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1574, '44', 'cmn-CN', '為 Quora 撰寫詳細的答案:\n\n ##title## \n\n使用此內容以取得相關資訊:\n ##description## \n\n 答案的聲音一定是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1575, '44', 'hr-HR', 'Napišite detaljan odgovor za Quora od ovog pitanja:\n\n ##title## \n\nKoristite ovaj sadržaj za više informacija:\n ##description## \n\n Ton glasa od odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1576, '44', 'cs-CZ', 'Napište podrobnou odpověď pro Quora této otázky:\n\n ##title## \n\nPoužijte tento obsah pro další informace:\n ##description## \n\n Tón hlasu odpovědi musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1577, '44', 'da-DK', 'Skriv et detaljeret svar for Quora af dette spørgsmål:\n\n ##title## \n\nBrug dette indhold til flere oplysninger:\n ##description## \n\n Tonen i svaret skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1578, '44', 'nl-NL', 'Schrijf een gedetailleerd antwoord voor Quora van deze vraag:\n\n ##title## \n\nDeze content gebruiken voor meer informatie:\n ##description## \n\n Toon van de stem van het antwoord moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1579, '44', 'et-EE', 'Selle küsimuse Quora-i üksikasjaliku vastuse kirjutamine:\n\n ##title## \n\nKasutage seda infosisu rohkem:\n ##description## \n\n Vastuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1580, '44', 'fi-FI', 'Kirjoita yksityiskohtainen vastaus Quora tämän kysymyksen:\n\n ##title## \n\nKäytä tätä sisältöä lisätietoja varten:\n ##description## \n\n Vastauksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1581, '44', 'fr-FR', 'Rédiger une réponse détaillée pour Quora de cette question:\n\n ##title## \n\nUtiliser ce contenu pour plus d\'informations:\n ##description## \n\n Tone de la voix de la réponse doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1582, '44', 'de-DE', 'Schreiben Sie eine ausführliche Antwort für Quora von dieser Frage:\n\n ##title## \n\nVerwenden Sie diesen Inhalt für weitere Informationen.:\n ##description## \n\n Ton der Stimme der Antwort muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1583, '44', 'el-GR', 'Γράψτε μια αναλυτική απάντηση για την Quora αυτής της ερώτησης:\n\n ##title## \n\nΧρήση αυτού του περιεχομένου για περισσότερες πληροφορίες:\n ##description## \n\n Ο τόνος της φωνής της απάντησης πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1584, '44', 'he-IL', 'כתיבת תשובה מפורטת עבור Quora של שאלה זו:\n\n ##title## \n\nשימוש בתוכן זה לקבלת מידע נוסף:\n ##description## \n\n נימת הקול של התשובה חייבת להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1585, '44', 'hi-IN', 'इस प्रश्न के Quora के लिए एक विस्तृत उत्तर लिखें:\n\n ##title## \n\nअधिक जानकारी के लिए इस सामग्री का उपयोग करें:\n ##description## \n\n जवाब की आवाज का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1586, '44', 'hu-HU', 'Részletes válasz írása Quora Ebből a kérdésről:\n\n ##title## \n\nUse this content for more information:\n ##description## \n\n Tone of voice of the answer must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1587, '44', 'is-IS', 'Skrifaðu ítarlegt svar fyrir Quora við þessari spurningu:\n\n ##title## \n\nNotaðu þetta efni til að fá frekari upplýsingar:\n ##description## \n\n Rödd svarsins verður be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1588, '44', 'id-ID', 'Tulis jawaban rinci untuk Quora pertanyaan ini:\n\n ##title## \n\nGunakan konten ini untuk informasi lebih lanjut:\n ##description## \n\n Nada suara harus dijawab.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1589, '44', 'it-IT', 'Scrivi una risposta dettagliata per Quora di questa domanda:\n\n ##title## \n\nUsa questo contenuto per ulteriori informazioni:\n ##description## \n\n Il tono di voce della risposta deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1590, '44', 'ja-JP', 'この質問の Quora の詳細な回答を書き込む:\n\n ##title## \n\n詳しくは、このコンテンツを使用してください:\n ##description## \n\n 解答の声のトーンは:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1591, '44', 'ko-KR', '이 질문의 Quora에 대한 자세한 응답 작성:\n\n ##title## \n\n자세한 정보는 이 컨텐츠를 사용하십시오.:\n ##description## \n\n 대답의 음성은 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1592, '44', 'ms-MY', 'Tulis jawapan terperinci untuk Quora soalan ini:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1593, '44', 'nb-NO', 'Skriv et detaljert svar for Quora på dette spørsmålet:\n\n ##title## \n\nGuna kandungan ini untuk maklumat lanjut:\n ##description## \n\n Nada suara jawabannya mesti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1594, '44', 'pl-PL', 'Napisz szczegółową odpowiedź dla Quora o to pytanie:\n\n ##title## \n\nUżyj tej treści, aby uzyskać więcej informacji:\n ##description## \n\n Ton głosu odpowiedzi musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1595, '44', 'pt-PT', 'Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1596, '44', 'ru-RU', 'Написать подробный ответ для Quora данного вопроса:\n\n ##title## \n\nИспользуйте этот контент для получения дополнительной информации:\n ##description## \n\n Тон голоса должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1597, '44', 'es-ES', 'Escriba una respuesta detallada para Quora de esta pregunta:\n\n ##title## \n\nUtilice este contenido para obtener más información:\n ##description## \n\n El tono de voz de la respuesta debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1598, '44', 'sv-SE', 'Skriv ett detaljerat svar på Quora av denna fråga:\n\n ##title## \n\nAnvänd det här innehållet för mer information:\n ##description## \n\n Tone of voice of the svar must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1599, '44', 'tr-TR', 'Bu sorunun Quora için ayrıntılı bir yanıt yazın:\n\n ##title## \n\nDaha fazla bilgi için bu içeriği kullanın:\n ##description## \n\n Cevabından ses tonunun sesi olmalı.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1600, '44', 'pt-BR', 'Escreva uma resposta detalhada para Quora desta pergunta:\n\n ##title## \n\nUse este conteúdo para mais informações:\n ##description## \n\n Tom de voz da resposta deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1601, '44', 'ro-RO', 'Utilizați acest conținut pentru mai multe informații:\n\n ##title## \n\nUtilizați acest conținut pentru mai multe informații:\n ##description## \n\n Tonul vocii răspunsului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1602, '44', 'vi-VN', 'Viết một câu trả lời chi tiết cho Quora của câu hỏi này:\n\n ##title## \n\nDùng nội dung này để biết thêm thông tin:\n ##description## \n\n Giọng nói của câu trả lời phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1603, '44', 'sw-KE', 'Andika jibu la kina kwa Quora la swali hili:\n\n ##title## \n\nUtazama yaliyomo kwa habari zaidi:\n ##description## \n\n Toni ya sauti ya jibu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1604, '44', 'sl-SI', 'Napišite podroben odgovor na vprašanje Quora o tem vprašanju:\n\n ##title## \n\nZa več informacij uporabite to vsebino:\n ##description## \n\n Ton glasu odgovora mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1605, '44', 'th-TH', 'เขียนคำตอบโดยละเอียดสำหรับ Quora ของคำถามนี้:\n\n ##title## \n\nใช้เนื้อหานี้เพื่อดูข้อมูลเพิ่มเติม:\\และ \n ##description## \n\n น้ำเสียงของคำตอบต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1606, '44', 'uk-UA', 'Напишіть розгорнуту відповідь для Quora на це питання:\n\n ##title## \n\nВикористовуйте цей вміст для отримання додаткової інформації:\n ##description## \n\n Тон відповіді повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1607, '44', 'lt-LT', 'Parašykite išsamų atsakymą į šį klausimą Quora:\n\n ##title## \n\nNorėdami gauti daugiau informacijos, naudokite šį turinį:\n ##description## \n\n Turi būti atsakymo balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1608, '44', 'bg-BG', 'Напишете подробен отговор за Quora на този въпрос:\n\n ##title## \n\nИзползвайте това съдържание за повече информация:\n ##description## \n\n Тонът на гласа на отговора трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1609, '45', 'en-US', 'Write a detailed answer with bullet points:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1610, '45', 'ar-AE', 'اكتب إجابة مفصلة بالنقاط :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1611, '45', 'cmn-CN', '用要點寫一個詳細的答案:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1612, '45', 'hr-HR', 'Napišite detaljan odgovor s točkama:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1613, '45', 'cs-CZ', 'Napište podrobnou odpověď s odrážkami:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:44', '2026-04-27 14:42:44'), (1614, '45', 'da-DK', 'Skriv et detaljeret svar med punktopstillinger:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1615, '45', 'nl-NL', 'Schrijf een gedetailleerd antwoord met opsommingstekens:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1616, '45', 'et-EE', 'Kirjutage üksikasjalik vastus täppidega:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1617, '45', 'fi-FI', 'Kirjoita yksityiskohtainen vastaus luettelomerkein:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1618, '45', 'fr-FR', 'Rédigez une réponse détaillée avec une puce points:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1619, '45', 'de-DE', 'Schreiben Sie eine ausführliche Antwort mit Aufzählungszeichen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1620, '45', 'el-GR', 'Γράψτε μια λεπτομερή απάντηση με κουκκίδες:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1621, '45', 'he-IL', 'כתבו תשובה מפורטת עם תבליטים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1622, '45', 'hi-IN', 'बुलेट प्वाइंट्स के साथ विस्तृत उत्तर लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1623, '45', 'hu-HU', 'Írjon részletes választ pontokkal:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1624, '45', 'is-IS', 'Skrifaðu ítarlegt svar með punktum:\n\n ##description## \n\n Rödd í niðurstöðunni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1625, '45', 'id-ID', 'Tulis jawaban terperinci dengan poin-poin:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1626, '45', 'it-IT', 'Scrivi una risposta dettagliata con elenchi puntati:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1627, '45', 'ja-JP', '箇条書きで詳細な回答を書く:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1628, '45', 'ko-KR', '글머리 기호로 자세한 답변을 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1629, '45', 'ms-MY', 'Tulis jawapan terperinci dengan titik peluru:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1630, '45', 'nb-NO', 'Skriv et detaljert svar med punkter:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1631, '45', 'pl-PL', 'Napisz szczegółową odpowiedź z punktorami:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1632, '45', 'pt-PT', 'Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1633, '45', 'ru-RU', 'Напишите подробный ответ с пунктами:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1634, '45', 'es-ES', 'Escriba una respuesta detallada con viñetas:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1635, '45', 'sv-SE', 'Skriv ett utförligt svar med punkter:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1636, '45', 'tr-TR', 'Madde işaretleri ile ayrıntılı bir cevap yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1637, '45', 'pt-BR', 'Escreva uma resposta detalhada com marcadores:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1638, '45', 'ro-RO', 'Scrieți un răspuns detaliat cu puncte:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1639, '45', 'vi-VN', 'Viết một câu trả lời chi tiết với các gạch đầu dòng:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1640, '45', 'sw-KE', 'Andika jibu la kina na vidokezo vya risasi:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1641, '45', 'sl-SI', 'Napišite podroben odgovor z točkami:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1642, '45', 'th-TH', 'เขียนคำตอบโดยละเอียดพร้อมสัญลักษณ์แสดงหัวข้อย่อย:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1643, '45', 'uk-UA', 'Напишіть розгорнуту відповідь, позначивши її маркерами:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1644, '45', 'lt-LT', 'Parašykite išsamų atsakymą su taškais:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1645, '45', 'bg-BG', 'Напишете подробен отговор с точки:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1646, '46', 'en-US', 'What is the meaning of:\n\n ##keyword## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1647, '46', 'ar-AE', 'ما معنى:\n\n ##keyword## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1648, '46', 'cmn-CN', '是什么意思:\n\n ##keyword## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1649, '46', 'hr-HR', 'Što je smisao:\n\n ##keyword## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1650, '46', 'cs-CZ', 'Co znamená:\n\n ##keyword## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1651, '46', 'da-DK', 'Hvad er meningen med:\n\n ##keyword## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1652, '46', 'nl-NL', 'Wat is de betekenis van:\n\n ##keyword## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1653, '46', 'et-EE', 'Mida tähendab:\n\n ##keyword## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1654, '46', 'fi-FI', 'Mikä on tarkoitus:\n\n ##keyword## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1655, '46', 'fr-FR', 'Quel est le sens de:\n\n ##keyword## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1656, '46', 'de-DE', 'Was ist die Bedeutung von:\n\n ##keyword## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1657, '46', 'el-GR', 'Ποια είναι η σημασία του:\n\n ##keyword## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1658, '46', 'he-IL', 'מה המשמעות של:\n\n ##keyword## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1659, '46', 'hi-IN', 'का अर्थ क्या है:\n\n ##keyword## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1660, '46', 'hu-HU', 'Mit jelent az hogy:\n\n ##keyword## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1661, '46', 'is-IS', 'Hvað þýðir:\n\n ##keyword## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1662, '46', 'id-ID', 'Apa arti dari:\n\n ##keyword## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1663, '46', 'it-IT', 'Qual è il significato di:\n\n ##keyword## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1664, '46', 'ja-JP', '意味は次のとおりです:\n\n ##keyword## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1665, '46', 'ko-KR', '다음의 의미는 무엇입니까:\n\n ##keyword## \n\n 결과의 어조는 다음과 같아야 합니다.\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1666, '46', 'ms-MY', 'Apakah maksud:\n\n ##keyword## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1667, '46', 'nb-NO', 'Hva er betydningen av:\n\n ##keyword## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1668, '46', 'pl-PL', 'Jakie jest znaczenie:\n\n ##keyword## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1669, '46', 'pt-PT', 'Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1670, '46', 'ru-RU', 'Каково значение:\n\n ##keyword## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1671, '46', 'es-ES', 'Cuál es el significado de:\n\n ##keyword## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1672, '46', 'sv-SE', 'Vad är meningen med:\n\n ##keyword## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1673, '46', 'tr-TR', 'Anlamı ne:\n\n ##keyword## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1674, '46', 'pt-BR', 'Qual é o significado de:\n\n ##keyword## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1675, '46', 'ro-RO', 'Ce înseamnă:\n\n ##keyword## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1676, '46', 'vi-VN', 'Ý nghĩa của:\n\n ##keyword## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1677, '46', 'sw-KE', 'Nini maana ya:\n\n ##keyword## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1678, '46', 'sl-SI', 'Kaj je pomen:\n\n ##keyword## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1679, '46', 'th-TH', 'ความหมายของ:\n\n ##keyword## \n\n โทนเสียงของผลลัพธ์จะต้อง:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1680, '46', 'uk-UA', 'Яке значення:\n\n ##keyword## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1681, '46', 'lt-LT', 'Ką reiškia:\n\n ##keyword## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1682, '46', 'bg-BG', 'Какво е значението на:\n\n ##keyword## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1683, '47', 'en-US', 'Write a long and detailed answer of:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1684, '47', 'ar-AE', 'كتابة إجابة طويلة ومفصلة عن:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1685, '47', 'cmn-CN', '写长详细的答案:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1686, '47', 'hr-HR', 'Napišite dug i detaljan odgovor:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1687, '47', 'cs-CZ', 'Napište dlouhou a podrobnou odpověď:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1688, '47', 'da-DK', 'Skriv et langt og detaljeret svar på:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1689, '47', 'nl-NL', 'Schrijf een lang en gedetailleerd antwoord van:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1690, '47', 'et-EE', 'Kirjuta pikk ja üksikasjalik vastus:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1691, '47', 'fi-FI', 'Kirjoita pitkä ja yksityiskohtainen vastaus:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1692, '47', 'fr-FR', 'Rédiger une réponse longue et détaillée:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1693, '47', 'de-DE', 'Schreiben Sie eine lange und detaillierte Antwort von:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1694, '47', 'el-GR', 'Γράψτε μια μακρά και λεπτομερή απάντηση.:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1695, '47', 'he-IL', 'כתיבת תשובה ארוכה ומפורטת של:\\n\\n ##description## \\n\\n Tone של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1696, '47', 'hi-IN', 'के एक लंबा और विस्तृत उत्तर लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1697, '47', 'hu-HU', 'Írjon hosszú és részletes választ a:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1698, '47', 'is-IS', 'Skrifaðu langt og ítarlegt svar af:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1699, '47', 'id-ID', 'Tulis jawaban yang panjang dan rinci:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1700, '47', 'it-IT', 'Scrivi una risposta lunga e dettagliata di:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1701, '47', 'ja-JP', 'ロング・アンド・詳細な回答を書き込む:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1702, '47', 'ko-KR', '자세한 내용과 자세한 내용을 작성하십시오.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1703, '47', 'ms-MY', 'Tulis jawapan panjang dan terperinci terperinci:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1704, '47', 'nb-NO', 'Skriv et langt og detaljert svar på:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1705, '47', 'pl-PL', 'Napisz długą i szczegółową odpowiedź:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1706, '47', 'pt-PT', 'Escrever uma resposta longa e pormenorizada sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1707, '47', 'ru-RU', 'Напишите длинный и подробный ответ на:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1708, '47', 'es-ES', 'Escribir una respuesta larga y detallada de:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1709, '47', 'sv-SE', 'Skriv ett långt och detaljerat svar på:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1710, '47', 'tr-TR', 'Uzun ve ayrıntılı bir yanıt yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1711, '47', 'pt-BR', 'Escreva uma resposta longa e detalhada sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1712, '47', 'ro-RO', 'Scrie un răspuns lung și detaliat al:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1713, '47', 'vi-VN', 'Viết câu trả lời dài và chi tiết:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1714, '47', 'sw-KE', 'Andika jibu refu na la kina:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1715, '47', 'sl-SI', 'Napišite dolg in podroben odgovor:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1716, '47', 'th-TH', 'เขียนคำตอบยาวๆและละเอียดของ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1717, '47', 'uk-UA', 'Написати довгу і детальну відповідь:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1718, '47', 'lt-LT', 'Rašykite ilgą ir išsamų atsakymą:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1719, '47', 'bg-BG', 'Напишете дълъг и подробен отговор на:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1720, '48', 'en-US', 'Create 10 engaging questions from this paragraph:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1721, '48', 'ar-AE', 'قم بإنشاء 10 أسئلة جذابة من هذه الفقرة:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1722, '48', 'cmn-CN', '根據本段提出 10 個引人入勝的問題:\n\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1723, '48', 'hr-HR', 'Napravite 10 zanimljivih pitanja iz ovog odlomka:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1724, '48', 'cs-CZ', 'Vytvořte 10 poutavých otázek z tohoto odstavce:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1725, '48', 'da-DK', 'Lav 10 engagerende spørgsmål fra dette afsnit:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1726, '48', 'nl-NL', 'Maak 10 boeiende vragen uit deze paragraaf:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1727, '48', 'et-EE', 'Looge sellest lõigust 10 köitvat küsimust:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1728, '48', 'fi-FI', 'Luo 10 kiinnostavaa kysymystä tästä kappaleesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1729, '48', 'fr-FR', 'Créez 10 questions engageantes à partir de ce paragraphe:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1730, '48', 'de-DE', 'Erstellen Sie aus diesem Absatz 10 spannende Fragen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1731, '48', 'el-GR', 'Δημιουργήστε 10 ενδιαφέρουσες ερωτήσεις από αυτήν την παράγραφο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1732, '48', 'he-IL', 'צור 10 שאלות מרתקות מפסקה זו:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1733, '48', 'hi-IN', 'इस पैराग्राफ से 10 आकर्षक प्रश्न बनाएं:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1734, '48', 'hu-HU', 'Hozz létre 10 megnyerő kérdést ebből a bekezdésből:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1735, '48', 'is-IS', 'Búðu til 10 áhugaverðar spurningar úr þessari málsgrein:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1736, '48', 'id-ID', 'Buat 10 pertanyaan menarik dari paragraf ini:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1737, '48', 'it-IT', 'Crea 10 domande coinvolgenti da questo paragrafo:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1738, '48', 'ja-JP', 'この段落から魅力的な質問を 10 個作成します:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1739, '48', 'ko-KR', '이 단락에서 10개의 매력적인 질문을 만드십시오.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1740, '48', 'ms-MY', 'Cipta 10 soalan yang menarik daripada perenggan ini:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1741, '48', 'nb-NO', 'Lag 10 engasjerende spørsmål fra dette avsnittet:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1742, '48', 'pl-PL', 'Utwórz 10 interesujących pytań z tego akapitu:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1743, '48', 'pt-PT', 'Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1744, '48', 'ru-RU', 'Создайте 10 увлекательных вопросов из этого абзаца:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1745, '48', 'es-ES', 'Crea 10 preguntas atractivas a partir de este párrafo:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1746, '48', 'sv-SE', 'Skapa 10 engagerande frågor från detta stycke:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1747, '48', 'tr-TR', 'Bu paragraftan 10 ilgi çekici soru oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1748, '48', 'pt-BR', 'Crie 10 perguntas envolventes a partir deste parágrafo:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1749, '48', 'ro-RO', 'Creați 10 întrebări captivante din acest paragraf:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1750, '48', 'vi-VN', 'Tạo 10 câu hỏi hấp dẫn từ đoạn văn này:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1751, '48', 'sw-KE', 'Unda maswali 10 ya kuvutia kutoka kwa aya hii:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1752, '48', 'sl-SI', 'Ustvarite 10 privlačnih vprašanj iz tega odstavka:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1753, '48', 'th-TH', 'สร้างคำถามที่น่าสนใจ 10 ข้อจากย่อหน้านี้:\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1754, '48', 'uk-UA', 'Створіть 10 цікавих запитань із цього абзацу:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1755, '48', 'lt-LT', 'Sukurkite 10 patrauklių klausimų iš šios pastraipos:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1756, '48', 'bg-BG', 'Създайте 10 ангажиращи въпроса от този параграф:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1757, '49', 'en-US', 'Convert this passive voice sentence into active voice:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1758, '49', 'ar-AE', 'تحويل هذه الجملة الصوتية السلبية الى صوت فعال:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1759, '49', 'cmn-CN', '将此被动语音语句转换为活动语音:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1760, '49', 'hr-HR', 'Pretvori ovu pasivnu glasovnu rečenicu u aktivni glas:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1761, '49', 'cs-CZ', 'Převést tuto pasivní hlasovou větu do aktivního hlasu:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1762, '49', 'da-DK', 'Konvertér denne passive stemmesætning til aktiv stemme:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1763, '49', 'nl-NL', 'Deze passieve stem omzetten in actieve stem:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1764, '49', 'et-EE', 'Selle passiivse häälelause teisendamine aktiivsesse häälesse:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1765, '49', 'fi-FI', 'Muunna tämä passiivinen ääni aktiiviseksi ääneksi:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1766, '49', 'fr-FR', 'Convertir cette phrase vocale passive en voix active:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1767, '49', 'de-DE', 'Diesen passiven Sprachsatz in aktive Stimme umwandeln:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1768, '49', 'el-GR', 'Μετάτρεψε αυτή την παθητική φωνή σε ενεργή φωνή.:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1769, '49', 'he-IL', 'המרת משפט קול פסיבי לקול פעיל:\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1770, '49', 'hi-IN', 'इस निष्क्रिय आवाज वाक्य को सक्रिय आवाज में बदलें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1771, '49', 'hu-HU', 'A passzív hangmondat átalakítása aktív hanggá:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1772, '49', 'is-IS', 'Umbreyttu þessari óvirku raddsetningu í virka rödd:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1773, '49', 'id-ID', 'Ubah kalimat suara pasif ini menjadi suara aktif:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1774, '49', 'it-IT', 'Convertire questa frase voce passivo in voce attiva:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1775, '49', 'ja-JP', 'この受動音声文をアクティブな音声に変換します:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1776, '49', 'ko-KR', '이 수동 음성 문장을 활성 음성으로 변환합니다.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1777, '49', 'ms-MY', 'Tukar ayat suara pasif ini ke dalam suara aktif:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1778, '49', 'nb-NO', 'Konverter denne passive stemmesetningen inn i aktiv stemme:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1779, '49', 'pl-PL', 'Przekształć ten bierny głos głosowy w aktywny głos:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1780, '49', 'pt-PT', 'Converter esta frase de voz passiva em voz activa:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1781, '49', 'ru-RU', 'Преобразовать этот пассивный голос в активный голос:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1782, '49', 'es-ES', 'Convertir esta frase de voz pasiva en voz activa:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1783, '49', 'sv-SE', 'Konvertera den här passiva röstdomen till aktiv röst:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1784, '49', 'tr-TR', 'Bu pasif sesli cümleyi etkin sese dönüştür:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1785, '49', 'pt-BR', 'Converta essa frase de voz passiva em voz ativa:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1786, '49', 'ro-RO', 'Convertiți această propoziție vocală pasivă în voce activă:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1787, '49', 'vi-VN', 'Chuyển đổi câu thoại bị động này thành giọng nói hoạt động:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1788, '49', 'sw-KE', 'Badilisha sentensi hii ya sauti tulivu kuwa sauti tendaji:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1789, '49', 'sl-SI', 'Pretvori to pasivno glasovno kazen v aktivni glas:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1790, '49', 'th-TH', 'แปลงประโยคเสียงพาสซีฟนี้เป็นเสียงที่แอ็คทีฟ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1791, '49', 'uk-UA', 'Перетворити цей пасивний голосовий речення на активний голос:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1792, '49', 'lt-LT', 'Konvertuoti šį pasyvaus balso sakinį į aktyvų balsą:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1793, '49', 'bg-BG', 'Превръщане на това пасивно изречение в активен глас:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1794, '50', 'en-US', 'Improve and rewrite this content in a smart way:\n\n ##description## \n\nMust use following keywords in the content:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1795, '50', 'ar-AE', 'تحسين واعادة كتابة هذه المحتويات بطريقة ذكية:\n\n ##description## \n\nيجب استخدام الكلمات المرشدة التالية في المحتويات:\n ##keywords## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1796, '50', 'cmn-CN', '以智慧型方式改善並改寫此內容:\n\n ##description## \n\n必須在內容中使用下列關鍵字:\n ##keywords## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1797, '50', 'hr-HR', 'Poboljste i ponovno napišite ovaj sadržaj na pametan način:\n\n ##description## \n\nMora se koristiti sljedeće ključne riječi u sadržaju:\n ##keywords## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1798, '50', 'cs-CZ', 'Vylepšete a přepište tento obsah inteligentním způsobem:\n\n ##description## \n\nMusí používat následující klíčová slova v obsahu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1799, '50', 'da-DK', 'Forbedre og reskriv dette indhold på en smart måde:\n\n ##description## \n\nMSkal bruge følgende nøgleord i indholdet:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1800, '50', 'nl-NL', 'Deze content op een slimme manier verbeteren en herschrijven:\n\n ##description## \n\nMoet gebruik maken van de volgende sleutelwoorden in de inhoud:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1801, '50', 'et-EE', 'Selle sisu parandamine ja ümberkirjutamine arukalt:\n\n ##description## \n\nPeab kasutama järgmisi märksõnu sisu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1802, '50', 'fi-FI', 'Paranna ja kirjoita tämä sisältö uudelleen älykkäällä tavalla:\n\n ##description## \n\nOn käytettävä sisällön avainsanojen jälkeen:\n ##keywords## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1803, '50', 'fr-FR', 'Améliorer et réécrire ce contenu de manière intelligente:\n\n ##description## \n\nDoit utiliser les mots clés suivants dans le contenu:\n ##keywords## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1804, '50', 'de-DE', 'Verbessern und umschreiben Sie diese Inhalte auf intelligente Weise:\n\n ##description## \n\nSie müssen die folgenden Schlüsselwörter im Inhalt verwenden:\n ##keywords## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1805, '50', 'el-GR', 'Βελτίωση και επανεγγραφή αυτού του περιεχομένου με έξυπνο τρόπο:\n\n ##description## \n\nΠρέπει να χρησιμοποιήσετε λέξεις-κλειδιά στο περιεχόμενο.:\n ##keywords## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1806, '50', 'he-IL', 'שיפור ושכתב תוכן זה בדרך חכמה.:\n\n ##description## \n\nיש להשתמש במילות המפתח שלהלן בתוכן:\n ##keywords## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1807, '50', 'hi-IN', 'इस सामग्री को एक स्मार्ट तरीका में सुधार और फिर से लिखना:\n\n ##description## \n\nसामग्री में निम्नलिखित कीशब्दों का प्रयोग करना चाहिए:\n ##keywords## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1808, '50', 'hu-HU', 'Tartalom javítása és újraírása intelligens módon:\n\n ##description## \n\nA következő kulcsszavakat kell használni a tartalomban:\n ##keywords## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1809, '50', 'is-IS', 'Bættu og endurskrifaðu þetta efni á snjallan hátt:\n\n ##description## \n\nVerður að nota eftirfarandi leitarorð í innihaldinu:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1810, '50', 'id-ID', 'Meningkatkan dan menulis ulang konten ini dengan cara yang cerdas:\n\n ##description## \n\nHarus menggunakan kata kunci berikut dalam isi:\n ##keywords## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1811, '50', 'it-IT', 'Migliorare e riscrivere questo contenuto in modo intelligente:\n\n ##description## \n\nDeve utilizzare le seguenti parole chiave nel contenuto:\n ##keywords## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1812, '50', 'ja-JP', 'このコンテンツをスマートな方法で改善して再書き込みする:\n\n ##description## \n\nコンテンツ内の以下のキーワードを使用する必要:\n ##keywords## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1813, '50', 'ko-KR', '스마트한 방식으로 이 컨텐츠를 개선하고 다시 작성합니다.:\n\n ##description## \n\n컨텐츠에서 다음 키워드를 사용해야 합니다.:\n ##keywords## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1814, '50', 'ms-MY', 'Tingkatkan dan tulis semula kandungan ini dalam cara pintar:\n\n ##description## \n\nMesti gunakan perkataan kekunci berikut dalam kandungan:\n ##keywords## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1815, '50', 'nb-NO', 'Forbedre og omskriv dette innholdet på en smart måte:\n\n ##description## \n\nMå bruke følgende nøkkelord i innholdet:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1816, '50', 'pl-PL', 'Ulepszanie i przepisanie tej treści w inteligentny sposób:\n\n ##description## \n\nW treści muszą być używane następujące słowa kluczowe::\n ##keywords## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1817, '50', 'pt-PT', 'Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1818, '50', 'ru-RU', 'Улучшить и переписать это содержимое в смарт-пути:\n\n ##description## \n\nНеобходимо использовать следующие ключевые слова в содержимом:\n ##keywords## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1819, '50', 'es-ES', 'Mejorar y reescribir este contenido de forma inteligente:\n\n ##description## \n\nDebe utilizar las palabras clave siguientes en el contenido:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1820, '50', 'sv-SE', 'Förbättra och skriva om det här innehållet på ett smart sätt:\n\n ##description## \n\nMåste använda följande nyckelord i innehållet:\n ##keywords## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1821, '50', 'tr-TR', 'Bu içeriği geliştirin ve akıllı bir şekilde yeniden yazın.:\n\n ##description## \n\nİçerikte aşağıdaki anahtar sözcükleri kullanmak gerekir::\n ##keywords## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1822, '50', 'pt-BR', 'Melhore e reescreva este conteúdo de forma inteligente:\n\n ##description## \n\nDeve usar seguindo palavras-chave no conteúdo:\n ##keywords## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1823, '50', 'ro-RO', 'Îmbunătățiți și rescrieți acest conținut într-un mod inteligent:\n\n ##description## \n\nTrebuie să utilizeze următoarele cuvinte cheie în conținut:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1824, '50', 'vi-VN', 'Cải thiện và viết lại nội dung này theo cách thông minh:\n\n ##description## \n\nPhải dùng sau tư ̀ khóa trong nội dung:\n ##keywords## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1825, '50', 'sw-KE', 'Boresha na uandike upya maudhui haya kwa njia nzuri:\n\n ##description## \n\nLazima utumie manenomsingi yafuatayo katika maudhui:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1826, '50', 'sl-SI', 'Izboljšite in znova napišite to vsebino na pameten način:\n\n ##description## \n\nUporabiti morate naslednje ključne besede v vsebini:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1827, '50', 'th-TH', 'ปรับปรุงและเขียนเนื้อหานี้ใหม่ในวิธีที่ฉลาด:\n\n ##description## \n\nต้องใช้คีย์เวิร์ดต่อไปนี้ในเนื้อหา:\n ##keywords## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1828, '50', 'uk-UA', 'Покращення і переписати цей вміст у розумний спосіб:\n\n ##description## \n\nМає використовувати наступні ключові слова у зміні:\n ##keywords## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1829, '50', 'lt-LT', 'Pagerinti ir perrašyti šį turinį protingu būdu:\n\n ##description## \n\nTuri naudoti šiuos raktažodžius turinio:\n ##keywords## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1830, '50', 'bg-BG', 'Подобрете и презапишете това съдържание по умен начин:\n\n ##description## \n\nТрябва да използвате следните ключови думи в съдържанието:\n ##keywords## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1831, '51', 'en-US', 'please check grammar mistakes in this:\n\n ##description## and correct it', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1832, '51', 'ar-AE', 'يرجى التحقق من الأخطاء النحوية في هذا:\n\n ##description## وتصحيحه', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1833, '51', 'cmn-CN', '請檢查這裡的語法錯誤:\n\n ##description## 並改正', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1834, '51', 'hr-HR', 'molimo provjerite gramatičke pogreške u ovome:\n\n ##description## i ispraviti ga', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1835, '51', 'cs-CZ', 'zkontrolujte prosím gramatické chyby v tomto:\n\n ##description## a opravit to', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1836, '51', 'da-DK', 'tjek venligst grammatikfejl i dette:\n\n ##description## og rette det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1837, '51', 'nl-NL', 'controleer de grammaticafouten hierin:\n\n ##description## en corrigeer het', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1838, '51', 'et-EE', 'palun kontrolli selles grammatikavigu:\n\n ##description## ja parandage see', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1839, '51', 'fi-FI', 'tarkista kielioppivirheet tässä:\n\n ##description## ja korjaa se', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1840, '51', 'fr-FR', 's\'il vous plaît vérifier les erreurs de grammaire dans ce:\n\n ##description## et corrigez-le', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1841, '51', 'de-DE', 'Bitte überprüfen Sie hier die Grammatikfehler:\n\n ##description##und korrigieren Sie es', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1842, '51', 'el-GR', 'ελέγξτε τα γραμματικά λάθη σε αυτό:\n\n ##description## και διορθώστε το', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1843, '51', 'he-IL', 'אנא בדוק את טעויות הדקדוק בזה:\n\n ##description## ולתקן את זה', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1844, '51', 'hi-IN', 'कृपया इसमें व्याकरण की गलतियों की जांच करें:\n\n ##description## और इसे ठीक करें', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1845, '51', 'hu-HU', 'Kérjük, ellenőrizze a nyelvtani hibákat ebben:\n\n ##description## és javítsa ki', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1846, '51', 'is-IS', 'vinsamlegast athugaðu málfræðivillur í þessu:\n\n ##description## og leiðrétta það', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1847, '51', 'id-ID', 'silakan periksa kesalahan tata bahasa dalam hal ini:\n\n ##description## dan memperbaikinya', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1848, '51', 'it-IT', 'per favore controlla gli errori grammaticali in questo:\n\n ##description## e correggilo', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1849, '51', 'ja-JP', 'この文法の間違いを確認してください:\n\n ##description## そしてそれを修正してください', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1850, '51', 'ko-KR', '이것에서 문법 오류를 확인하십시오:\n\n ##description## 수정하고', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1851, '51', 'ms-MY', 'sila semak kesalahan tatabahasa dalam ini:\n\n ##description## dan betulkan', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1852, '51', 'nb-NO', 'Vennligst sjekk grammatikkfeil i dette:\n\n ##description## og korrigere det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1853, '51', 'pl-PL', 'proszę sprawdzić błędy gramatyczne w tym:\n\n ##description## i popraw to', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1854, '51', 'pt-PT', 'por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1855, '51', 'ru-RU', 'пожалуйста, проверьте грамматические ошибки в этом:\n\n ##description## и исправить это', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1856, '51', 'es-ES', 'por favor revise los errores gramaticales en este:\n\n ##description## y corregirlo', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1857, '51', 'sv-SE', 'kontrollera grammatikfel i detta:\n\n ##description## och rätta till det', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1858, '51', 'tr-TR', 'lütfen buradaki gramer hatalarını kontrol edin:\n\n ##description## ve düzelt', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1859, '51', 'pt-BR', 'por favor, verifique os erros gramaticais neste:\n\n ##description## e corrija', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1860, '51', 'ro-RO', 'Vă rugăm să verificați greșelile gramaticale din aceasta:\n\n ##description## si corecteaza-l', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1861, '51', 'vi-VN', 'vui lòng kiểm tra lỗi ngữ pháp trong này:\n\n ##description## và sửa nó', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1862, '51', 'sw-KE', 'tafadhali angalia makosa ya sarufi katika hili:\n\n ##description## na kusahihisha', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1863, '51', 'sl-SI', 'prosim preverite slovnične napake v tem:\n\n ##description## in ga popravi', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1864, '51', 'th-TH', 'โปรดตรวจสอบข้อผิดพลาดทางไวยากรณ์ในเรื่องนี้:\n\n ##description## และแก้ไขให้ถูกต้อง', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1865, '51', 'uk-UA', 'будь ласка, перевірте граматичні помилки в цьому:\n\n ##description## і виправте це', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1866, '51', 'lt-LT', 'patikrinkite gramatikos klaidas:\n\n ##description## ir pataisyti', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1867, '51', 'bg-BG', 'моля, проверете граматическите грешки в това:\n\n ##description## и го коригирайте', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1868, '52', 'en-US', 'Write a vision that attracts the right people and customers. \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\nTone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1869, '52', 'ar-AE', 'اكتب رؤية تجذب الأشخاص والعملاء المناسبين.\n\n اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\nيجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1870, '52', 'cmn-CN', '寫下吸引合適的人和客戶的願景。 \n\n公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1871, '52', 'hr-HR', 'Napišite viziju koja privlači prave ljude i kupce. \n\nNaziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\nTon glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1872, '52', 'cs-CZ', 'Napište vizi, která přiláká ty správné lidi a zákazníky. \n\nJméno společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\nTón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1873, '52', 'da-DK', 'Skriv en vision, der tiltrækker de rigtige mennesker og kunder. \n\nfirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\nTone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1874, '52', 'nl-NL', 'Schrijf een visie die de juiste mensen en klanten aantrekt. \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\nDe tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1875, '52', 'et-EE', 'Kirjutage visioon, mis meelitab ligi õigeid inimesi ja kliente. \n\nEttevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\nTulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1876, '52', 'fi-FI', 'Kirjoita visio, joka houkuttelee oikeat ihmiset ja asiakkaat \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\nÄänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1877, '52', 'fr-FR', 'Rédigez une vision qui attire les bonnes personnes et les bons clients. \n\nNom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\nLe ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1878, '52', 'de-DE', 'Schreiben Sie eine Vision, die die richtigen Leute und Kunden anzieht. \n\nName der Firma:\n ##title## \n\nFirmeninformation:\n ##description## \n\nDer Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1879, '52', 'el-GR', 'Γράψτε ένα όραμα που προσελκύει τους κατάλληλους ανθρώπους και πελάτες. \n\nΌνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\nΟ τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1880, '52', 'he-IL', 'כתוב חזון שמושך את האנשים והלקוחות הנכונים. \n\nשם החברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1881, '52', 'hi-IN', 'एक दृष्टि लिखें जो सही लोगों और ग्राहकों को आकर्षित करे। \n\nकंपनी का नाम:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\nपरिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1882, '52', 'hu-HU', 'Írjon olyan jövőképet, amely vonzza a megfelelő embereket és ügyfeleket. \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\nAz eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1883, '52', 'is-IS', 'Skrifaðu framtíðarsýn sem laðar að rétta fólkið og viðskiptavinina. \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\nRödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1884, '52', 'id-ID', 'Tulis visi yang menarik orang dan pelanggan yang tepat. \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\nNada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1885, '52', 'it-IT', 'Scrivi una visione che attiri le persone e i clienti giusti. \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\nTono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1886, '52', 'ja-JP', '適切な人材や顧客を惹きつけるビジョンを書きましょう。 \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1887, '52', 'ko-KR', '올바른 사람과 고객을 끌어들이는 비전을 작성하십시오. \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1888, '52', 'ms-MY', 'Tulis visi yang menarik orang dan pelanggan yang betul. \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\nNada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1889, '52', 'nb-NO', 'Skriv en visjon som tiltrekker de rette menneskene og kundene. \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\nTonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1890, '52', 'pl-PL', 'Napisz wizję, która przyciąga właściwych ludzi i klientów. \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\nTon głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1891, '52', 'pt-PT', 'Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1892, '52', 'ru-RU', 'Напишите видение, которое привлечет нужных людей и клиентов. \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\nТон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1893, '52', 'es-ES', 'Escribe una visión que atraiga a las personas y clientes adecuados. \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\nEl tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1894, '52', 'sv-SE', 'Skriv en vision som attraherar rätt personer och kunder. \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation\n ##description## \n\nTonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1895, '52', 'tr-TR', 'Doğru insanları ve müşterileri çeken bir vizyon yazın. \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\nSonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1896, '52', 'pt-BR', 'Escreva uma visão que atraia as pessoas e os clientes certos. \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\nO tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (1897, '52', 'ro-RO', 'Scrieți o viziune care să atragă oamenii și clienții potriviți. \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\nTonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1898, '52', 'vi-VN', 'Viết một tầm nhìn thu hút đúng người và khách hàng. \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\nGiọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1899, '52', 'sw-KE', 'Andika maono yanayovutia watu na wateja sahihi. \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\nToni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1900, '52', 'sl-SI', 'Napišite vizijo, ki pritegne prave ljudi in stranke. \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\nTon glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1901, '52', 'th-TH', 'เขียนวิสัยทัศน์ที่ดึงดูดผู้คนและลูกค้าที่เหมาะสม \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\nน้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1902, '52', 'uk-UA', 'Напишіть бачення, яке приверне потрібних людей і клієнтів. \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\nТон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1903, '52', 'lt-LT', 'Parašykite viziją, kuri pritraukia reikiamus žmones ir klientus. \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\nTuri būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1904, '52', 'bg-BG', 'Напишете визия, която привлича правилните хора и клиенти. \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\nТонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1905, '53', 'en-US', 'Write a clear and concise statement of the company\'s goals and purpose, Company Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1906, '53', 'ar-AE', 'اكتب بيانًا واضحًا وموجزًا عن أهداف الشركة والغرض منها ، اسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1907, '53', 'cmn-CN', '就公司的目標和宗旨寫出清晰簡潔的陳述,公司名稱:\n ##title## \n\n公司信息:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1908, '53', 'hr-HR', 'Napišite jasnu i konciznu izjavu o ciljevima i svrsi tvrtke, Naziv tvrtke:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1909, '53', 'cs-CZ', 'Napište jasné a stručné prohlášení o cílech a účelu společnosti, Název společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1910, '53', 'da-DK', 'Skriv en klar og kortfattet redegørelse for virksomhedens mål og formål, Firmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1911, '53', 'nl-NL', 'Schrijf een duidelijke en beknopte verklaring van de doelstellingen en het doel van het bedrijf, bedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1912, '53', 'et-EE', 'Kirjutage selge ja lühidalt ettevõtte eesmärkide ja otstarbe kohta ettevõtte nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1913, '53', 'fi-FI', 'Kirjoita selkeä ja ytimekäs selvitys yrityksen tavoitteista ja tarkoituksesta, Yrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1914, '53', 'fr-FR', 'Rédigez une déclaration claire et concise des objectifs et du but de l\'entreprise, Nom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1915, '53', 'de-DE', 'Schreiben Sie eine klare und prägnante Erklärung zu den Zielen und Zwecken des Unternehmens sowie zum Firmennamen:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1916, '53', 'el-GR', 'Γράψτε μια σαφή και συνοπτική δήλωση των στόχων και του σκοπού της εταιρείας, Όνομα εταιρείας:\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1917, '53', 'he-IL', 'כתבו הצהרה ברורה ותמציתית של מטרות החברה ומטרתה, שם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1918, '53', 'hi-IN', 'कंपनी के लक्ष्यों और उद्देश्य, कंपनी का नाम का स्पष्ट और संक्षिप्त विवरण लिखें:\n ##title## \n\nकारखाना की जानकारी:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1919, '53', 'hu-HU', 'Írjon világos és tömör nyilatkozatot a vállalat céljairól és céljáról, Cégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1920, '53', 'is-IS', 'Skrifaðu skýra og hnitmiðaða yfirlýsingu um markmið og tilgang fyrirtækisins, Nafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1921, '53', 'id-ID', 'Tulis pernyataan yang jelas dan ringkas tentang maksud dan tujuan perusahaan, Nama Perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1922, '53', 'it-IT', 'Scrivi una dichiarazione chiara e concisa degli obiettivi e dello scopo dell\'azienda, nome dell\'azienda:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1923, '53', 'ja-JP', '会社の目標と目的、会社名を明確かつ簡潔に記述します。:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1924, '53', 'ko-KR', '회사의 목표와 목적, 회사 이름을 명확하고 간결하게 작성하십시오.:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1925, '53', 'ms-MY', 'Tulis kenyataan yang jelas dan padat tentang matlamat dan tujuan syarikat, Nama Syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1926, '53', 'nb-NO', 'Skriv en klar og kortfattet redegjørelse for selskapets mål og formål, Firmanavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1927, '53', 'pl-PL', 'Napisz jasne i zwięzłe oświadczenie o celach i celu firmy, Nazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1928, '53', 'pt-PT', 'Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1929, '53', 'ru-RU', 'Напишите четкое и краткое изложение целей и задач компании, название компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1930, '53', 'es-ES', 'Escriba una declaración clara y concisa de los objetivos y el propósito de la empresa, Nombre de la empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1931, '53', 'sv-SE', 'Skriv en tydlig och kortfattad redogörelse för företagets mål och syfte, Företagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1932, '53', 'tr-TR', 'Şirketin hedeflerini ve amacını, Şirket Adı\'nı açık ve öz bir şekilde yazın:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1933, '53', 'pt-BR', 'Escreva uma declaração clara e concisa dos objetivos e propósito da empresa, Nome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1934, '53', 'ro-RO', 'Scrieți o declarație clară și concisă a obiectivelor și scopului companiei, Numele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1935, '53', 'vi-VN', 'Viết một tuyên bố rõ ràng và súc tích về mục tiêu và mục đích của công ty, Tên công ty:\n ##title## \n\nThông tin công ty :\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1936, '53', 'sw-KE', 'Andika taarifa iliyo wazi na fupi ya malengo na madhumuni ya kampuni, Jina la Kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1937, '53', 'sl-SI', 'Napišite jasno in jedrnato izjavo o ciljih in namenu podjetja, ime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1938, '53', 'th-TH', 'เขียนข้อความที่ชัดเจนและกระชับเกี่ยวกับเป้าหมายและวัตถุประสงค์ของบริษัท ชื่อบริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1939, '53', 'uk-UA', 'Напишіть чітке та стисле викладення цілей та мети компанії, назву компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1940, '53', 'lt-LT', 'Aiškiai ir glaustai parašykite įmonės tikslus ir paskirtį, Įmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1941, '53', 'bg-BG', 'Напишете ясно и кратко изложение на целите и предназначението на компанията, Име на компанията:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1942, '54', 'en-US', 'Write a short and cool bio for ##platform## \n\nCompany Name:\n ##title## \n\nCompany Information:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1943, '54', 'ar-AE', 'اكتب سيرته الذاتية قصيرة وباردة ##platform## \n\nاسم الشركة:\n ##title## \n\nمعلومات الشركة:\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1944, '54', 'cmn-CN', '給你寫個簡短又酷的生物 ##platform## \n\n公司名稱:\n ##title## \n\n公司資訊:\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1945, '54', 'hr-HR', 'Napiši kratku i cool biografije za ##platform## \n\nIme poduzeća:\n ##title## \n\nInformacije o tvrtki:\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1946, '54', 'cs-CZ', 'Napište krátký a cool bio pro ##platform## \n\nNázev společnosti:\n ##title## \n\nInformace o společnosti:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1947, '54', 'da-DK', 'Skrive en kort og sej biografi til ##platform## \n\nFirmanavn:\n ##title## \n\nVirksomhedsoplysninger:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1948, '54', 'nl-NL', 'Schrijf een korte en koele bio voor ##platform## \n\nBedrijfsnaam:\n ##title## \n\nbedrijfsinformatie:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1949, '54', 'et-EE', 'Kirjuta lühike ja jahe bio ##platform## \n\nÄriühingu nimi:\n ##title## \n\nettevõtte info:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1950, '54', 'fi-FI', 'Kirjoita lyhyt ja viileä ##platform## \n\nYrityksen nimi:\n ##title## \n\nYrityksen tiedot:\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1951, '54', 'fr-FR', 'Écrivez une biographie courte et fraîche pour ##platform## \n\nNom de l\'entreprise:\n ##title## \n\nInformations sur la société:\n ##description## \n\n Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1952, '54', 'de-DE', 'Schreiben Sie eine kurze und coole Bio für ##platform## \n\nFirmenname:\n ##title## \n\nFirmeninformation:\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1953, '54', 'el-GR', 'Γράψτε ένα σύντομο και δροσερό βιογραφικό για ##platform## \n\nΌνομα εταιρείας::\n ##title## \n\nΣτοιχεία της εταιρείας:\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1954, '54', 'he-IL', 'תכתוב קורות חיים קצרים ומגניבים. ##platform## \n\nשם חברה:\n ##title## \n\nמידע על החברה:\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1955, '54', 'hi-IN', 'के लिए एक छोटा और शांत जैव लिखें ##platform## \n\nकंपनी का नाम:\n ##title## \n\nकंपनी की जानकारी:\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1956, '54', 'hu-HU', 'Írj egy rövid és hűvös bioanyagot ##platform## \n\nCégnév:\n ##title## \n\ncéginformáció:\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1957, '54', 'is-IS', 'Skrifaðu stutta og flotta ævisögu fyrir ##platform## \n\nnafn fyrirtækis:\n ##title## \n\nFyrirtækjaupplýsingar:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1958, '54', 'id-ID', 'Tulis bio singkat dan keren untuk ##platform## \n\nNama perusahaan:\n ##title## \n\ninformasi perusahaan:\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1959, '54', 'it-IT', 'Scrivi un bio breve e cool per ##platform## \n\nNome della ditta:\n ##title## \n\nInformazioni sulla società:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1960, '54', 'ja-JP', '短く、クールな生体を書いてください ##platform## \n\n会社名:\n ##title## \n\n企業情報:\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1961, '54', 'ko-KR', '짧고 멋진 약력을 작성하십시오. ##platform## \n\n회사 이름:\n ##title## \n\n회사 정보:\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1962, '54', 'ms-MY', 'Tulis bio ringkas dan keren untuk ##platform## \n\nnama syarikat:\n ##title## \n\nMaklumat Syarikat:\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1963, '54', 'nb-NO', 'Skriv en kort og kul bio for ##platform## \n\nselskapsnavn:\n ##title## \n\nfirmainformasjon:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1964, '54', 'pl-PL', 'Napisz krótką i fajną biografię dla ##platform## \n\nNazwa firmy:\n ##title## \n\ninformacje o firmie:\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1965, '54', 'pt-PT', 'Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1966, '54', 'ru-RU', 'Напишите короткую и интересную биографию для ##platform## \n\nНазвание компании:\n ##title## \n\nИнформация о компании:\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1967, '54', 'es-ES', 'Escriba una breve y fresca biografía para ##platform## \n\nnombre de empresa:\n ##title## \n\nInformación de la empresa:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1968, '54', 'sv-SE', 'Skriv en kort och cool bio för ##platform## \n\nFöretagsnamn:\n ##title## \n\nFöretagsinformation:\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1969, '54', 'tr-TR', 'için kısa ve havalı bir biyografi yazın ##platform## \n\nFirma Adı:\n ##title## \n\nŞirket Bilgisi:\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1970, '54', 'pt-BR', 'Escreva uma biografia curta e legal para ##platform## \n\nnome da empresa:\n ##title## \n\nInformações da Empresa:\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1971, '54', 'ro-RO', 'Scrie o biografie scurtă și cool pentru ##platform## \n\nNumele companiei:\n ##title## \n\nInformatiile Companiei:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1972, '54', 'vi-VN', 'Viết một tiểu sử ngắn và thú vị cho ##platform## \n\nTên công ty:\n ##title## \n\nThông tin công ty:\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1973, '54', 'sw-KE', 'Andika wasifu mfupi na mzuri kwa ##platform## \n\njina la kampuni:\n ##title## \n\nTaarifa za Kampuni:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1974, '54', 'sl-SI', 'Napišite kratek in kul življenjepis za ##platform## \n\nime podjetja:\n ##title## \n\nInformacije o podjetju:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1975, '54', 'th-TH', 'เขียนชีวประวัติสั้น ๆ และน่าสนใจสำหรับ ##platform## \n\nชื่อ บริษัท:\n ##title## \n\nข้อมูล บริษัท:\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1976, '54', 'uk-UA', 'Напишіть коротку та круту біографію для ##platform## \n\nНазва компанії:\n ##title## \n\nінформація про компанію:\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1977, '54', 'lt-LT', 'Parašykite trumpą ir šaunią biografiją ##platform## \n\nĮmonės pavadinimas:\n ##title## \n\nKompanijos informacija:\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1978, '54', 'bg-BG', 'Напишете кратка и готина биография за ##platform## \n\nИме на фирмата:\n ##title## \n\nинформация за компанията:\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1979, '55', 'en-US', 'Write an engaging email about:\n\n ##description## \n\n Recipient:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1980, '55', 'ar-AE', 'اكتب بريدًا إلكترونيًا جذابًا عنه:\n\n ##description## \n\n متلقي:\n ##recipient## \n\n موقف المستلم:\n ##recipient_position## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1981, '55', 'cmn-CN', '撰寫關於的吸引人的電子郵件:\n\n ##description## \n\n 收件者:\n ##recipient## \n\n 收件者位置:\n ##recipient_position## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1982, '55', 'hr-HR', 'Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Primatelj:\n ##recipient## \n\n Položaj primatelja:\n ##recipient_position## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1983, '55', 'cs-CZ', 'Napište zajímavý e-mail o:\n\n ##description## \n\n Příjemce:\n ##recipient## \n\n Pozice příjemce:\n ##recipient_position## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1984, '55', 'da-DK', 'Skriv en engagerende e-mail om:\n\n ##description## \n\n Modtager:\n ##recipient## \n\n Modtagerposition:\n ##recipient_position## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1985, '55', 'nl-NL', 'Schrijf een boeiende e-mail over:\n\n ##description## \n\n Ontvanger:\n ##recipient## \n\n Positie van de ontvanger:\n ##recipient_position## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1986, '55', 'et-EE', 'Kirjutage kaasahaarav e-kiri:\n\n ##description## \n\n Saaja:\n ##recipient## \n\n Saaja positsioon:\n ##recipient_position## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1987, '55', 'fi-FI', 'Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Vastaanottaja:\n ##recipient## \n\n Vastaanottajan asema:\n ##recipient_position## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1988, '55', 'fr-FR', 'Rédigez un e-mail engageant à propos de:\n\n ##description## \n\n Destinataire:\n ##recipient## \n\n Poste du destinataire:\n ##recipient_position## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1989, '55', 'de-DE', 'Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Empfänger:\n ##recipient## \n\n Empfängerposition:\n ##recipient_position## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1990, '55', 'el-GR', 'Γράψτε ένα συναρπαστικό email για:\n\n ##description## \n\n Παραλήπτης:\n ##recipient## \n\n Θέση Παραλήπτη:\n ##recipient_position## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1991, '55', 'he-IL', 'כתוב אימייל מרתק על:\n\n ##description## \n\n מקבל:\n ##recipient## \n\n עמדת נמען:\n ##recipient_position## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1992, '55', 'hi-IN', 'के बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n प्राप्तकर्ता:\n ##recipient## \n\n प्राप्तकर्ता स्थिति:\n ##recipient_position## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1993, '55', 'hu-HU', 'Írjon lebilincselő e-mailt erről:\n\n ##description## \n\n Befogadó:\n ##recipient## \n\n Címzett pozíciója:\n ##recipient_position## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1994, '55', 'is-IS', 'Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Viðtakandi:\n ##recipient## \n\n Staða viðtakanda:\n ##recipient_position## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1995, '55', 'id-ID', 'Tulis email yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Posisi Penerima:\n ##recipient_position## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1996, '55', 'it-IT', 'Scrivi un\'e-mail coinvolgente su:\n\n ##description## \n\n Destinatario:\n ##recipient## \n\n Posizione del destinatario:\n ##recipient_position## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1997, '55', 'ja-JP', '~について魅力的なメールを書く:\n\n ##description## \n\n 受信者:\n ##recipient## \n\n 受信者の位置:\n ##recipient_position## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1998, '55', 'ko-KR', '에 대한 매력적인 이메일 작성:\n\n ##description## \n\n 받는 사람:\n ##recipient## \n\n 받는 사람 위치:\n ##recipient_position## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (1999, '55', 'ms-MY', 'Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Penerima:\n ##recipient## \n\n Kedudukan Penerima:\n ##recipient_position## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2000, '55', 'nb-NO', 'Skriv en engasjerende e-post om:\n\n ##description## \n\n Mottaker:\n ##recipient## \n\n Mottakerposisjon:\n ##recipient_position## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2001, '55', 'pl-PL', 'Napisz angażującego e-maila nt:\n\n ##description## \n\n Odbiorca:\n ##recipient## \n\n Pozycja odbiorcy:\n ##recipient_position## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2002, '55', 'pt-PT', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Posição do Destinatário:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2003, '55', 'ru-RU', 'Напишите увлекательное письмо о:\n\n ##description## \n\n Получатель:\n ##recipient## \n\n Позиция получателя:\n ##recipient_position## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2004, '55', 'es-ES', 'Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n Recipiente:\n ##recipient## \n\n Posición del destinatario:\n ##recipient_position## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2005, '55', 'sv-SE', 'Skriv ett engagerande mejl om:\n\n ##description## \n\n Mottagare:\n ##recipient## \n\n Mottagarens position:\n ##recipient_position## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2006, '55', 'tr-TR', 'hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n alıcı:\n ##recipient## \n\n Alıcı Pozisyonu:\n ##recipient_position## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2007, '55', 'pt-BR', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n Destinatário:\n ##recipient## \n\n Recipient Position:\n ##recipient_position## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2008, '55', 'ro-RO', 'Scrieți un e-mail captivant despre:\n\n ##description## \n\n Destinatar:\n ##recipient## \n\n Poziția destinatarului:\n ##recipient_position## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2009, '55', 'vi-VN', 'Viết một email hấp dẫn về:\n\n ##description## \n\n Người nhận:\n ##recipient## \n\n Vị trí người nhận:\n ##recipient_position## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2010, '55', 'sw-KE', 'Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Mpokeaji:\n ##recipient## \n\n Nafasi ya Mpokeaji:\n ##recipient_position## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2011, '55', 'sl-SI', 'Napišite privlačno e-poštno sporočilo o:\n\n ##description## \n\n Prejemnik:\n ##recipient## \n\n Položaj prejemnika:\n ##recipient_position## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2012, '55', 'th-TH', 'เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n ผู้รับ:\n ##recipient## \n\n ตำแหน่งผู้รับ:\n ##recipient_position## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2013, '55', 'uk-UA', 'Напишіть цікавий електронний лист про:\n\n ##description## \n\n одержувач:\n ##recipient## \n\n Посада отримувача:\n ##recipient_position## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2014, '55', 'lt-LT', 'Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Gavėjas:\n ##recipient## \n\n Gavėjo padėtis:\n ##recipient_position## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2015, '55', 'bg-BG', 'Напишете увлекателен имейл за:\n\n ##description## \n\n Получател:\n ##recipient## \n\n Позиция на получател:\n ##recipient_position## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2016, '56', 'en-US', 'Write an engaging email about:\n\n ##description## \n\n From:\n ##from## n\n To:\n ##to## \n\n Main Goal of this email:\n ##goal## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2017, '56', 'ar-AE', 'اكتب بريدًا إلكترونيًا جذابًا حول:\n\n ##description## \n\n من:\n ##from## n\n ل:\n ##to## \n\n الهدف الرئيسي لهذا البريد الإلكتروني:\n ##goal## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2018, '56', 'cmn-CN', '写一封引人入胜的电子邮件:\n\n ##description## \n\n 从:\n ##from## n\n 到:\n ##to## \n\n 这封电子邮件的主要目标:\n ##goal## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2019, '56', 'hr-HR', 'Napišite zanimljivu e-poruku o:\n\n ##description## \n\n Iz:\n ##from## n\n Do:\n ##to## \n\n Glavni cilj ove e-pošte:\n ##goal## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2020, '56', 'cs-CZ', 'Napište zajímavý e-mail o:\n\n ##description## \n\n Z:\n ##from## n\n Na:\n ##to## \n\n Hlavní cíl tohoto e-mailu:\n ##goal## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2021, '56', 'da-DK', 'Skriv en engagerende e-mail om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedformålet med denne e-mail:\n ##goal## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2022, '56', 'nl-NL', 'Schrijf een boeiende e-mail over:\n\n ##description## \n\n Van:\n ##from## n\n Naar:\n ##to## \n\n Hoofddoel van deze e-mail:\n ##goal## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2023, '56', 'et-EE', 'Kirjutage kaasahaarav e-kiri teemal:\n\n ##description## \n\n Alates:\n ##from## n\n Saaja:\n ##to## \n\n Selle meili peamine eesmärk:\n ##goal## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2024, '56', 'fi-FI', 'Kirjoita kiinnostava sähköposti aiheesta:\n\n ##description## \n\n Lähettäjä:\n ##from## n\n Vastaanottaja:\n ##to## \n\n Tämän sähköpostin päätavoite:\n ##goal## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2025, '56', 'fr-FR', 'Rédigez un e-mail engageant sur:\n\n ##description## \n\n Depuis:\n ##from## n\n Pour:\n ##to## \n\n Objectif principal de cet e-mail:\n ##goal## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2026, '56', 'de-DE', 'Schreiben Sie eine ansprechende E-Mail über:\n\n ##description## \n\n Aus:\n ##from## n\n Zu:\n ##to## \n\n Hauptziel dieser E-Mail:\n ##goal## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2027, '56', 'el-GR', 'Γράψτε ένα συναρπαστικό email σχετικά με:\n\n ##description## \n\n Από:\n ##from## n\n Προς την:\n ##to## \n\n Κύριος στόχος αυτού του email:\n ##goal## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2028, '56', 'he-IL', 'כתוב אימייל מרתק על:\n\n ##description## \n\n מ:\n ##from## n\n ל:\n ##to## \n\n המטרה העיקרית של האימייל הזה:\n ##goal## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2029, '56', 'hi-IN', 'इसके बारे में एक आकर्षक ईमेल लिखें:\n\n ##description## \n\n से:\n ##from## n\n को:\n ##to## \n\n इस ईमेल का मुख्य लक्ष्य:\n ##goal## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2030, '56', 'hu-HU', 'Írjon lebilincselő e-mailt a következőkről:\n\n ##description## \n\n Tól től:\n ##from## n\n Nak nek:\n ##to## \n\n Ennek az e-mailnek a fő célja:\n ##goal## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2031, '56', 'is-IS', 'Skrifaðu grípandi tölvupóst um:\n\n ##description## \n\n Frá:\n ##from## n\n Til:\n ##to## \n\n Meginmarkmið þessa tölvupósts:\n ##goal## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2032, '56', 'id-ID', 'Tulis email yang menarik tentang:\n\n ##description## \n\n Dari:\n ##from## n\n Ke:\n ##to## \n\n Tujuan Utama dari email ini:\n ##goal## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2033, '56', 'it-IT', 'Scrivi un\'email coinvolgente su:\n\n ##description## \n\n Da:\n ##from## n\n A:\n ##to## \n\n Obiettivo principale di questa email:\n ##goal## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2034, '56', 'ja-JP', '以下について魅力的なメールを書きましょう:\n\n ##description## \n\n から:\n ##from## n\n に:\n ##to## \n\n このメールの主な目的:\n ##goal## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2035, '56', 'ko-KR', '다음에 대해 관심을 끄는 이메일을 작성하세요:\n\n ##description## \n\n 에서:\n ##from## n\n 에게:\n ##to## \n\n 이 이메일의 주요 목표:\n ##goal## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2036, '56', 'ms-MY', 'Tulis e-mel yang menarik tentang:\n\n ##description## \n\n Daripada:\n ##from## n\n Kepada:\n ##to## \n\n Matlamat Utama e-mel ini:\n ##goal## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2037, '56', 'nb-NO', 'Skriv en engasjerende e-post om:\n\n ##description## \n\n Fra:\n ##from## n\n Til:\n ##to## \n\n Hovedmålet med denne e-posten:\n ##goal## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2038, '56', 'pl-PL', 'Napisz angażującego e-maila na temat:\n\n ##description## \n\n Z:\n ##from## n\n Do:\n ##to## \n\n Główny cel tego e-maila:\n ##goal## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2039, '56', 'pt-PT', 'Escreva um e-mail atraente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2040, '56', 'ru-RU', 'Напишите увлекательное письмо о:\n\n ##description## \n\n От:\n ##from## n\n К:\n ##to## \n\n Основная цель этого письма:\n ##goal## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2041, '56', 'es-ES', 'Escriba un correo electrónico atractivo sobre:\n\n ##description## \n\n De:\n ##from## n\n A:\n ##to## \n\n Objetivo principal de este correo electrónico:\n ##goal## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2042, '56', 'sv-SE', 'Skriv ett engagerande mejl om:\n\n ##description## \n\n Från:\n ##from## n\n Till:\n ##to## \n\n Huvudmålet med detta e-postmeddelande:\n ##goal## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2043, '56', 'tr-TR', 'Şunlar hakkında ilgi çekici bir e-posta yazın:\n\n ##description## \n\n İtibaren:\n ##from## n\n İle:\n ##to## \n\n Bu e-postanın Ana Hedefi:\n ##goal## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2044, '56', 'pt-BR', 'Escreva um e-mail envolvente sobre:\n\n ##description## \n\n De:\n ##from## n\n Para:\n ##to## \n\n Objetivo principal deste e-mail:\n ##goal## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2045, '56', 'ro-RO', 'Scrieți un e-mail captivant despre:\n\n ##description## \n\n Din:\n ##from## n\n La:\n ##to## \n\n Scopul principal al acestui e-mail:\n ##goal## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2046, '56', 'vi-VN', 'Viết một email hấp dẫn về:\n\n ##description## \n\n Từ:\n ##from## n\n ĐẾN:\n ##to## \n\n Mục tiêu chính của email này:\n ##goal## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2047, '56', 'sw-KE', 'Andika barua pepe ya kuvutia kuhusu:\n\n ##description## \n\n Kutoka:\n ##from## n\n Kwa:\n ##to## \n\n Lengo Kuu la barua pepe hii:\n ##goal## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2048, '56', 'sl-SI', 'Napišite privlačno e-pošto o:\n\n ##description## \n\n Od:\n ##from## n\n Za:\n ##to## \n\n Glavni cilj tega e-poštnega sporočila:\n ##goal## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2049, '56', 'th-TH', 'เขียนอีเมลที่น่าสนใจเกี่ยวกับ:\n\n ##description## \n\n จาก:\n ##from## n\n ถึง:\n ##to## \n\n เป้าหมายหลักของอีเมลนี้:\n ##goal## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2050, '56', 'uk-UA', 'Напишіть цікавий електронний лист про:\n\n ##description## \n\n Від:\n ##from## n\n до:\n ##to## \n\n Основна мета цього листа:\n ##goal## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2051, '56', 'lt-LT', 'Parašykite patrauklų el. laišką apie:\n\n ##description## \n\n Iš:\n ##from## n\n Į: Kam:\n ##to## \n\n Pagrindinis šio el. laiško tikslas:\n ##goal## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2052, '56', 'bg-BG', 'Напишете увлекателен имейл за:\n\n ##description## \n\n От:\n ##from## n\n До:\n ##to## \n\n Основна цел на този имейл:\n ##goal## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2053, '57', 'en-US', 'Write 10 catchy email subject lines for this product:\n\n ##title## \n\nProduct Description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2054, '57', 'ar-AE', 'اكتب 10 سطور جذابة لموضوع البريد الإلكتروني لهذا المنتج:\n\n ##title## \n\nوصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2055, '57', 'cmn-CN', '为该产品写 10 个醒目的电子邮件主题行:\n\n ##title## \n\n产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2056, '57', 'hr-HR', 'Napišite 10 privlačnih redaka predmeta e-pošte za ovaj proizvod:\n\n ##title## \n\nOpis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2057, '57', 'cs-CZ', 'Napište 10 chytlavých předmětů e-mailu pro tento produkt:\n\n ##title## \n\nPopis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2058, '57', 'da-DK', 'Skriv 10 fængende e-mail-emnelinjer for dette produkt:\n\n ##title## \n\nProdukt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2059, '57', 'nl-NL', 'Schrijf 10 pakkende e-mailonderwerpregels voor dit product:\n\n ##title## \n\nProduct beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2060, '57', 'et-EE', 'Kirjutage selle toote kohta 10 meeldejäävat meili teemarida:\n\n ##title## \n\nTootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2061, '57', 'fi-FI', 'Kirjoita tälle tuotteelle 10 tarttuvaa sähköpostin aiheriviä:\n\n ##title## \n\nTuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2062, '57', 'fr-FR', 'Rédigez 10 lignes d\'objet accrocheuses pour ce produit:\n\n ##title## \n\nDescription du produit:\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2063, '57', 'de-DE', 'Schreiben Sie 10 einprägsame E-Mail-Betreffzeilen für dieses Produkt:\n\n ##title## \n\nProduktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2064, '57', 'el-GR', 'Γράψτε 10 συναρπαστικές γραμμές θέματος email για αυτό το προϊόν:\n\n ##title## \n\nΠεριγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2065, '57', 'he-IL', 'כתוב 10 שורות נושא קליטות בדוא ל עבור מוצר זה:\n\n ##title## \n\nתיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2066, '57', 'hi-IN', 'इस उत्पाद के लिए 10 आकर्षक ईमेल विषय पंक्तियाँ लिखें:\n\n ##title## \n\nउत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2067, '57', 'hu-HU', 'Írjon 10 fülbemászó e-mail tárgysort ehhez a termékhez:\n\n ##title## \n\nTermékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2068, '57', 'is-IS', 'Skrifaðu 10 grípandi efnislínur í tölvupósti fyrir þessa vöru:\n\n ##title## \n\nVörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2069, '57', 'id-ID', 'Tulis 10 baris subjek email yang menarik untuk produk ini:\n\n ##title## \n\nDeskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2070, '57', 'it-IT', 'Scrivi 10 righe dell\'oggetto dell\'e-mail accattivanti per questo prodotto:\n\n ##title## \n\nDescrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2071, '57', 'ja-JP', 'この製品に関するキャッチーな電子メールの件名を 10 行書きます:\n\n ##title## \n\n製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2072, '57', 'ko-KR', '이 제품에 대해 기억하기 쉬운 10개의 이메일 제목을 작성하십시오:\n\n ##title## \n\n제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2073, '57', 'ms-MY', 'Tulis 10 baris subjek e-mel yang menarik untuk produk ini:\n\n ##title## \n\nPenerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2074, '57', 'nb-NO', 'Skriv 10 fengende e-postemnelinjer for dette produktet:\n\n ##title## \n\nProduktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2075, '57', 'pl-PL', 'Napisz 10 chwytliwych tematów wiadomości e-mail dla tego produktu:\n\n ##title## \n\nOpis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2076, '57', 'pt-PT', 'Escreva 10 linhas de assunto de e-mail cativantes para este produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2077, '57', 'ru-RU', 'Напишите 10 броских тем письма для этого продукта:\n\n ##title## \n\nОписание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2078, '57', 'es-ES', 'Escriba 10 líneas de asunto de correo electrónico pegadizas para este producto:\n\n ##title## \n\nDescripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2079, '57', 'sv-SE', 'Skriv 10 catchy e-postämnesrader för denna produkt:\n\n ##title## \n\nProduktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2080, '57', 'tr-TR', 'Bu ürün için akılda kalıcı 10 e-posta konu satırı yazın:\n\n ##title## \n\nÜrün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2081, '57', 'pt-BR', 'Escreva 10 linhas de assunto de e-mail atraentes para esse produto:\n\n ##title## \n\nDescrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (2082, '57', 'ro-RO', 'Scrieți 10 subiecte captivante pentru e-mail pentru acest produs:\n\n ##title## \n\nDescriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2083, '57', 'vi-VN', 'Viết 10 dòng tiêu đề email hấp dẫn cho sản phẩm này:\n\n ##title## \n\nMô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2084, '57', 'sw-KE', 'Andika mada 10 za barua pepe zinazovutia za bidhaa hii:\n\n ##title## \n\nMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2085, '57', 'sl-SI', 'Napišite 10 privlačnih vrstic z zadevo e-pošte za ta izdelek:\n\n ##title## \n\nOpis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2086, '57', 'th-TH', 'เขียน 10 หัวเรื่องอีเมลที่จับใจสำหรับผลิตภัณฑ์นี้:\n\n ##title## \n\nรายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2087, '57', 'uk-UA', 'Напишіть 10 яскравих тем електронних листів для цього продукту:\n\n ##title## \n\nОпис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2088, '57', 'lt-LT', 'Parašykite 10 patrauklių šio produkto el. pašto temos eilučių:\n\n ##title## \n\nProdukto aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2089, '57', 'bg-BG', 'Напишете 10 запомнящи се теми на имейла за този продукт:\n\n ##title## \n\nОписание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2090, '58', 'en-US', 'Write an engaging email content about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2091, '58', 'ar-AE', 'اكتب محتوى بريد إلكتروني جذاب حول:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2092, '58', 'cmn-CN', '撰写引人入胜的电子邮件内容:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2093, '58', 'hr-HR', 'Napišite zanimljiv sadržaj e-pošte o tome:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2094, '58', 'cs-CZ', 'Napište zajímavý obsah e-mailu o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2095, '58', 'da-DK', 'Skriv et engagerende e-mailindhold om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2096, '58', 'nl-NL', 'Schrijf een boeiende e-mailinhoud over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2097, '58', 'et-EE', 'Kirjutage kaasahaarav meili sisu:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2098, '58', 'fi-FI', 'Kirjoita kiinnostavaa sähköpostisisältöä aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2099, '58', 'fr-FR', 'Rédigez un contenu d e-mail engageant sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2100, '58', 'de-DE', 'Schreiben Sie einen ansprechenden E-Mail-Inhalt über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2101, '58', 'el-GR', 'Γράψτε ένα ελκυστικό περιεχόμενο email για:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2102, '58', 'he-IL', 'כתוב תוכן דוא\"ל מרתק על:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2103, '58', 'hi-IN', 'के बारे में एक आकर्षक ईमेल सामग्री लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2104, '58', 'hu-HU', 'Írjon lebilincselő e-mail tartalmat erről:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2105, '58', 'is-IS', 'Skrifaðu grípandi tölvupóstsefni um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2106, '58', 'id-ID', 'Tulis konten email yang menarik tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2107, '58', 'it-IT', 'Scrivi un contenuto email accattivante su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2108, '58', 'ja-JP', '~について魅力的なメールコンテンツを作成します:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2109, '58', 'ko-KR', '매력적인 이메일 콘텐츠를 작성하세요.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2110, '58', 'ms-MY', 'Tulis kandungan e-mel yang menarik tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2111, '58', 'nb-NO', 'Skriv et engasjerende e-postinnhold om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2112, '58', 'pl-PL', 'Napisz angażującą treść e-maila nt:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2113, '58', 'pt-PT', 'Escreva um conteúdo de correio electrónico cativante sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2114, '58', 'ru-RU', 'Напишите привлекательный контент по электронной почте о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2115, '58', 'es-ES', 'Escriba un contenido de correo electrónico atractivo sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2116, '58', 'sv-SE', 'Skriv ett engagerande e-postinnehåll om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2117, '58', 'tr-TR', 'Hakkında ilgi çekici bir e-posta içeriği yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2118, '58', 'pt-BR', 'Escreva um conteúdo de e-mail envolvente sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2119, '58', 'ro-RO', 'Scrieți un conținut de e-mail captivant despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2120, '58', 'vi-VN', 'Viết một nội dung email hấp dẫn về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2121, '58', 'sw-KE', 'Andika maudhui ya barua pepe ya kuvutia kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2122, '58', 'sl-SI', 'Napišite privlačno e-poštno vsebino o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2123, '58', 'th-TH', 'เขียนเนื้อหาอีเมลที่น่าสนใจเกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2124, '58', 'uk-UA', 'Напишіть привабливий електронний лист про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2125, '58', 'lt-LT', 'Parašykite patrauklų el. pašto turinį:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2126, '58', 'bg-BG', 'Напишете ангажиращо имейл съдържание за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2127, '59', 'en-US', 'Write 10 interesting titles for Google ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2129, '59', 'cmn-CN', '为以下产品的 Google 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2130, '59', 'hr-HR', 'Napišite 10 zanimljivih naslova za Google oglase sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2131, '59', 'cs-CZ', 'Napište 10 zajímavých názvů pro reklamy Google na následující produkt, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2132, '59', 'da-DK', 'Skriv 10 interessante titler til Google-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2133, '59', 'nl-NL', 'Schrijf 10 interessante titels voor Google-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n TDe lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2134, '59', 'et-EE', 'Kirjutage 10 huvitavat pealkirja järgmise toote Google\'i reklaamidele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2135, '59', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen Google-mainoksille:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2136, '59', 'fr-FR', 'Écrivez 10 titres intéressants pour les annonces Google du produit suivant visant à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n TLa longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2137, '59', 'de-DE', 'Schreiben Sie 10 interessante Titel für Google-Anzeigen für das folgende Produkt, auf das Sie abzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2138, '59', 'el-GR', 'Γράψτε 10 ενδιαφέροντες τίτλους για τις διαφημίσεις Google για το παρακάτω προϊόν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2139, '59', 'he-IL', 'כתוב 10 כותרות מעניינות למודעות גוגל של המוצר הבא שמיועדות אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2140, '59', 'hi-IN', 'निम्नलिखित उत्पाद के Google विज्ञापनों के लिए 10 दिलचस्प शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2141, '59', 'hu-HU', 'Írjon 10 érdekes címet a következő termék Google hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2142, '59', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir Google auglýsingar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru NafnVörulýsing:\n ##title## \n\n :\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2143, '59', 'id-ID', 'Tulis 10 judul iklan Google yang menarik dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2144, '59', 'it-IT', 'Scrivi 10 titoli interessanti per gli annunci Google del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2145, '59', 'ja-JP', '次の商品の Google 広告用に、興味深いタイトルを 10 個書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2146, '59', 'ko-KR', '다음 제품에 대한 Google 광고의 흥미로운 제목 10개를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:45'), (2147, '59', 'ms-MY', 'Tulis 10 tajuk menarik untuk iklan Google bagi produk berikut yang bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2148, '59', 'nb-NO', 'Skriv 10 interessante titler for Google-annonser for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2149, '59', 'pl-PL', 'Napisz 10 interesujących tytułów reklam Google dla następującego produktu, do którego są skierowane:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n TDługość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2150, '59', 'pt-PT', 'Escreva 10 títulos interessantes para anúncios Google do seguinte produto destinados a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2151, '59', 'ru-RU', 'Напишите 10 интересных заголовков для объявлений Google следующего продукта, нацеленных на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2152, '59', 'es-ES', 'Escriba 10 títulos interesantes para los anuncios de Google del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n PDescripción del Producto:\n ##description## \n\n TEl tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2153, '59', 'sv-SE', 'Skriv 10 intressanta titlar för Google-annonser för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2154, '59', 'tr-TR', 'Hedeflenen aşağıdaki ürünün Google reklamları için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün AçıklamasıSonucun ses tonu şöyle olmalıdır:\n ##description## \n\n :\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2155, '59', 'pt-BR', 'Escreva 10 títulos interessantes para anúncios do Google do seguinte produto destinado a:\n\n ##audience## \n\nNome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2156, '59', 'ro-RO', 'Scrieți 10 titluri interesante pentru reclamele Google ale următorului produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2157, '59', 'vi-VN', 'Viết 10 tiêu đề thú vị cho quảng cáo Google của sản phẩm sau nhắm đến:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2158, '59', 'sw-KE', 'Andika mada 10 za kuvutia za matangazo ya Google za bidhaa ifuatayo inayolengaJina la bidhaa:\n\n ##audience## \n\n :\n ##title## \n\n PMaelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2159, '59', 'sl-SI', 'Napišite 10 zanimivih naslovov za Google oglase naslednjega izdelka, namenjenegaIme izdelka:\n\n ##audience## \n\n :\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2160, '59', 'th-TH', 'เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา Google ของผลิตภัณฑ์ต่อไปนี้มุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\nเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2161, '59', 'uk-UA', 'Напишіть 10 цікавих назв для оголошень Google наступного продукту, спрямованих на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2162, '59', 'lt-LT', 'Parašykite 10 įdomių šio produkto „Google“ skelbimų pavadinimų:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2163, '59', 'bg-BG', 'Напишете 10 интересни заглавия за Google реклами на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2164, '60', 'en-US', 'Write a trending tweet for a Twitter post about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2165, '60', 'ar-AE', 'اكتب تغريدة رائجة لمشاركة Twitter حول:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2166, '60', 'cmn-CN', '撰写引人入胜的电子邮件内容:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2167, '60', 'hr-HR', 'Napišite trendovski tweet za post na Twitteru o:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2168, '60', 'cs-CZ', 'Napište trendový tweet pro příspěvek na Twitteru o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2169, '60', 'da-DK', 'Skriv et trending tweet til et Twitter-indlæg om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2170, '60', 'nl-NL', 'Schrijf een trending tweet voor een Twitter-post over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2171, '60', 'et-EE', 'Kirjutage Twitteri postituse jaoks trendikas säuts:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2172, '60', 'fi-FI', 'Kirjoita trendaava twiitti Twitter-postaukseen aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2173, '60', 'fr-FR', 'Rédigez un tweet tendance pour un post Twitter sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2174, '60', 'de-DE', 'Schreiben Sie einen Trend-Tweet für einen Twitter-Beitrag darüber:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2175, '60', 'el-GR', 'Γράψτε ένα δημοφιλές tweet για μια ανάρτηση στο Twitter σχετικά με:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2176, '60', 'he-IL', ' כתוב ציוץ מגמתי לפוסט בטוויטר על:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2177, '60', 'hi-IN', 'के बारे में एक ट्विटर पोस्ट के लिए एक ट्रेंडिंग ट्वीट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2178, '60', 'hu-HU', 'Írj egy felkapott tweetet egy Twitter-bejegyzéshez, amely erről szól:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2179, '60', 'is-IS', 'Skrifaðu vinsælt kvak fyrir Twitter færslu um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2180, '60', 'id-ID', 'Tulis tweet yang sedang tren untuk posting Twitter tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2181, '60', 'it-IT', 'Scrivi un tweet di tendenza per un post su Twitter:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2182, '60', 'ja-JP', 'についての Twitter 投稿のトレンドツイートを書く:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2183, '60', 'ko-KR', '에 대한 Twitter 게시물에 대한 최신 트윗 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2184, '60', 'ms-MY', 'Tulis tweet sohor kini untuk siaran Twitter tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2185, '60', 'nb-NO', 'Skriv en populær tweet for et Twitter-innlegg om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2186, '60', 'pl-PL', 'Napisz popularny tweet do wpisu na Twitterze:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2187, '60', 'pt-PT', 'Escrever um trending tweet para uma publicação no Twitter sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2188, '60', 'ru-RU', 'Напишите популярный твит для поста в Твиттере о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2189, '60', 'es-ES', 'Escriba un tweet de tendencia para una publicación de Twitter sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2190, '60', 'sv-SE', 'Skriv en trendig tweet för ett Twitter-inlägg om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2191, '60', 'tr-TR', 'Hakkında bir Twitter gönderisi için trend olan bir tweet yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2192, '60', 'pt-BR', 'Escreva um tweet de tendência para uma postagem no Twitter sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2193, '60', 'ro-RO', 'Scrieți un tweet în tendințe pentru o postare Twitter despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2194, '60', 'vi-VN', 'Viết một tweet xu hướng cho một bài đăng trên Twitter về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2195, '60', 'sw-KE', 'Andika tweet inayovuma kwa chapisho la Twitter kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2196, '60', 'sl-SI', 'Napišite trendovski tvit za objavo na Twitterju o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2197, '60', 'th-TH', 'เขียนทวีตที่กำลังมาแรงสำหรับโพสต์ Twitter เกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2198, '60', 'uk-UA', 'Напишіть популярний твіт для публікації в Twitter про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2199, '60', 'lt-LT', 'Parašykite patrauklų el. pašto turinį:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2200, '60', 'bg-BG', 'Напишете актуален туит за публикация в Twitter за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2201, '61', 'en-US', 'Write inspiring posts for LinkedIn about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2202, '61', 'ar-AE', 'اكتب منشورات ملهمة على LinkedIn عنها:\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2203, '61', 'cmn-CN', '为 LinkedIn 撰写鼓舞人心的帖子:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2204, '61', 'hr-HR', 'Pišite inspirativne postove za LinkedIn o tome:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2205, '61', 'cs-CZ', 'Pište inspirativní příspěvky pro LinkedIn o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2206, '61', 'da-DK', 'Skriv inspirerende indlæg til LinkedIn om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2207, '61', 'nl-NL', 'Schrijf inspirerende posts voor LinkedIn over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2208, '61', 'et-EE', 'Kirjutage LinkedIni jaoks inspireerivaid postitusi:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2209, '61', 'fi-FI', 'Kirjoita inspiroivia viestejä LinkedInille aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2210, '61', 'fr-FR', 'Rédigez des articles inspirants pour LinkedIn à propos de:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2211, '61', 'de-DE', 'Schreiben Sie inspirierende Beiträge für LinkedIn über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2212, '61', 'el-GR', 'Γράψτε εμπνευσμένες αναρτήσεις για το LinkedIn:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2213, '61', 'he-IL', 'כתוב פוסטים מעוררי השראה עבור LinkedIn על\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2214, '61', 'hi-IN', 'लिंक्डइन के बारे में प्रेरक पोस्ट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2215, '61', 'hu-HU', 'Írjon inspiráló bejegyzéseket a LinkedIn számára erről:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2216, '61', 'is-IS', 'Skrifaðu hvetjandi færslur fyrir LinkedIn um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2217, '61', 'id-ID', 'Tulis postingan yang menginspirasi untuk LinkedIn tentang:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2218, '61', 'it-IT', 'Scrivi post stimolanti per LinkedIn su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2219, '61', 'ja-JP', '~についてLinkedInにインスピレーションを与える投稿を書く:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2220, '61', 'ko-KR', 'LinkedIn에 대한 영감을 주는 게시물 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2221, '61', 'ms-MY', 'Tulis catatan yang memberi inspirasi untuk LinkedIn tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2222, '61', 'nb-NO', 'Skriv inspirerende innlegg for LinkedIn om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2223, '61', 'pl-PL', 'Pisz inspirujące posty na LinkedIn na temat:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2224, '61', 'pt-PT', 'Escreva mensagens inspiradoras para o LinkedIn sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2225, '61', 'ru-RU', 'Пишите вдохновляющие посты для LinkedIn о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2226, '61', 'es-ES', 'Escribe publicaciones inspiradoras para LinkedIn sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2227, '61', 'sv-SE', 'Skriv inspirerande inlägg för LinkedIn om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2228, '61', 'tr-TR', 'hakkında LinkedIn için ilham verici yazılar yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2229, '61', 'pt-BR', 'Escreva postagens inspiradoras para o LinkedIn sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2230, '61', 'ro-RO', 'Scrieți postări inspiratoare pentru LinkedIn despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2231, '61', 'vi-VN', 'Viết các bài đăng đầy cảm hứng cho LinkedIn về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2232, '61', 'sw-KE', 'Andika machapisho ya kutia moyo kwa LinkedIn kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2233, '61', 'sl-SI', 'Pišite navdihujoče objave za LinkedIn o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2234, '61', 'th-TH', 'เขียนโพสต์ที่สร้างแรงบันดาลใจสำหรับ LinkedIn เกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2235, '61', 'uk-UA', 'Пишіть надихаючі дописи для LinkedIn про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2236, '61', 'lt-LT', 'Rašykite įkvepiančius „LinkedIn“ įrašus apie:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2237, '61', 'bg-BG', 'Пишете вдъхновяващи публикации за LinkedIn за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2238, '62', 'en-US', 'Generate 10 eye catching notification messages about:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2239, '62', 'ar-AE', 'إنشاء 10 رسائل إخطارات لافتة للنظر حول\\n\\n ##description## \\n\\n Tالوحيدة من صوت النتيجة يجب أن تكون:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2240, '62', 'cmn-CN', '生成 10 条引人注目的通知消息:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2241, '62', 'hr-HR', 'Generirajte 10 privlačnih poruka obavijesti o:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2242, '62', 'cs-CZ', 'Vygenerujte 10 poutavých oznámení o:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2243, '62', 'da-DK', 'Generer 10 iøjnefaldende meddelelser om:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2244, '62', 'nl-NL', 'Genereer 10 opvallende meldingsberichten over:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2245, '62', 'et-EE', 'Looge 10 pilkupüüdvat teavitussõnumit:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2246, '62', 'fi-FI', 'Luo 10 huomiota herättävää ilmoitusviestiä aiheesta:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2247, '62', 'fr-FR', 'Générez 10 messages de notification accrocheurs sur:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2248, '62', 'de-DE', 'Generieren Sie 10 auffällige Benachrichtigungen über:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2249, '62', 'el-GR', 'Δημιουργήστε 10 εντυπωσιακά μηνύματα ειδοποίησης σχετικά με:\\n\\n ##description## \\n\\n v:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2250, '62', 'he-IL', 'צור 10 הודעות התראה מושכות עין על\\n\\n ##description## \\n\\n טון הדיבור של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2251, '62', 'hi-IN', 'के बारे में 10 आकर्षक सूचना संदेश उत्पन्न करें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2252, '62', 'hu-HU', 'Hozzon létre 10 szemet gyönyörködtető értesítő üzenetet:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2253, '62', 'is-IS', 'Búðu til 10 áberandi tilkynningaskilaboð um:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2254, '62', 'id-ID', 'Hasilkan 10 pesan pemberitahuan yang menarik tentang:\\n\\n ##description## \\n\\n TNada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2255, '62', 'it-IT', 'Genera 10 messaggi di notifica accattivanti su:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2256, '62', 'ja-JP', '~についてLinkedInにインスピレーションを与える投稿を書く:\\n\\n ##description## \\n\\n 結果の声のトーンは、:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2257, '62', 'ko-KR', '10개의 눈길을 끄는 알림 메시지 생성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2258, '62', 'ms-MY', 'Hasilkan 10 mesej pemberitahuan yang menarik perhatian tentang:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2259, '62', 'nb-NO', 'Generer 10 iøynefallende varslingsmeldinger om:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2260, '62', 'pl-PL', 'Wygeneruj 10 przyciągających wzrok powiadomień o:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2261, '62', 'pt-PT', 'Gerar 10 mensagens de notificação atractivas sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2262, '62', 'ru-RU', 'Создайте 10 привлекающих внимание уведомлений о:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2263, '62', 'es-ES', 'Genere 10 mensajes de notificación llamativos sobre:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2264, '62', 'sv-SE', 'Generera 10 iögonfallande aviseringsmeddelanden om:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2265, '62', 'tr-TR', 'Hakkında 10 göz alıcı bildirim mesajı oluşturun:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2266, '62', 'pt-BR', 'Gerar 10 mensagens de notificação atraentes sobre:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2267, '62', 'ro-RO', 'Generați 10 mesaje de notificare atrăgătoare despre:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2268, '62', 'vi-VN', 'Tạo 10 tin nhắn thông báo bắt mắt về:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2269, '62', 'sw-KE', 'Tengeneza arifa 10 za kuvutia macho kuhusu:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2270, '62', 'sl-SI', 'Ustvarite 10 privlačnih obvestilnih sporočil o:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2271, '62', 'th-TH', 'สร้าง 10 ข้อความแจ้งเตือนที่สะดุดตาเกี่ยวกับ:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2272, '62', 'uk-UA', 'Створіть 10 привабливих сповіщень про:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2273, '62', 'lt-LT', 'Sukurkite 10 akį traukiančių pranešimų apie“ įrašus apie:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2274, '62', 'bg-BG', 'Генерирайте 10 привличащи вниманието уведомителни съобщения за:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2275, '63', 'en-US', 'Write a professional and eye-catching description for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2276, '63', 'ar-AE', 'اكتب وصفًا احترافيًا ولافت للنظر لإعلانات LinkedIn للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2277, '63', 'cmn-CN', '為以下產品的 LinkedIn 廣告撰寫專業且引人注目的描述,旨在:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2278, '63', 'hr-HR', 'Napišite profesionalan i privlačan opis za LinkedIn oglase za sljedeći proizvod usmjeren na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2279, '63', 'cs-CZ', 'Napište profesionální a poutavý popis pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2280, '63', 'da-DK', 'Skriv en professionel og iøjnefaldende beskrivelse af LinkedIn-annoncerne for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2281, '63', 'nl-NL', 'Schrijf een professionele en opvallende beschrijving voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2282, '63', 'et-EE', 'Kirjutage professionaalne ja pilkupüüdev kirjeldus järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2283, '63', 'fi-FI', 'Kirjoita ammattimainen ja huomiota herättävä kuvaus seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2284, '63', 'fr-FR', 'Rédigez une description professionnelle et accrocheuse pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2285, '63', 'de-DE', 'Verfassen Sie eine professionelle und auffällige Beschreibung für die LinkedIn-Anzeigen des folgenden Produkts mit deZielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (2286, '63', 'el-GR', 'Γράψτε μια επαγγελματική και εντυπωσιακή περιγραφή για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2287, '63', 'he-IL', 'כתוב תיאור מקצועי ומושך את העין למודעות הלינקדאין של המוצר הבא המכוונות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2288, '63', 'hi-IN', 'निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए एक पेशेवर और ध्यान आकर्षित करने वाला विवरण लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2289, '63', 'hu-HU', 'Írjon professzionális és szemet gyönyörködtető leírást az alábbi termékek LinkedIn hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2290, '63', 'is-IS', 'Skrifaðu faglega og áberandi lýsingu fyrir LinkedIn auglýsingar á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2291, '63', 'id-ID', 'Tulis deskripsi profesional dan menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2292, '63', 'it-IT', 'Scrivi una descrizione professionale e accattivante per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2293, '63', 'ja-JP', '次の商品を対象とした LinkedIn 広告について、専門的で人目を引く説明を書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2294, '63', 'ko-KR', '다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 전문적이고 눈길을 끄는 설명을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2295, '63', 'ms-MY', 'Tulis penerangan profesional dan menarik perhatian untuk iklan LinkedIn produk berikut yang bertujuan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2296, '63', 'nb-NO', 'Skriv en profesjonell og iøynefallende beskrivelse for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2297, '63', 'pl-PL', 'Napisz profesjonalny i przyciągający uwagę opis reklamy LinkedIn następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2298, '63', 'pt-PT', 'Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2299, '63', 'ru-RU', 'Напишите профессиональное и привлекательное описание для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2300, '63', 'es-ES', 'Escriba una descripción profesional y llamativa para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2301, '63', 'sv-SE', 'Skriv en professionell och iögonfallande beskrivning för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2302, '63', 'tr-TR', 'Aşağıdaki ürünün LinkedIn reklamları için profesyonel ve dikkat çekici bir açıklama yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2303, '63', 'pt-BR', 'Escreva uma descrição profissional e atraente para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2304, '63', 'ro-RO', 'Scrieți o descriere profesională și atrăgătoare pentru anunțurile LinkedIn ale următorului produs, care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2305, '63', 'vi-VN', 'Viết mô tả chuyên nghiệp và bắt mắt cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2306, '63', 'sw-KE', 'Andika maelezo ya kitaalamu na ya kuvutia macho ya matangazo ya LinkedIn ya bidhaa ifuatayo yanayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2307, '63', 'sl-SI', 'Napišite profesionalen in privlačen opis za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2308, '63', 'th-TH', 'เขียนคำอธิบายที่เป็นมืออาชีพและสะดุดตาสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2309, '63', 'uk-UA', 'Напишіть професійний і привабливий опис для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2310, '63', 'lt-LT', 'Parašykite profesionalų ir akį traukiantį šio produkto „LinkedIn“ skelbimų aprašą, skirtą:\n\n ##audience## \n\nProdukto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2311, '63', 'bg-BG', 'Напишете професионално и привличащо вниманието описание за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2312, '64', 'en-US', 'Write 10 catchy headlines for the LinkedIn ads of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2313, '64', 'ar-AE', 'اكتب 10 عناوين جذابة لإعلانات LinkedIn للمنتج التالي التي تستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2314, '64', 'cmn-CN', '為以下產品的 LinkedIn 廣告寫 10 個吸引人的標題,目的是:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2315, '64', 'hr-HR', 'Napišite 10 privlačnih naslova za LinkedIn oglase sljedećeg proizvoda koji ciljaju na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2316, '64', 'cs-CZ', 'Napište 10 chytlavých titulků pro reklamy LinkedIn na následující produkt zaměřený na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2317, '64', 'da-DK', 'Skriv 10 fængende overskrifter til LinkedIn-annoncerne for følgende produkt rettet mod::\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2318, '64', 'nl-NL', 'Schrijf 10 pakkende koppen voor de LinkedIn-advertenties van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2319, '64', 'et-EE', 'Kirjutage 10 meeldejäävat pealkirja järgmise toote LinkedIn reklaamidele, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2320, '64', 'fi-FI', 'Kirjoita 10 tarttuvaa otsikkoa seuraavan tuotteen LinkedIn-mainoksille, jotka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2321, '64', 'fr-FR', 'Rédigez 10 titres accrocheurs pour les publicités LinkedIn du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2322, '64', 'de-DE', 'Schreiben Sie 10 einprägsame Schlagzeilen für die LinkedIn-Anzeigen des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2323, '64', 'el-GR', 'Γράψτε 10 εντυπωσιακούς τίτλους για τις διαφημίσεις LinkedIn του παρακάτω προϊόντος που στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2324, '64', 'he-IL', 'כתוב 10 כותרות קליטות למודעות לינקדאין של המוצר הבא המיועדות ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2325, '64', 'hi-IN', 'निम्नलिखित उत्पाद के लिंक्डइन विज्ञापनों के लिए 10 आकर्षक सुर्खियाँ लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2326, '64', 'hu-HU', 'Írjon 10 fülbemászó címet a következő termék LinkedIn-hirdetéseihez, amelyek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2327, '64', 'is-IS', 'Skrifaðu 10 grípandi fyrirsagnir fyrir LinkedIn auglýsingarnar fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2328, '64', 'id-ID', 'Tulis 10 tajuk utama yang menarik untuk iklan LinkedIn dari produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2329, '64', 'it-IT', 'Scrivi 10 titoli accattivanti per gli annunci LinkedIn del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2330, '64', 'ja-JP', '次の製品を対象とした LinkedIn 広告のキャッチーな見出しを 10 個書いてください。\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2331, '64', 'ko-KR', '다음을 목표로 하는 다음 제품의 LinkedIn 광고에 대한 10개의 눈길을 끄는 헤드라인을 작성하십시오.\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2332, '64', 'ms-MY', 'Tulis 10 tajuk yang menarik untuk iklan LinkedIn produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2333, '64', 'nb-NO', 'Skriv 10 fengende overskrifter for LinkedIn-annonsene for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2334, '64', 'pl-PL', 'Napisz 10 chwytliwych nagłówków do reklam LinkedIn następującego produktu, których celem jest:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2335, '64', 'pt-PT', 'Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2336, '64', 'ru-RU', 'Напишите 10 броских заголовков для рекламы LinkedIn следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2337, '64', 'es-ES', 'Escriba 10 titulares atractivos para los anuncios de LinkedIn del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2338, '64', 'sv-SE', 'Skriv 10 catchy rubriker för LinkedIn-annonserna för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2339, '64', 'tr-TR', 'Aşağıdaki ürünün LinkedIn reklamları için akılda kalıcı 10 başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2340, '64', 'pt-BR', 'Escreva 10 títulos cativantes para os anúncios do LinkedIn do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2341, '64', 'ro-RO', 'Scrieți 10 titluri captivante pentru reclamele LinkedIn ale următorului produs care vizează:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2342, '64', 'vi-VN', 'Viết 10 tiêu đề hấp dẫn cho quảng cáo LinkedIn của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2343, '64', 'sw-KE', 'Andika vichwa 10 vya habari vya kuvutia vya matangazo ya LinkedIn vya bidhaa ifuatayo vinavyolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2344, '64', 'sl-SI', 'Napišite 10 privlačnih naslovov za oglase LinkedIn naslednjega izdelka, namenjenega:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2345, '64', 'th-TH', 'เขียนหัวข้อข่าว 10 หัวข้อที่น่าสนใจสำหรับโฆษณา LinkedIn ของผลิตภัณฑ์ต่อไปนี้โดยมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2346, '64', 'uk-UA', 'Напишіть 10 привабливих заголовків для реклами LinkedIn наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2347, '64', 'lt-LT', 'Parašykite 10 patrauklių antraščių šio produkto „LinkedIn“ skelbimams, skirtiems:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2348, '64', 'bg-BG', 'Напишете 10 закачливи заглавия за рекламите на LinkedIn на следния продукт, насочен към:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2349, '65', 'en-US', 'Write interesting outlines for a Youtube video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2350, '65', 'ar-AE', 'اكتب مخططات شيقة لفيديو يوتيوب حول:\n\n ##description## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2351, '65', 'cmn-CN', '為 Youtube 視訊撰寫有趣的大綱:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2352, '65', 'hr-HR', 'Napišite zanimljive nacrte za Youtube video o:\n\n ##description## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2353, '65', 'cs-CZ', 'Napište zajímavé osnovy pro video na YouTube o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2354, '65', 'da-DK', 'Skriv interessante oplæg til en Youtube-video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2355, '65', 'nl-NL', 'Schrijf interessante contouren voor een YouTube-video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2356, '65', 'et-EE', 'Kirjutage huvitavaid konspekte Youtube\'i video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2357, '65', 'fi-FI', 'Kirjoita mielenkiintoisia pääpiirteitä Youtube-videolle aiheesta:\n\n ##description## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2358, '65', 'fr-FR', 'Rédigez des plans intéressants pour une vidéo Youtube sur:\n\n ##description## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2359, '65', 'de-DE', 'Schreiben Sie interessante Skizzen für ein YouTube-Video darüber:\n\n ##description## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2360, '65', 'el-GR', 'Γράψτε ενδιαφέροντα περιγράμματα για ένα βίντεο στο Youtube:\n\n ##description## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2361, '65', 'he-IL', 'כתוב קווי מתאר מעניינים לסרטון יוטיוב על:\n\n ##description## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2362, '65', 'hi-IN', 'के बारे में एक Youtube वीडियो के लिए रोचक रूपरेखा लिखें:\n\n ##description## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2363, '65', 'hu-HU', 'Írj érdekes vázlatokat egy Youtube-videóhoz, amelyről szól:\n\n ##description## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2364, '65', 'is-IS', 'Skrifaðu áhugaverðar útlínur fyrir Youtube myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2365, '65', 'id-ID', 'Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2366, '65', 'it-IT', 'Scrivi schemi interessanti per un video di Youtube su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2367, '65', 'ja-JP', '~についての YouTube ビデオの興味深い概要を書きます:\n\n ##description## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2368, '65', 'ko-KR', 'YouTube 비디오에 대한 흥미로운 개요를 작성하십시오.:\n\n ##description## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2369, '65', 'ms-MY', 'Tulis garis besar yang menarik untuk video Youtube tentang:\n\n ##description## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2370, '65', 'nb-NO', 'Skriv interessante skisser for en Youtube-video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2371, '65', 'pl-PL', 'Napisz ciekawe konspekty do filmu na Youtube o:\n\n ##description## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2372, '65', 'pt-PT', 'Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2373, '65', 'ru-RU', 'Напишите интересные наброски для видео на Youtube о:\n\n ##description## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2374, '65', 'es-ES', 'Escriba esquemas interesantes para un video de Youtube sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2375, '65', 'sv-SE', 'Skriv intressanta konturer för en Youtube-video om:\n\n ##description## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2376, '65', 'tr-TR', 'Hakkında bir Youtube videosu için ilginç ana hatlar yazın:\n\n ##description## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2377, '65', 'pt-BR', 'Escreva esboços interessantes para um vídeo do Youtube sobre:\n\n ##description## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2378, '65', 'ro-RO', 'Scrieți schițe interesante pentru un videoclip YouTube despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2379, '65', 'vi-VN', 'Viết dàn ý thú vị cho một video Youtube về:\n\n ##description## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2380, '65', 'sw-KE', 'Andika muhtasari wa kuvutia wa video ya Youtube kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2381, '65', 'sl-SI', 'Napišite zanimive osnutke za Youtube video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2382, '65', 'th-TH', 'เขียนโครงร่างที่น่าสนใจสำหรับวิดีโอ Youtube เกี่ยวกับ:\n\n ##description## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2383, '65', 'uk-UA', 'Напишіть цікаві плани для відео на Youtube про:\n\n ##description## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2384, '65', 'lt-LT', 'Parašykite įdomius „YouTube“ vaizdo įrašo kontūrus:\n\n ##description## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2385, '65', 'bg-BG', 'Напишете интересни очертания за видеоклип в Youtube за:\n\n ##description## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2386, '66', 'en-US', 'Generate engaging twitter threads based on a ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2387, '66', 'ar-AE', 'إنشاء مواضيع تويتر جذابة على أساس أ ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2388, '66', 'cmn-CN', '基于 ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2389, '66', 'hr-HR', 'Generirajte zanimljive teme na Twitteru na temelju a ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2390, '66', 'cs-CZ', 'Generujte poutavá twitterová vlákna na základě a ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2391, '66', 'da-DK', 'Generer engagerende twitter-tråde baseret på en ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2392, '66', 'nl-NL', 'Genereer boeiende Twitter-threads op basis van een ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2393, '66', 'et-EE', 'Looge köitvaid Twitteri lõime, mis põhinevad a ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2394, '66', 'fi-FI', 'Luo kiinnostavia twitter-säikeitä a ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2395, '66', 'fr-FR', 'Générez des fils Twitter attrayants basés sur un ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2396, '66', 'de-DE', 'Generieren Sie ansprechende Twitter-Threads basierend auf a ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2397, '66', 'el-GR', 'Δημιουργήστε ελκυστικά νήματα στο twitter με βάση το α ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2398, '66', 'he-IL', 'צור שרשורי טוויטר מרתקים המבוססים על א ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2399, '66', 'hi-IN', 'एक के आधार पर आकर्षक ट्विटर सूत्र उत्पन्न करें ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2400, '66', 'hu-HU', 'Lebilincselő twitter-szálak létrehozása a ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2401, '66', 'is-IS', 'Búðu til grípandi twitter þræði byggða á a ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2402, '66', 'id-ID', 'Hasilkan utas twitter yang menarik berdasarkan a ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2403, '66', 'it-IT', 'Genera thread Twitter coinvolgenti basati su a ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2404, '66', 'ja-JP', 'に基づいて魅力的な Twitter スレッドを生成します ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2405, '66', 'ko-KR', '기반으로 매력적인 트위터 스레드 생성 ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2406, '66', 'ms-MY', 'Hasilkan benang twitter yang menarik berdasarkan a ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2407, '66', 'nb-NO', 'Generer engasjerende twitter-tråder basert på en ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2408, '66', 'pl-PL', 'Generuj angażujące wątki na Twitterze w oparciu o ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2409, '66', 'pt-PT', 'Gere tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2410, '66', 'ru-RU', 'Создавайте привлекательные темы в Твиттере на основе ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2411, '66', 'es-ES', 'Genere hilos de twitter atractivos basados en un ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2412, '66', 'sv-SE', 'Skapa engagerande twittertrådar baserat på en ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2413, '66', 'tr-TR', 'Bir temele dayalı ilgi çekici twitter ileti dizileri oluşturun ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2414, '66', 'pt-BR', 'Gerar tópicos envolventes no Twitter com base em um ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2415, '66', 'ro-RO', 'Generați fire de twitter captivante pe baza a ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2416, '66', 'vi-VN', 'Tạo chủ đề twitter hấp dẫn dựa trên ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2417, '66', 'sw-KE', 'Tengeneza nyuzi zinazovutia za twitter kulingana na a ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2418, '66', 'sl-SI', 'Ustvarite privlačne niti na Twitterju na podlagi a ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2419, '66', 'th-TH', 'สร้างเธรด Twitter ที่น่าสนใจตาม ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2420, '66', 'uk-UA', 'Створюйте захоплюючі теми Twitter на основі a ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2421, '66', 'lt-LT', 'Kurkite patrauklias Twitter gijas pagal a ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2422, '66', 'bg-BG', 'Генерирайте ангажиращи нишки в Twitter въз основа на a ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2423, '67', 'en-US', 'Generate social post captions ready to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2424, '67', 'ar-AE', 'أنشئ تعليقات منشورات اجتماعية جاهزة لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2425, '67', 'cmn-CN', '生成社交帖子标题以吸引注意力:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2426, '67', 'hr-HR', 'Generirajte naslove postova na društvenim mrežama spremne da privuku pozornost o:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2427, '67', 'cs-CZ', 'Vytvářejte titulky sociálních příspěvků připravené upoutat pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2428, '67', 'da-DK', 'Generer sociale indlægstekster klar til at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2429, '67', 'nl-NL', 'Genereer bijschriften voor sociale berichten die klaar zijn om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2430, '67', 'et-EE', 'Looge sotsiaalsete postituste subtiitreid, mis on valmis tähelepanu köitma järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2431, '67', 'fi-FI', 'Luo sosiaalisten viestien kuvatekstejä, jotka ovat valmiita kiinnittämään huomiota:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2432, '67', 'fr-FR', 'Générez des légendes de publications sociales prêtes à attirer l\'attention sur:\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2433, '67', 'de-DE', 'Erstellen Sie Bildunterschriften für Social-Media-Beiträge, die Aufmerksamkeit erregen:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2434, '67', 'el-GR', 'Δημιουργήστε υπότιτλους αναρτήσεων κοινωνικής δικτύωσης έτοιμοι να τραβήξουν την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2435, '67', 'he-IL', 'צור כתוביות לפוסטים חברתיים מוכנים למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2436, '67', 'hi-IN', 'इस बारे में ध्यान आकर्षित करने के लिए तैयार सामाजिक पोस्ट कैप्शन तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2437, '67', 'hu-HU', 'Hozzon létre közösségi bejegyzések feliratait, amelyek felkelthetik a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2438, '67', 'is-IS', 'Búðu til myndatexta fyrir félagslegar færslur tilbúnar til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2439, '67', 'id-ID', 'Hasilkan teks pos sosial yang siap menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2440, '67', 'it-IT', 'Genera didascalie per post social pronte ad attirare l\'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2441, '67', 'ja-JP', '以下について注目を集めるソーシャル投稿のキャプションを生成します:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2442, '67', 'ko-KR', '관심을 끌 준비가 된 소셜 게시물 캡션 생성:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2443, '67', 'ms-MY', 'Hasilkan kapsyen siaran sosial sedia untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2444, '67', 'nb-NO', 'Generer sosiale innleggstekster klare til å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2445, '67', 'pl-PL', 'Generuj podpisy postów w mediach społecznościowych gotowe do przyciągnięcia uwagi na temat:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2446, '67', 'pt-PT', 'Gere legendas de postagens sociais prontas para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2447, '67', 'ru-RU', 'Создавайте подписи к постам в соцсетях, готовые привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2448, '67', 'es-ES', 'Genere subtítulos de publicaciones sociales listos para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2449, '67', 'sv-SE', 'Skapa sociala inläggstexter redo att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2450, '67', 'tr-TR', 'Aşağıdaki konularda dikkat çekmeye hazır sosyal gönderi altyazıları oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2451, '67', 'pt-BR', 'Gere legendas de publicações sociais prontas para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2452, '67', 'ro-RO', 'Generați subtitrări pentru postările sociale gata să atragă atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2453, '67', 'vi-VN', 'Tạo chú thích bài đăng xã hội sẵn sàng thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2454, '67', 'sw-KE', 'Tengeneza vichwa vya machapisho ya kijamii tayari kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2455, '67', 'sl-SI', 'Ustvarite napise družabnih objav, ki bodo pripravljeni pritegniti pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2456, '67', 'th-TH', 'สร้างคำอธิบายภาพโพสต์โซเชียลพร้อมที่จะดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2457, '67', 'uk-UA', 'Створюйте підписи до публікацій у соціальних мережах, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2458, '67', 'lt-LT', 'Generuokite socialinių pranešimų antraštes, paruoštas atkreipti dėmesį į:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2459, '67', 'bg-BG', 'Генерирайте надписи за социални публикации, готови да привлекат вниманието за:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2460, '68', 'en-US', 'Generate youtube channel intro to grab attention adbout:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2461, '68', 'ar-AE', 'أنشئ مقدمة لقناة youtube لجذب الانتباه حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2462, '68', 'cmn-CN', '生成 youtube 频道介绍以吸引关注:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2463, '68', 'hr-HR', 'Generirajte uvod za youtube kanal kako biste privukli pozornost na:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2464, '68', 'cs-CZ', 'Vygenerujte úvod kanálu youtube, abyste upoutali pozornost na:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2465, '68', 'da-DK', 'Generer YouTube-kanalintro for at fange opmærksomhed om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2466, '68', 'nl-NL', 'Genereer YouTube-kanaalintro om de aandacht te trekken over:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2467, '68', 'et-EE', 'Looge YouTube\'i kanali tutvustus, et köita tähelepanu järgmistel teemadel:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2468, '68', 'fi-FI', 'Luo YouTube-kanavan esittely herättääksesi huomion:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2469, '68', 'fr-FR', 'Générez une introduction de chaîne YouTube pour attirer l\'attention sur :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2470, '68', 'de-DE', 'Erstellen Sie ein YouTube-Kanal-Intro, um Aufmerksamkeit zu erregen auf:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2471, '68', 'el-GR', 'Δημιουργήστε εισαγωγή καναλιού YouTube για να τραβήξετε την προσοχή σχετικά με:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2472, '68', 'he-IL', 'צור מבוא ערוץ יוטיוב כדי למשוך תשומת לב לגבי:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2473, '68', 'hi-IN', 'इस बारे में ध्यान आकर्षित करने के लिए यूट्यूब चैनल का परिचय तैयार करें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2474, '68', 'hu-HU', 'Hozzon létre egy YouTube-csatorna bevezetőt, hogy felhívja magára a figyelmet:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2475, '68', 'is-IS', 'Búðu til kynningu á YouTube rás til að vekja athygli á:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2476, '68', 'id-ID', 'Hasilkan intro saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2477, '68', 'it-IT', 'Genera l\'introduzione del canale YouTube per attirare l\'attenzione su:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2478, '68', 'ja-JP', 'YouTube チャンネルのイントロを生成して、次の点について注目を集めます:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2479, '68', 'ko-KR', '다음에 대한 관심을 끌기 위해 YouTube 채널 소개를 생성합니다:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2480, '68', 'ms-MY', 'Hasilkan pengenalan saluran youtube untuk menarik perhatian tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2481, '68', 'nb-NO', 'Generer youtube-kanalintro for å fange oppmerksomhet om:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2482, '68', 'pl-PL', 'Wygeneruj wprowadzenie do kanału YouTube, aby zwrócić uwagę na:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2483, '68', 'pt-PT', 'Gere a introdução do canal do youtube para chamar a atenção sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2484, '68', 'ru-RU', 'Создайте интро для канала YouTube, чтобы привлечь внимание:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2485, '68', 'es-ES', 'Genere la introducción del canal de YouTube para llamar la atención sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2486, '68', 'sv-SE', 'Skapa youtube-kanalintro för att fånga uppmärksamhet om:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (2487, '68', 'tr-TR', 'Dikkat çekmek için youtube kanalı tanıtımı oluşturun:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2488, '68', 'pt-BR', 'Gerar uma introdução de canal do YouTube para chamar a atenção:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2489, '68', 'ro-RO', 'Generați introducerea canalului YouTube pentru a atrage atenția despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2490, '68', 'vi-VN', 'Tạo phần giới thiệu kênh youtube để thu hút sự chú ý về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2491, '68', 'sw-KE', 'Tengeneza utangulizi wa kituo cha youtube ili kuvutia umakini kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2492, '68', 'sl-SI', 'Ustvarite uvod v youtube kanal, da pritegnete pozornost na:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2493, '68', 'th-TH', 'สร้างบทนำช่อง YouTube เพื่อดึงดูดความสนใจเกี่ยวกับ:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2494, '68', 'uk-UA', 'Створіть заставку для каналу YouTube, щоб привернути увагу до:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2495, '68', 'lt-LT', 'Sukurkite „YouTube“ kanalo įvadą, kad patrauktumėte dėmesį:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2496, '68', 'bg-BG', 'Генерирайте въведение в канал в YouTube, за да привлечете вниманието към:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2497, '69', 'en-US', 'Write trendy hashtags for video about:\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2498, '69', 'ar-AE', 'اكتب علامات التجزئة العصرية للفيديو حول:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2499, '69', 'cmn-CN', '撰寫有關視訊的趨勢雜湊標籤:\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2500, '69', 'hr-HR', 'Napišite trendi hashtagove za video o tome:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2501, '69', 'cs-CZ', 'Napište trendy hashtagy pro video o:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2502, '69', 'da-DK', 'Skriv trendy hashtags til video om:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2503, '69', 'nl-NL', 'Schrijf trendy hashtags voor video over:\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2504, '69', 'et-EE', 'Kirjutage trendikaid räsimärke video jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2505, '69', 'fi-FI', 'Kirjoita trendikkäitä hashtageja videoon aiheesta:\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2506, '69', 'fr-FR', 'Écrivez des hashtags à la mode pour la vidéo sur:\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2507, '69', 'de-DE', 'Schreiben Sie trendige Hashtags für Videos darüber:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2508, '69', 'el-GR', 'Γράψτε μοντέρνα hashtags για βίντεο:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2509, '69', 'he-IL', 'כתוב האשטאגים אופנתיים לסרטון על:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2510, '69', 'hi-IN', 'वीडियो के बारे में ट्रेंडी हैशटैग लिखें:\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2511, '69', 'hu-HU', 'Írj divatos hashtageket a videóhoz:\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2512, '69', 'is-IS', 'Skrifaðu töff hashtags fyrir myndband um:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2513, '69', 'id-ID', 'Tulis tagar trendi untuk video tentang:\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2514, '69', 'it-IT', 'Scrivi hashtag alla moda per i video su:\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2515, '69', 'ja-JP', 'についての動画に流行のハッシュタグを書きます:\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2516, '69', 'ko-KR', '동영상에 대한 최신 해시태그를 작성하세요.:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2517, '69', 'ms-MY', 'Tulis hashtag yang bergaya untuk video tentang:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2518, '69', 'nb-NO', 'Skriv trendy hashtags for video om:\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2519, '69', 'pl-PL', 'Napisz modne hashtagi do filmu o:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2520, '69', 'pt-PT', 'Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2521, '69', 'ru-RU', 'Пишите модные хэштеги для видео о:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2522, '69', 'es-ES', 'Escribe hashtags de moda para videos sobre:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2523, '69', 'sv-SE', 'Skriv trendiga hashtags för video om:\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2524, '69', 'tr-TR', 'hakkında video için modaya uygun hashtag\'ler yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2525, '69', 'pt-BR', 'Escreva hashtags da moda para vídeos sobre:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2526, '69', 'ro-RO', 'Scrie hashtag-uri la modă pentru videoclipuri despre:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2527, '69', 'vi-VN', 'Viết các thẻ bắt đầu bằng # hợp thời trang cho video về:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2528, '69', 'sw-KE', 'Andika lebo za reli maarufu za video kuhusu:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2529, '69', 'sl-SI', 'Napišite trendovske hashtage za video o:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2530, '69', 'th-TH', 'เขียนแฮชแท็กยอดนิยมสำหรับวิดีโอเกี่ยวกับ:\n\n ##description## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2531, '69', 'uk-UA', 'Напишіть модні хештеги для відео про:\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2532, '69', 'lt-LT', 'Rašykite madingas žymas su grotelėmis vaizdo įrašams apie:\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2533, '69', 'bg-BG', 'Write trendy hashtags for video about:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2534, '70', 'en-US', 'Write 10 short and simple article outlines about:\n\n ##description## \n\nBlog article title:\n ##title## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2535, '70', 'ar-AE', 'اكتب 10 مقال موجز وبسيط الخطوط العريضة عنه:\n\n ##description## \n\nعنوان مقال المدونة:\n ##title## \n\n Tالوحيدة من صوت النتيجة يجب أن تكون:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2536, '70', 'cmn-CN', '撰寫 10 篇簡短且簡單的文章概述:\n\n ##description## \n\n部落格文章標題:\n ##title## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2537, '70', 'hr-HR', 'Napišite 10 kratkih i jednostavnih nacrta članaka o:\n\n ##description## \n\nNaslov članka na blogu:\n ##title## \n\n Ton glasa za rezultat mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2538, '70', 'cs-CZ', 'Napište 10 krátkých a jednoduchých nástin článku o:\n\n ##description## \n\nNázev článku na blogu:\n ##title## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2539, '70', 'da-DK', 'Skriv 10 korte og enkle artikeloversigter om:\n\n ##description## \n\nBlog artiklens titel:\n ##title## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2540, '70', 'nl-NL', 'Schrijf 10 korte en eenvoudige artikeloverzichten over:\n\n ##description## \n\nTitel blogartikele:\n ##title## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2541, '70', 'et-EE', 'Kirjutage 10 lühikest ja lihtsat artikli ülevaadet:\n\n ##description## \n\nBlogi artikli pealkiri:\n ##title## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2542, '70', 'fi-FI', 'Kirjoita 10 lyhyttä ja yksinkertaista artikkelin päättelyä aiheesta:\n\n ##description## \n\nBlogin artikkelin otsikko:\n ##title## \n\n Tuloksen äänen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2543, '70', 'fr-FR', 'Rédigez 10 résumés d\'articles courts et simples sur:\n\n ##description## \n\nBTitre de l\'article du blog:\n ##title## \n\n Le Tone de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2544, '70', 'de-DE', 'Schreiben Sie 10 kurze und einfache Artikelskizzen zum Thema:\n\n ##description## \n\nTitel des Blogartikels:\n ##title## \n\n Ton der Stimme des Ergebnisses muss:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2545, '70', 'el-GR', 'Γράψτε 10 σύντομες και απλές περιγραφές άρθρων για:\n\n ##description## \n\nΤίτλος άρθρου ιστολογίου:\n ##title## \n\n Η φωνή του αποτελέσματος πρέπει να είναι ...:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2546, '70', 'he-IL', 'כתוב 10 קווי מתאר קצרים ופשוטים של מאמרים בנושא:\n\n ##description## \n\nכותרת המאמר בבלוג:\n ##title## \n\n טון הדיבור של הפסקאות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2547, '70', 'hi-IN', 'के बारे में 10 छोटे और सरल लेख की रूपरेखा लिखें:\n\n ##description## \n\nब्लॉग लेख का शीर्षक:\n ##title## \n\n परिणाम की आवाज का स्वर होना चाहिए ।:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2548, '70', 'hu-HU', 'Írj 10 rövid és egyszerű cikkvázlatot erről:\n\n ##description## \n\nBlog cikk címe:\n ##title## \n\n Az eredmény hangjának meg kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2549, '70', 'is-IS', 'Skrifaðu 10 stuttar og einfaldar greinar um:\n\n ##description## \n\nTitill blogggreinar:\n ##title## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2550, '70', 'id-ID', 'Tulis 10 garis besar artikel pendek dan sederhana tentang:\n\n ##description## \n\nTitolo dell\'articolo del blog:\n ##title## \n\n Nada suara hasilnya harus dibuat.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2551, '70', 'it-IT', 'Scrivi 10 brevi e semplici schemi di articoli su:\n\n ##description## \n\nブログ記事タイトル:\n ##title## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2552, '70', 'ja-JP', '~についての短くて簡単な記事の概要を 10 個書きます:\n\n ##description## \n\nBlog article title:\n ##title## \n\n 結果の声のトーンは、:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2553, '70', 'ko-KR', '10개의 짧고 간단한 기사 개요를 작성하십시오.:\n\n ##description## \n\n블로그 기사 제목:\n ##title## \n\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2554, '70', 'ms-MY', 'Tulis 10 rangka artikel ringkas dan ringkas tentang:\n\n ##description## \n\nTajuk artikel blog:\n ##title## \n\n Nada suara hasilnya mesti.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2555, '70', 'nb-NO', 'Skriv 10 korte og enkle artikkelskisser om:\n\n ##description## \n\nBloggartikkeltittel:\n ##title## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2556, '70', 'pl-PL', 'Napisz 10 krótkich i prostych konspektów artykułów nt:\n\n ##description## \n\nTytuł artykułu na blogu:\n ##title## \n\n Ton głosu w wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2557, '70', 'pt-PT', 'Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2558, '70', 'ru-RU', 'Напишите 10 коротких и простых статей о:\n\n ##description## \n\nНазвание статьи в блоге:\n ##title## \n\n Тон голоса результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2559, '70', 'es-ES', 'Escribe 10 reseñas breves y sencillas de artículos sobre:\n\n ##description## \n\nTítulo del artículo del blog:\n ##title## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2560, '70', 'sv-SE', 'Skriv 10 korta och enkla artikelskisser om:\n\n ##description## \n\nBloggartikelns titel:\n ##title## \n\n Ton av resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2561, '70', 'tr-TR', 'Hakkında 10 kısa ve basit makale özeti yazın:\n\n ##description## \n\nBlog makalesi başlığı:\n ##title## \n\n Sonucun sesinin tonu olmalı:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2562, '70', 'pt-BR', 'Escreva 10 esboços de artigos curtos e simples sobre:\n\n ##description## \n\nTítulo do artigo do blog:\n ##title## \n\n Tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2563, '70', 'ro-RO', 'Scrieți 10 contururi scurte și simple despre articole:\n\n ##description## \n\nTitlul articolului de pe blog:\n ##title## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2564, '70', 'vi-VN', 'Viết 10 dàn ý bài viết ngắn và đơn giản về:\n\n ##description## \n\nTiêu đề bài viết trên blog:\n ##title## \n\n Giọng nói của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2565, '70', 'sw-KE', 'Andika muhtasari wa makala 10 fupi na rahisi kuhusu:\n\n ##description## \n\nKichwa cha makala ya blogu:\n ##title## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2566, '70', 'sl-SI', 'Napišite 10 kratkih in preprostih orisov člankov o:\n\n ##description## \n\nNaslov članka v blogu:\n ##title## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2567, '70', 'th-TH', 'เขียนโครงร่างบทความสั้นๆ ง่ายๆ 10 บทความเกี่ยวกับ:\n\n ##description## \n\nชื่อบทความบล็อก:\n ##title## \n\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2568, '70', 'uk-UA', 'Напишіть 10 коротких і простих нарисів статей про:\n\n ##description## \n\nНазва статті блогу:\n ##title## \n\n Тон голосу результату має бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2569, '70', 'lt-LT', 'Parašykite 10 trumpų ir paprastų straipsnio apybraižų apie:\n\n ##description## \n\nTinklaraščio straipsnio pavadinimas:\n ##title## \n\n Balso tonas rezultatas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2570, '70', 'bg-BG', 'Напишете 10 кратки и прости очертания на статии за:\n\n ##description## \n\nЗаглавие на статията в блога:\n ##title## \n\n Тон на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2571, '71', 'en-US', 'Write SEO meta title and description for a blog post about:\n\n ##description## \n\n Blog title:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2572, '71', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لمنشور مدونة حول:\n\n ##description## \n\n عنوان المدونة:\n ##title## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2573, '71', 'cmn-CN', '為有關以下內容的博客文章編寫 SEO 元標題和描述:\n\n ##description## \n\n 博客標題:\n ##title## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2574, '71', 'hr-HR', 'Napišite SEO meta naslov i opis za blog post o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2575, '71', 'cs-CZ', 'Napište SEO meta název a popis pro blogový příspěvek o:\n\n ##description## \n\n Název blogu:\n ##title## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2576, '71', 'da-DK', 'Skriv SEO meta titel og beskrivelse til et blogindlæg om:\n\n ##description## \n\n Blog titel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2577, '71', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een blogpost over:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2578, '71', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus blogipostituse jaoks, mis käsitleb:\n\n ##description## \n\n Blogi pealkiri:\n ##title## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2579, '71', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus blogitekstille aiheesta:\n\n ##description## \n\n Blogin otsikko:\n ##title## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2580, '71', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour un article de blog sur :\n\n ##description## \n\n Titre du Blog:\n ##title## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2581, '71', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für einen Blogbeitrag über:\n\n ##description## \n\n Blog Titel:\n ##title## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2582, '71', 'el-GR', 'Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια ανάρτηση ιστολογίου σχετικά με:\n\n ##description## \n\n Τίτλος Ιστολογίου:\n ##title## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2583, '71', 'he-IL', 'כתוב מטא כותרת ותיאור של SEO עבור פוסט בבלוג על:\n\n ##description## \n\n כותרת הבלוג:\n ##title## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2584, '71', 'hi-IN', 'निम्नलिखित के बारे में ब्लॉग पोस्ट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n ब्लॉग का शीर्षक:\n ##title## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2585, '71', 'hu-HU', 'Írjon SEO metacímet és leírást egy blogbejegyzéshez:\n\n ##description## \n\n Blog cím:\n ##title## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2586, '71', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir bloggfærslu um:\n\n ##description## \n\n Titill bloggsins:\n ##title## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2587, '71', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk posting blog tentang:\n\n ##description## \n\n Judul blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2588, '71', 'it-IT', 'Scrivi il meta titolo e la descrizione SEO per un post sul blog su:\n\n ##description## \n\n Titolo del Blog:\n ##title## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2589, '71', 'ja-JP', '以下に関するブログ投稿の SEO メタ タイトルと説明を作成します。\n\n ##description## \n\n ブログのタイトル:\n ##title## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2590, '71', 'ko-KR', '다음에 대한 블로그 게시물의 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n 블로그 제목:\n ##title## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2591, '71', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk catatan blog tentang:\n\n ##description## \n\n Tajuk blog:\n ##title## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2592, '71', 'nb-NO', 'Skriv SEO-metatittel og beskrivelse for et blogginnlegg om:\n\n ##description## \n\n Bloggtittel:\n ##title## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2593, '71', 'pl-PL', 'Napisz meta tytuł i opis SEO dla posta na blogu na temat:\n\n ##description## \n\n Tytuł bloga:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2594, '71', 'pt-PT', 'Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2595, '71', 'ru-RU', 'Напишите SEO мета-заголовок и описание для сообщения в блоге о:\n\n ##description## \n\n Название блога:\n ##title## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2596, '71', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para una publicación de blog sobre:\n\n ##description## \n\n Titulo de Blog:\n ##title## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2597, '71', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för ett blogginlägg om:\n\n ##description## \n\n Bloggtitel:\n ##title## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2598, '71', 'tr-TR', 'Aşağıdakilerle ilgili bir blog yazısı için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Blog başlığı:\n ##title## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2599, '71', 'pt-BR', 'Escreva meta título e descrição de SEO para um post de blog sobre:\n\n ##description## \n\n Título do Blog:\n ##title## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2600, '71', 'ro-RO', 'Scrieți meta titlul și descrierea SEO pentru o postare de blog despre:\n\n ##description## \n\n Titlu de Blog:\n ##title## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2601, '71', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho một bài đăng trên blog về:\n\n ##description## \n\n Tiêu đề Blog:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2602, '71', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya chapisho la blogi kuhusu:\n\n ##description## \n\n Jina la blogi:\n ##title## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2603, '71', 'sl-SI', 'Napišite meta naslov in opis SEO za objavo v spletnem dnevniku o:\n\n ##description## \n\n Naslov bloga:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2604, '71', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับโพสต์บล็อกเกี่ยวกับ:\n\n ##description## \n\n ชื่อบล็อก:\n ##title## \n\n คำเมล็ด:\n ##keywords## \n\n เสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2605, '71', 'uk-UA', 'Напишіть метазаголовок і опис SEO для публікації в блозі про:\n\n ##description## \n\n Назва блогу:\n ##title## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2606, '71', 'lt-LT', 'Parašykite SEO meta pavadinimą ir aprašą tinklaraščio įrašui apie:\n\n ##description## \n\n Tinklaraščio pavadinimas:\n ##title## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2607, '71', 'bg-BG', 'Напишете мета заглавие и описание на SEO за публикация в блог за:\n\n ##description## \n\n Заглавие на блога:\n ##title## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2608, '72', 'en-US', 'Write SEO meta title and description for a website about:\n ##description## \n\nWebsite Name:\n ##title## \n\nSeed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2609, '72', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لموقع ويب حول:\n ##description## \n\nاسم الموقع:\n ##title## \n\nكلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2610, '72', 'cmn-CN', '為網站編寫 SEO 元標題和描述:\n ##description## \n\n網站名稱:\n ##title## \n\n種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2611, '72', 'hr-HR', 'Napišite SEO meta naslov i opis za web stranicu o:\n ##description## \n\nNaziv web stranice:\n ##title## \n\nRiječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2612, '72', 'cs-CZ', 'Napište SEO meta název a popis pro web o:\n ##description## \n\nNázev webu:\n ##title## \n\nSeed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2613, '72', 'da-DK', 'Skriv SEO meta titel og beskrivelse til en hjemmeside om:\n ##description## \n\nHjemmesidenavn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2614, '72', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een website over:\n ##description## \n\nwebsite naam:\n ##title## \n\nZaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2615, '72', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus veebisaidile, mis käsitleb:\n ##description## \n\nVeebisaidi nimi:\n ##title## \n\nSeemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2616, '72', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus verkkosivustolle aiheesta:\n ##description## \n\nVerkkosivuston nimi:\n ##title## \n\nSiemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2617, '72', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour un site Web sur :\n ##description## \n\nNom du site Web:\n ##title## \n\nMots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2618, '72', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Website über:\n ##description## \n\nWebseiten-Name:\n ##title## \n\nSamenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2619, '72', 'el-GR', 'Γράψτε μετα-τίτλο SEO και περιγραφή για έναν ιστότοπο σχετικά με:\n ##description## \n\nΌνομα ιστότοπου:\n ##title## \n\nΣπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2620, '72', 'he-IL', 'כתוב מטא כותרת ותיאור של SEO עבור אתר אינטרנט על:\n ##description## \n\nשם האתר:\n ##title## \n\nמילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2621, '72', 'hi-IN', 'किसी वेबसाइट के लिए SEO मेटा शीर्षक और विवरण लिखें:\n ##description## \n\nवेबसाइट का नाम:\n ##title## \n\nबीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2622, '72', 'hu-HU', 'Írjon SEO metacímet és leírást egy webhelyhez:\n ##description## \n\nWebhely neve:\n ##title## \n\nMagszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2623, '72', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir vefsíðu um:\n ##description## \n\nHeiti vefsíðu:\n ##title## \n\nFræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2624, '72', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk situs web tentang:\n ##description## \n\nNama Situs Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2625, '72', 'it-IT', 'Scrivi meta titolo e descrizione SEO per un sito web su:\n ##description## \n\nNome del sito web:\n ##title## \n\nParole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2626, '72', 'ja-JP', 'Web サイトの SEO メタ タイトルと説明を以下について書きます。\n ##description## \n\nウェブサイト名:\n ##title## \n\nシードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2627, '72', 'ko-KR', '다음에 대한 웹사이트의 SEO 메타 제목 및 설명 작성:\n ##description## \n\n웹사이트 이름:\n ##title## \n\n시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2628, '72', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk tapak web tentang:\n ##description## \n\nNama Laman Web:\n ##title## \n\nKata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2629, '72', 'nb-NO', 'Skriv SEO-metatittel og beskrivelse for et nettsted om:\n ##description## \n\nNettstedets navn:\n ##title## \n\nFrøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2630, '72', 'pl-PL', 'Napisz meta tytuł i opis SEO dla strony internetowej o:\n ##description## \n\nNazwa strony:\n ##title## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2631, '72', 'pt-PT', 'Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2632, '72', 'ru-RU', 'Напишите мета-заголовок и описание SEO для веб-сайта о:\n ##description## \n\nНазвание веб-сайта:\n ##title## \n\nИсходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2633, '72', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para un sitio web sobre:\n ##description## \n\nNombre del Sitio Web:\n ##title## \n\nPalabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2634, '72', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för en webbplats om:\n ##description## \n\nWebbplatsens namn:\n ##title## \n\nFrö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2635, '72', 'tr-TR', 'Aşağıdakilerle ilgili bir web sitesi için SEO meta başlığı ve açıklaması yazın:\n ##description## \n\nWeb Sitesi Adı:\n ##title## \n\ntohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2636, '72', 'pt-BR', 'Escreva meta título e descrição de SEO para um site sobre:\n ##description## \n\nNome do site:\n ##title## \n\npalavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2637, '72', 'ro-RO', 'Scrieți meta titlul și descrierea SEO pentru un site web despre:\n ##description## \n\nNumele site-ului:\n ##title## \n\nCuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2638, '72', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho một trang web về:\n ##description## \n\nTên trang web:\n ##title## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2639, '72', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya tovuti kuhusu:\n ##description## \n\nJina la Tovuti:\n ##title## \n\nManeno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2640, '72', 'sl-SI', 'Napišite meta naslov in opis SEO za spletno mesto o:\n ##description## \n\nIme spletnega mesta:\n ##title## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2641, '72', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับเว็บไซต์เกี่ยวกับ:\n ##description## \n\nชื่อเว็บไซต์:\n ##title## \n\nคำเมล็ด:\n ##keywords## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2642, '72', 'uk-UA', 'Напишіть мета-заголовок і опис SEO для веб-сайту про:\n ##description## \n\n Назва сайту:\n ##title## \n\nНасіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2643, '72', 'lt-LT', 'Parašykite svetainės SEO metapavadinimą ir aprašą apie:\n ##description## \n\nSvetainės pavadinimas:\n ##title## \n\nSėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2644, '72', 'bg-BG', 'Напишете SEO мета заглавие и описание за уебсайт за:\n ##description## \n\nИме на уебсайт:\n ##title## \n\nСеменни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2645, '73', 'en-US', 'Write SEO meta title and description for a product page about:\n\n ##description## \n\n Product Title:\n ##title## \n\n Company Name:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2646, '73', 'ar-AE', 'اكتب عنوان تعريف SEO ووصفًا لصفحة منتج عنه:\n\n ##description## \n\n Product Title:\n ##title## \n\n اسم الشركة:\n ##company_name## \n\n كلمات البذور:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2647, '73', 'cmn-CN', '為產品頁面編寫 SEO 元標題和描述:\n\n ##description## \n\n Product Title:\n ##title## \n\n 公司名稱:\n ##company_name## \n\n 種子詞:\n ##keywords## \n\n 結果的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2648, '73', 'hr-HR', 'Napišite SEO meta naslov i opis za stranicu proizvoda o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Naziv tvrtke:\n ##company_name## \n\n Riječi sjemena:\n ##keywords## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:46', '2026-04-27 14:42:46'), (2649, '73', 'cs-CZ', 'Napište SEO meta název a popis pro stránku produktu o:\n\n ##description## \n\n Product Title:\n ##title## \n\n Jméno společnosti:\n ##company_name## \n\n Seed Slova:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2650, '73', 'da-DK', 'Skriv SEO meta titel og beskrivelse til en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n firmanavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2651, '73', 'nl-NL', 'Schrijf een SEO-metatitel en -beschrijving voor een productpagina over:\n\n ##description## \n\n Product Title:\n ##title## \n\n Bedrijfsnaam:\n ##company_name## \n\n Zaad woorden:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2652, '73', 'et-EE', 'Kirjutage SEO metapealkiri ja kirjeldus tootelehele:\n\n ##description## \n\n Product Title:\n ##title## \n\n Ettevõtte nimi:\n ##company_name## \n\n Seemne sõnad:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2653, '73', 'fi-FI', 'Kirjoita SEO-sisällönkuvausotsikko ja kuvaus tuotesivulle:\n\n ##description## \n\n Product Title:\n ##title## \n\n Yrityksen nimi:\n ##company_name## \n\n Siemensanat:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2654, '73', 'fr-FR', 'Rédigez un méta-titre et une description SEO pour une page de produit sur:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nom de l\'entreprise:\n ##company_name## \n\n Mots de départ:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2655, '73', 'de-DE', 'Schreiben Sie einen SEO-Metatitel und eine Beschreibung für eine Produktseite:\n\n ##description## \n\n Product Title:\n ##title## \n\n Name der Firma:\n ##company_name## \n\n Samenwörter:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2656, '73', 'el-GR', 'Γράψτε τον μετα-τίτλο SEO και την περιγραφή για μια σελίδα προϊόντος σχετικά με:\n\n ##description## \n\n Product Title:\n ##title## \n\n Όνομα εταιρείας:\n ##company_name## \n\n Σπόροι Λέξεις:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2657, '73', 'he-IL', 'כתוב SEO מטא כותרת ותיאור עבור דף מוצר על:\n\n ##description## \n\n Product Title:\n ##title## \n\n שם החברה:\n ##company_name## \n\n מילות זרעים:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2658, '73', 'hi-IN', 'किसी उत्पाद पृष्ठ के बारे में SEO मेटा शीर्षक और विवरण लिखें:\n\n ##description## \n\n Product Title:\n ##title## \n\n कंपनी का नाम:\n ##company_name## \n\n बीज शब्द:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2659, '73', 'hu-HU', 'Írjon SEO metacímet és leírást egy termékoldalhoz:\n\n ##description## \n\n Product Title:\n ##title## \n\n Cégnév:\n ##company_name## \n\n Magszavak:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2660, '73', 'is-IS', 'Skrifaðu SEO meta titil og lýsingu fyrir vörusíðu um:\n\n ##description## \n\n Product Title:\n ##title## \n\n nafn fyrirtækis:\n ##company_name## \n\n Fræorð:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2661, '73', 'id-ID', 'Tulis judul dan deskripsi meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nama perusahaan:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2662, '73', 'it-IT', 'Scrivi il meta titolo e la descrizione SEO per una pagina di prodotto:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nome della ditta:\n ##company_name## \n\n Parole seme:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2663, '73', 'ja-JP', '製品ページの SEO メタ タイトルと説明を書きます。:\n\n ##description## \n\n Product Title:\n ##title## \n\n 会社名:\n ##company_name## \n\n シードワード:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2664, '73', 'ko-KR', '제품 페이지에 대한 SEO 메타 제목 및 설명 작성:\n\n ##description## \n\n Product Title:\n ##title## \n\n 회사 이름:\n ##company_name## \n\n 시드 단어:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2665, '73', 'ms-MY', 'Tulis tajuk dan penerangan meta SEO untuk halaman produk tentang:\n\n ##description## \n\n Product Title:\n ##title## \n\n nama syarikat:\n ##company_name## \n\n Kata Benih:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2666, '73', 'nb-NO', 'Skriv SEO meta tittel og beskrivelse for en produktside om:\n\n ##description## \n\n Product Title:\n ##title## \n\n selskapsnavn:\n ##company_name## \n\n Frøord:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2667, '73', 'pl-PL', 'Napisz tytuł i opis meta SEO dla strony produktu:\n\n ##description## \n\n Product Title:\n ##title## \n\n Nazwa firmy:\n ##company_name## \n\n Słowa nasion:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2668, '73', 'pt-PT', 'Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2669, '73', 'ru-RU', 'Напишите SEO-мета-заголовок и описание для страницы продукта о:\n\n ##description## \n\n Product Title:\n ##title## \n\n Название компании:\n ##company_name## \n\n Исходные слова:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2670, '73', 'es-ES', 'Escriba el metatítulo y la descripción de SEO para una página de producto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nombre de empresa:\n ##company_name## \n\n Palabras semilla:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2671, '73', 'sv-SE', 'Skriv SEO-metatitel och beskrivning för en produktsida om:\n\n ##description## \n\n Product Title:\n ##title## \n\n Företagsnamn:\n ##company_name## \n\n Frö ord:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2672, '73', 'tr-TR', 'Hakkında bir ürün sayfası için SEO meta başlığı ve açıklaması yazın:\n\n ##description## \n\n Product Title:\n ##title## \n\n Firma Adı:\n ##company_name## \n\n tohum kelimeler:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2673, '73', 'pt-BR', 'Escreva meta título e descrição de SEO para uma página de produto sobre:\n\n ##description## \n\n Product Title:\n ##title## \n\n nome da empresa:\n ##company_name## \n\n palavras-semente:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2674, '73', 'ro-RO', 'Scrieți meta titlu SEO și descriere pentru o pagină de produs despre:\n\n ##description## \n\n Product Title:\n ##title## \n\n Numele companiei:\n ##company_name## \n\n Cuvinte sămânță:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2675, '73', 'vi-VN', 'Viết tiêu đề và mô tả meta SEO cho trang sản phẩm về:\n\n ##description## \n\n Product Title:\n ##title## \n\n Tên công ty:\n ##company_name## \n\n từ hạt giống:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (2676, '73', 'sw-KE', 'Andika kichwa cha meta cha SEO na maelezo ya ukurasa wa bidhaa kuhusu:\n\n ##description## \n\n Product Title:\n ##title## \n\n jina la kampuni:\n ##company_name## \n\n Maneno ya mbegu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2677, '73', 'sl-SI', 'Napišite metanaslov SEO in opis za stran izdelka o:\n\n ##description## \n\n Product Title:\n ##title## \n\n ime podjetja:\n ##company_name## \n\n Seed Words:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2678, '73', 'th-TH', 'เขียนชื่อเมตา SEO และคำอธิบายสำหรับหน้าผลิตภัณฑ์เกี่ยวกับ:\n\n ##description## \n\n Product Title:\n ##title## \n\n ชื่อ บริษัท:\n ##company_name## \n\n คำเมล็ด:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2679, '73', 'uk-UA', 'Напишіть мета-заголовок і опис SEO для сторінки продукту:\n\n ##description## \n\n Product Title:\n ##title## \n\n Назва компанії:\n ##company_name## \n\n Насіннєві слова:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2680, '73', 'lt-LT', 'Parašykite produkto puslapio SEO meta pavadinimą ir aprašą:\n\n ##description## \n\n Product Title:\n ##title## \n\n Įmonės pavadinimas:\n ##company_name## \n\n Sėklų žodžiai:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2681, '73', 'bg-BG', 'Напишете SEO мета заглавие и описание за продуктова страница за:\n\n ##description## \n\n Product Title:\n ##title## \n\n Име на фирмата:\n ##company_name## \n\n Семенни думи:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2682, '74', 'en-US', 'Write 10 unique product titles to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2683, '74', 'ar-AE', 'اكتب 10 عناوين منتجات فريدة لكسب المزيد من عمليات البيع على أمازون للمنتج التالي الذي يستهدفه:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2684, '74', 'cmn-CN', '寫 10 個獨特的產品標題,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣必須是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2685, '74', 'hr-HR', 'Napišite 10 jedinstvenih naslova proizvoda kako biste ostvarili veću prodaju na Amazonu za sljedeći ciljni proizvod:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2686, '74', 'cs-CZ', 'Napište 10 jedinečných názvů produktů, abyste získali více prodejů na Amazonu následujícího produktu, na který je zaměřen:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2687, '74', 'da-DK', 'Skriv 10 unikke produkttitler for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2688, '74', 'nl-NL', 'Schrijf 10 unieke producttitels om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2689, '74', 'et-EE', 'Kirjutage 10 ainulaadset tootenimetust, et saada Amazonis rohkem müüki järgmistest toodetest, millele on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2690, '74', 'fi-FI', 'Kirjoita 10 ainutlaatuista tuotenimikettä saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2691, '74', 'fr-FR', 'Écrivez 10 titres de produits uniques pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2692, '74', 'de-DE', 'Schreiben Sie 10 einzigartige Produkttitel, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2693, '74', 'el-GR', 'Γράψτε 10 μοναδικούς τίτλους προϊόντων για να κερδίσετε περισσότερες πωλήσεις στο Amazon για το παρακάτω προϊόν που στοχεύει:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2694, '74', 'he-IL', 'כתוב 10 כותרות מוצר ייחודיות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2695, '74', 'hi-IN', 'निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 अद्वितीय उत्पाद शीर्षक लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2696, '74', 'hu-HU', 'Írjon 10 egyedi termékcímet, hogy több eladást szerezzen az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2697, '74', 'is-IS', 'Skrifaðu 10 einstaka vörutitla til að ná meiri sölu á Amazon af eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2698, '74', 'id-ID', 'Tulis 10 judul produk unik untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang dituju:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2699, '74', 'it-IT', 'Scrivi 10 titoli di prodotti unici per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2700, '74', 'ja-JP', 'ユニークな製品タイトルを 10 個書いて、次の製品を Amazon でより多く販売してください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2701, '74', 'ko-KR', '아마존에서 목표로 하는 다음 제품의 더 많은 판매를 얻기 위해 10개의 고유한 제품 제목을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2702, '74', 'ms-MY', 'Tulis 10 tajuk produk unik untuk mendapatkan lebih banyak jualan di Amazon untuk produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2703, '74', 'nb-NO', 'Skriv 10 unike produkttitler for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2704, '74', 'pl-PL', 'Napisz 10 unikalnych tytułów produktów, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2705, '74', 'pt-PT', 'Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2706, '74', 'ru-RU', 'Напишите 10 уникальных названий продуктов, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2707, '74', 'es-ES', 'Escriba 10 títulos de productos únicos para obtener más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2708, '74', 'sv-SE', 'Skriv 10 unika produkttitlar för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2709, '74', 'tr-TR', 'Hedeflenen aşağıdaki üründen Amazon\'da daha fazla satış elde etmek için 10 benzersiz ürün başlığı yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2710, '74', 'pt-BR', 'Escreva 10 títulos de produtos exclusivos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2711, '74', 'ro-RO', 'Scrieți 10 titluri de produse unice pentru a câștiga mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2712, '74', 'vi-VN', 'Viết 10 tiêu đề sản phẩm độc đáo để bán được nhiều hơn trên Amazon cho sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2713, '74', 'sw-KE', 'Andika majina 10 ya kipekee ya bidhaa ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2714, '74', 'sl-SI', 'Napišite 10 edinstvenih naslovov izdelkov, da pridobite večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2715, '74', 'th-TH', 'เขียนชื่อผลิตภัณฑ์ที่ไม่ซ้ำกัน 10 รายการเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2716, '74', 'uk-UA', 'Напишіть 10 унікальних назв продукту, щоб отримати більше продажів на Amazon наступного продукту, на який націлено:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2717, '74', 'lt-LT', 'Parašykite 10 unikalių produktų pavadinimų, kad „Amazon“ daugiau parduotų toliau nurodytų produktų:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2718, '74', 'bg-BG', 'Напишете 10 уникални продуктови заглавия, за да спечелите повече продажби в Amazon на следния целеви продукт:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2719, '75', 'en-US', 'Write 10 advantages and features to gain more sells on Amazon of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2720, '75', 'ar-AE', 'اكتب 10 مزايا وميزات لكسب المزيد من عمليات البيع على Amazon للمنتج التالي المستهدف:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2721, '75', 'cmn-CN', '寫下 10 個優勢和特點,以在亞馬遜上獲得更多針對以下產品的銷售:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品描述:\n ##description## \n\n 文章的語氣應該是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2722, '75', 'hr-HR', 'Napišite 10 prednosti i značajki kako biste ostvarili veću prodaju na Amazonu sljedećeg ciljanog proizvoda:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2723, '75', 'cs-CZ', 'Napište 10 výhod a funkcí, abyste získali více prodejů na Amazonu následujícího produktu:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2724, '75', 'da-DK', 'Skriv 10 fordele og funktioner for at få flere salg på Amazon af følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2725, '75', 'nl-NL', 'Schrijf 10 voordelen en functies op om meer verkopen op Amazon te krijgen van het volgende beoogde product:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2726, '75', 'et-EE', 'Kirjutage 10 eelist ja funktsiooni, et saada Amazonis rohkem müüki järgmistele mõeldud toodetele:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2727, '75', 'fi-FI', 'Kirjoita 10 etua ja ominaisuutta saadaksesi enemmän myyntiä Amazonissa seuraavista tuotteista:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2728, '75', 'fr-FR', 'Rédigez 10 avantages et fonctionnalités pour obtenir plus de ventes sur Amazon du produit suivant destiné à:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:45', '2026-04-27 14:42:50'), (2729, '75', 'de-DE', 'Schreiben Sie 10 Vorteile und Funktionen auf, um bei Amazon mehr Verkäufe des folgenden Produkts zu erzielen:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2730, '75', 'el-GR', 'Γράψτε 10 πλεονεκτήματα και χαρακτηριστικά για να κερδίσετε περισσότερες πωλήσεις στο Amazon του παρακάτω προϊόντος στο οποίο στοχεύουν:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2731, '75', 'he-IL', 'כתוב 10 יתרונות ותכונות כדי להשיג יותר מכירות באמזון של המוצר הבא שמיועד אליו:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2732, '75', 'hi-IN', 'निम्नलिखित उत्पाद के Amazon पर अधिक बिक्री हासिल करने के लिए 10 फायदे और विशेषताएं लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2733, '75', 'hu-HU', 'Írjon 10 előnyt és funkciót, amelyekkel több eladást érhet el az Amazonon a következő, megcélzott termékből:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2734, '75', 'is-IS', 'Skrifaðu 10 kosti og eiginleika til að ná meiri sölu á Amazon á eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2735, '75', 'id-ID', 'Tulis 10 keunggulan dan fitur untuk mendapatkan lebih banyak penjualan di Amazon dari produk berikut yang ditujukan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2736, '75', 'it-IT', 'Scrivi 10 vantaggi e caratteristiche per ottenere più vendite su Amazon del seguente prodotto mirato:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2737, '75', 'ja-JP', '次の商品を Amazon でより多く売るための 10 の利点と特徴を書いてください。:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2738, '75', 'ko-KR', '아마존에서 다음 제품을 더 많이 판매할 수 있는 10가지 장점과 기능을 작성하십시오.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2739, '75', 'ms-MY', 'Tulis 10 kelebihan dan ciri untuk mendapatkan lebih banyak jualan di Amazon bagi produk berikut yang disasarkan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2740, '75', 'nb-NO', 'Skriv 10 fordeler og funksjoner for å få flere salg på Amazon av følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2741, '75', 'pl-PL', 'Napisz 10 zalet i funkcji, aby uzyskać więcej sprzedaży na Amazon następującego produktu, do którego jest skierowany:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2742, '75', 'pt-PT', 'Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2743, '75', 'ru-RU', 'Напишите 10 преимуществ и функций, чтобы увеличить продажи на Amazon следующего продукта, предназначенного для:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2744, '75', 'es-ES', 'Escriba 10 ventajas y características para ganar más ventas en Amazon del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2745, '75', 'sv-SE', 'Skriv 10 fördelar och funktioner för att få fler försäljningar på Amazon av följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2746, '75', 'tr-TR', 'Hedeflenen aşağıdaki üründen Amazon\'da daha fazla satış elde etmek için 10 avantaj ve özellik yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2747, '75', 'pt-BR', 'Escreva 10 vantagens e recursos para obter mais vendas na Amazon do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2748, '75', 'ro-RO', 'Scrieți 10 avantaje și caracteristici pentru a obține mai multe vânzări pe Amazon pentru următorul produs vizat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2749, '75', 'vi-VN', 'Viết 10 ưu điểm và tính năng để bán được nhiều hơn trên Amazon của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2750, '75', 'sw-KE', 'Andika faida na vipengele 10 ili kupata mauzo zaidi kwenye Amazon ya bidhaa zifuatazo zinazolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2751, '75', 'sl-SI', 'Napišite 10 prednosti in lastnosti, s katerimi boste dosegli večjo prodajo na Amazonu za naslednji izdelek, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2752, '75', 'th-TH', 'เขียนข้อดีและคุณสมบัติ 10 ข้อเพื่อเพิ่มยอดขายใน Amazon ของผลิตภัณฑ์ต่อไปนี้:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2753, '75', 'uk-UA', 'Напишіть 10 переваг і особливостей, щоб отримати більше продажів на Amazon наступного продукту, націленого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2754, '75', 'lt-LT', 'Parašykite 10 pranašumų ir savybių, kad „Amazon“ būtų daugiau parduota toliau nurodytas produktas:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2755, '75', 'bg-BG', 'Напишете 10 предимства и функции, за да спечелите повече продажби в Amazon на следния продукт, към който сте насочени:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2756, '76', 'en-US', 'Write a creative advertisement idea at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the article must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2757, '76', 'ar-AE', 'اكتب فكرة إعلان إبداعي في:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت المقال:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2758, '76', 'cmn-CN', '撰寫創意廣告創意:\n\n ##audience## \n\n 產品名稱:\n ##title## \n\n 產品說明:\n ##description## \n\n 這篇文章的聲音一定是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2759, '76', 'hr-HR', 'Napišite kreativnu ideju za oglas na:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2760, '76', 'cs-CZ', 'Napište nápad na kreativní reklamu na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu článku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2761, '76', 'da-DK', 'Skriv en kreativ annonceidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tonen i artiklen skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2762, '76', 'nl-NL', 'Schrijf een creatief advertentie-idee op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n De toon van het artikel moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2763, '76', 'et-EE', 'Kirjutage loominguline reklaamiidee aadressil:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Artikli hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2764, '76', 'fi-FI', 'Kirjoita luova mainosidea osoitteessa:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Artikkelin äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2765, '76', 'fr-FR', 'Rédigez une idée de publicité créative sur:\n\n ##audience## \n\n Nom du produit:\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de la voix de l\'article doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2766, '76', 'de-DE', 'Schreiben Sie eine kreative Werbeidee unter:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Artikels muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2767, '76', 'el-GR', 'Γράψτε μια δημιουργική ιδέα διαφήμισης στο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του άρθρου πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2768, '76', 'he-IL', 'כתוב רעיון פרסומת יצירתי ב:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של המאמר חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2769, '76', 'hi-IN', 'पर एक रचनात्मक विज्ञापन विचार लिखें:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n Product description:\n ##description## \n\n लेख का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2770, '76', 'hu-HU', 'Írjon kreatív hirdetési ötletet a címen:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n A cikk hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2771, '76', 'is-IS', 'Skrifaðu skapandi auglýsingahugmynd á:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd í greininni verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2772, '76', 'id-ID', 'Tulis ide iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara artikel harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2773, '76', 'it-IT', 'Scrivi un\'idea pubblicitaria creativa su:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce dell\'articolo deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2774, '76', 'ja-JP', '創造的な広告のアイデアを次の場所に書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n Product description:\n ##description## \n\n 記事の口調は次のようにする必要があります。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2775, '76', 'ko-KR', '창의적인 광고 아이디어를 작성하세요.:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 製品説明:\n ##description## \n\n 기사의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2776, '76', 'ms-MY', 'Tulis idea iklan kreatif di:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara artikel mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2777, '76', 'nb-NO', 'Skriv en kreativ annonseidé på:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Tonen i artikkelen må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2778, '76', 'pl-PL', 'Napisz kreatywny pomysł na reklamę na:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton artykułu musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2779, '76', 'pt-PT', 'Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2780, '76', 'ru-RU', 'Напишите креативную рекламную идею на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон статьи должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2781, '76', 'es-ES', 'Escribe una idea publicitaria creativa en:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del artículo debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2782, '76', 'sv-SE', 'Skriv en kreativ annonsidé på:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i artikeln måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2783, '76', 'tr-TR', 'yaratıcı bir reklam fikri yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Makalenin ses tonu şu şekilde olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2784, '76', 'pt-BR', 'Escreva uma ideia de anúncio criativo em:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do artigo deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2785, '76', 'ro-RO', 'Scrie o idee de publicitate creativă la:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii articolului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2786, '76', 'vi-VN', 'Viết ý tưởng quảng cáo sáng tạo tại:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của bài viết phải:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2787, '76', 'sw-KE', 'Andika wazo la tangazo la ubunifu kwenye:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya makala lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2788, '76', 'sl-SI', 'Napišite kreativno oglasno idejo na:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu članka mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2789, '76', 'th-TH', 'เขียนไอเดียโฆษณาสร้างสรรค์ได้ที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n น้ำเสียงของบทความต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2790, '76', 'uk-UA', 'Напишіть креативну рекламну ідею на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу статті повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2791, '76', 'lt-LT', 'Parašykite kūrybinę reklamos idėją adresu:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Straipsnio balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2792, '76', 'bg-BG', 'Напишете креативна идея за реклама на:\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на статията трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2793, '77', 'en-US', 'Write creative start up idea for the following:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2794, '77', 'ar-AE', 'اكتب فكرة بدء إبداعية لما يلي:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2795, '77', 'cmn-CN', '撰寫創意起始構想,以取得下列項目:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2796, '77', 'hr-HR', 'Napišite kreativnu početnu ideju za sljedeće:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2797, '77', 'cs-CZ', 'Napište kreativní počáteční nápad pro následující:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2798, '77', 'da-DK', 'Skriv kreativ start-up idé til følgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2799, '77', 'nl-NL', 'Schrijf een creatief opstartidee voor het volgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2800, '77', 'et-EE', 'Kirjutage loov käivitamise idee järgmiseks:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2801, '77', 'fi-FI', 'Kirjoita luova aloitusidea seuraavaa varten:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2802, '77', 'fr-FR', 'Rédigez une idée de démarrage créative pour les éléments suivants:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2803, '77', 'de-DE', 'Schreiben Sie eine kreative Startup-Idee für Folgendes:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2804, '77', 'el-GR', 'Γράψτε μια δημιουργική ιδέα εκκίνησης για τα παρακάτω:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2805, '77', 'he-IL', 'כתוב רעיון התחלה יצירתי עבור הדברים הבאים:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2806, '77', 'hi-IN', 'निम्नलिखित के लिए रचनात्मक स्टार्ट अप विचार लिखें:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2807, '77', 'hu-HU', 'Írjon kreatív indulási ötletet a következőkhöz:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2808, '77', 'is-IS', 'Skrifaðu skapandi upphafshugmynd fyrir eftirfarandi:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2809, '77', 'id-ID', 'Tulis ide awal kreatif untuk berikut:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2810, '77', 'it-IT', 'Scrivi un\'idea di avvio creativa per quanto segue:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2811, '77', 'ja-JP', '次のクリエイティブなスタートアップのアイデアを書いてください:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2812, '77', 'ko-KR', '다음에 대한 창의적인 시작 아이디어를 작성하십시오.:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2813, '77', 'ms-MY', 'Tulis idea permulaan kreatif untuk perkara berikut:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2814, '77', 'nb-NO', 'Skriv kreativ oppstartside for følgende:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2815, '77', 'pl-PL', 'Napisz kreatywny pomysł na rozpoczęcie działalności w następujący sposób:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2816, '77', 'pt-PT', 'Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2817, '77', 'ru-RU', 'Напишите творческую идею стартапа для следующего:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2818, '77', 'es-ES', 'Escriba una idea creativa de puesta en marcha para lo siguiente:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2819, '77', 'sv-SE', 'Skriv en kreativ startidé för följande:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2820, '77', 'tr-TR', 'Aşağıdakiler için yaratıcı başlangıç fikri yazın:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2821, '77', 'pt-BR', 'Escreva uma ideia criativa de inicialização para o seguinte:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2822, '77', 'ro-RO', 'Scrieți o idee creativă de pornire pentru următoarele:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2823, '77', 'vi-VN', 'Viết ý tưởng khởi nghiệp sáng tạo cho phần sau:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2824, '77', 'sw-KE', 'Andika wazo bunifu la kuanzisha kwa yafuatayo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2825, '77', 'sl-SI', 'Napišite kreativno začetno idejo za naslednje:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2826, '77', 'th-TH', 'เขียนแนวคิดเริ่มต้นที่สร้างสรรค์สำหรับสิ่งต่อไปนี้:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2827, '77', 'uk-UA', 'Напишіть творчу ідею запуску для наступного:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2828, '77', 'lt-LT', 'Parašykite kūrybinės pradžios idėją šiam tikslui:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2829, '77', 'bg-BG', 'Напишете творческа стартова идея за следното:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2830, '78', 'en-US', 'generator job post description for the following position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2831, '78', 'ar-AE', 'وصف وظيفة المولد للوظيفة التالية : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2832, '78', 'cmn-CN', '下列位置的產生器工作後置說明 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2833, '78', 'hr-HR', 'generator opis radnog mjesta za sljedeću poziciju : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2834, '78', 'cs-CZ', 'generátor popisu pracovní pozice pro následující pozici : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2835, '78', 'da-DK', 'generator stillingsbeskrivelse for følgende stilling : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2836, '78', 'nl-NL', 'generator functiebeschrijving voor de volgende functie : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2837, '78', 'et-EE', 'generaatori tööpostituse kirjeldus järgmise ametikoha jaoks : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2838, '78', 'fi-FI', 'generaattorin työpaikan kuvaus seuraavalle työlle : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2839, '78', 'fr-FR', 'générateur de description de poste pour le poste suivant : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2840, '78', 'de-DE', 'Beschreibung des Generatorjobs für die folgende Position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2841, '78', 'el-GR', 'περιγραφή θέσης εργασίας γεννήτριας για την παρακάτω θέση : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2842, '78', 'he-IL', 'תיאור פוסט המשרה של מחולל עבור התפקיד הבא : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2843, '78', 'hi-IN', 'निम्नलिखित पद के लिए जेनरेटर जॉब पोस्ट विवरण : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2844, '78', 'hu-HU', 'generátor állásleírás a következő pozícióhoz : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2845, '78', 'is-IS', 'lýsing á starfspósti fyrir eftirfarandi stöðu : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2846, '78', 'id-ID', 'deskripsi lowongan pekerjaan generator untuk posisi berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2847, '78', 'it-IT', 'descrizione dell\'annuncio di lavoro del generatore per la seguente posizione : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2848, '78', 'ja-JP', '次のポジションのジェネレーターの求人説明 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2849, '78', 'ko-KR', '다음 위치에 대한 생성기 작업 게시물 설명 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2850, '78', 'ms-MY', 'penerangan jawatan penjana untuk jawatan berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2851, '78', 'nb-NO', 'generator stillingsbeskrivelse for følgende stilling : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2852, '78', 'pl-PL', 'generator opis stanowiska pracy dla następującego stanowiska : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2853, '78', 'pt-PT', 'descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2854, '78', 'ru-RU', 'описание должности генератора для следующей должности : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2855, '78', 'es-ES', 'descripción del puesto de trabajo del generador para el siguiente puesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2856, '78', 'sv-SE', 'generator arbetsinläggsbeskrivning för följande position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2857, '78', 'tr-TR', 'Aşağıdaki pozisyon için jeneratör iş ilanı açıklaması : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2858, '78', 'pt-BR', 'descrição do posto de trabalho do gerador para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2859, '78', 'ro-RO', 'descrierea postului de generator pentru următorul post : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2860, '78', 'vi-VN', 'mô tả bài đăng công việc máy phát điện cho vị trí sau : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2861, '78', 'sw-KE', 'maelezo ya chapisho la kazi ya jenereta kwa nafasi ifuatayo : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2862, '78', 'sl-SI', 'generator opis delovnega mesta za naslednje delovno mesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2863, '78', 'th-TH', 'รายละเอียดประกาศรับสมัครงานสำหรับตำแหน่งต่อไปนี้ : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2864, '78', 'uk-UA', 'генератор опис посади для наступної посади : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2865, '78', 'lt-LT', 'generatoriaus darbo etato aprašymas šiai pozicijai : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2866, '78', 'bg-BG', 'генератор описание на длъжността за следната позиция : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2867, '79', 'en-US', 'generator Resume for the following position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2868, '79', 'ar-AE', 'مولد يستأنف للوظيفة التالية : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2869, '79', 'cmn-CN', '產生器回復下列位置 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2870, '79', 'hr-HR', 'generator Životopis za sljedeću poziciju : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2871, '79', 'cs-CZ', 'generátor Obnovit pro následující pozici : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2872, '79', 'da-DK', 'generator Genoptag for følgende position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2873, '79', 'nl-NL', 'generator CV voor de volgende functie : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2874, '79', 'et-EE', 'generaator Jätka järgmisel ametikohal : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2875, '79', 'fi-FI', 'generaattori Jatka seuraavaan kohtaan : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2876, '79', 'fr-FR', 'générateur CV pour le poste suivant : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2877, '79', 'de-DE', 'Generator Lebenslauf für die folgende Position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2878, '79', 'el-GR', 'γεννήτρια Συνεχίστε για την παρακάτω θέση : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2879, '79', 'he-IL', 'גנרטור קורות חיים לתפקיד הבא : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2880, '79', 'hi-IN', 'जनरेटर निम्नलिखित स्थिति के लिए फिर से शुरू करें : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2881, '79', 'hu-HU', 'generátor Folytatás a következő pozícióhoz : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2882, '79', 'is-IS', 'rafall Haltu áfram fyrir eftirfarandi stöðu : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2883, '79', 'id-ID', 'generator Lanjutkan untuk posisi berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2884, '79', 'it-IT', 'generatore Riprendi per la posizione successiva : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2885, '79', 'ja-JP', '発電機次のポジションの再開 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2886, '79', 'ko-KR', '다음 위치에 대한 발전기 이력서 : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2887, '79', 'ms-MY', 'generator Resume untuk kedudukan berikut : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2888, '79', 'nb-NO', 'generator Fortsett for følgende posisjon : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2889, '79', 'pl-PL', 'generator Wznów dla następującego stanowiska : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2890, '79', 'pt-PT', 'gerador Currículo para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (2891, '79', 'ru-RU', 'генератор Резюме на следующую позицию : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2892, '79', 'es-ES', 'curriculum vitae del generador para la siguiente posición : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2893, '79', 'sv-SE', 'generator Återuppta för följande position : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2894, '79', 'tr-TR', 'Jeneratör Aşağıdaki konum için devam ettirin : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2895, '79', 'pt-BR', 'gerador Currículo para a seguinte posição : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2896, '79', 'ro-RO', 'generator Reluați pentru următoarea poziție : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2897, '79', 'vi-VN', 'Trình tạo Tiếp tục cho vị trí sau : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2898, '79', 'sw-KE', 'Jenereta Rejea kwa nafasi ifuatayo : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2899, '79', 'sl-SI', 'generator Življenjepis za naslednje delovno mesto : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2900, '79', 'th-TH', 'เครื่องกำเนิด Resume สำหรับตำแหน่งต่อไปนี้ : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2901, '79', 'uk-UA', 'generator Резюме на наступну посаду : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2902, '79', 'lt-LT', 'generatorius Tęskite šią poziciją : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2903, '79', 'bg-BG', 'генератор Резюме за следната позиция : \n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2904, '80', 'en-US', 'Write creative recipe for the following dish :\n\n ##description###', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2905, '80', 'ar-AE', 'اكتب وصفة إبداعية للطبق التالي:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2906, '80', 'cmn-CN', '为下列菜肴写出创意食谱:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2907, '80', 'hr-HR', 'Napiši kreativni recept za sljedeće jelo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2908, '80', 'cs-CZ', 'Napište kreativní recept na následující jídlo:\n\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2909, '80', 'da-DK', 'Skriv kreativ opskrift på følgende ret:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2910, '80', 'nl-NL', 'Schrijf creatief recept voor het volgende gerecht:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2911, '80', 'et-EE', 'Kirjutage järgmise roa loominguline retsept:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2912, '80', 'fi-FI', 'Kirjoita luova resepti seuraavaan ruokalajiin:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2913, '80', 'fr-FR', 'Écrivez une recette créative pour le plat suivant:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2914, '80', 'de-DE', 'Schreiben Sie ein kreatives Rezept für das folgende Gericht:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2915, '80', 'el-GR', 'Γράψε δημιουργική συνταγή για το παρακάτω πιάτο:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2916, '80', 'he-IL', 'כתבו מתכון יצירתי למנה הבאה:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2917, '80', 'hi-IN', 'निम्नलिखित व्यंजन के लिए रचनात्मक व्यंजन विधि लिखिए:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2918, '80', 'hu-HU', 'Írj kreatív receptet a következő ételhez!:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2919, '80', 'is-IS', 'Skrifaðu skapandi uppskrift að eftirfarandi rétti:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2920, '80', 'id-ID', 'Tulis resep kreatif untuk hidangan berikut:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2921, '80', 'it-IT', 'Scrivi una ricetta creativa per il seguente piatto:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2922, '80', 'ja-JP', '次の料理の独創的なレシピを書いてください:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2923, '80', 'ko-KR', '다음 요리에 대한 독창적인 레시피 작성:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2924, '80', 'ms-MY', 'Tulis resipi kreatif untuk hidangan berikut:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2925, '80', 'nb-NO', 'Skriv kreativ oppskrift på følgende rett:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2926, '80', 'pl-PL', 'Napisz kreatywny przepis na poniższe danie:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2927, '80', 'pt-PT', 'Escreva uma receita criativa para o seguinte prato:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2928, '80', 'ru-RU', 'Напишите креативный рецепт следующего блюда:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2929, '80', 'es-ES', 'Escribe una receta creativa para el siguiente plato.:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2930, '80', 'sv-SE', 'Skriv kreativt recept för följande maträtt:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2931, '80', 'tr-TR', 'Aşağıdaki yemek için yaratıcı bir tarif yazın:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2932, '80', 'pt-BR', 'Escreve uma receita criativa para o seguinte prato:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2933, '80', 'ro-RO', 'Scrieți o rețetă creativă pentru următorul fel de mâncare:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2934, '80', 'vi-VN', 'Viết công thức sáng tạo cho món ăn sau:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2935, '80', 'sw-KE', 'Andika kichocheo cha ubunifu kwa sahani ifuatayo:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2936, '80', 'sl-SI', 'Napišite kreativen recept za naslednjo jed:\\n\\n ##description##', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2937, '80', 'th-TH', 'เขียนสูตรสร้างสรรค์สำหรับอาหารจานต่อไปนี้:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2938, '80', 'uk-UA', 'Напишіть творчий рецепт наступної страви:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2939, '80', 'lt-LT', 'Parašykite kūrybinį šio patiekalo receptą:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2940, '80', 'bg-BG', 'Напишете творческа рецепта за следното ястие:\\n\\n ##description## ', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2941, '81', 'en-US', 'Write creative poetry for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2942, '81', 'ar-AE', 'اكتب شعرًا إبداعيًا لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2943, '81', 'cmn-CN', '为以下创作诗歌:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2944, '81', 'hr-HR', 'Napišite kreativnu poeziju za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2945, '81', 'cs-CZ', 'Napište kreativní poezii pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2946, '81', 'da-DK', 'Skriv kreativ poesi til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2947, '81', 'nl-NL', 'Schrijf creatieve poëzie voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2948, '81', 'et-EE', 'Kirjutage loomingulist luulet järgmiste jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2949, '81', 'fi-FI', 'Kirjoita luovaa runoutta seuraavaa varten:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2950, '81', 'fr-FR', 'Écrivez de la poésie créative pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2951, '81', 'de-DE', 'Schreiben Sie kreative Gedichte für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2952, '81', 'el-GR', 'Γράψε δημιουργική ποίηση για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2953, '81', 'he-IL', ' כתבו שירה יצירתית עבור הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2954, '81', 'hi-IN', 'निम्नलिखित के लिए रचनात्मक कविताएँ लिखिए:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2955, '81', 'hu-HU', 'Írj kreatív verset a következőkhöz!:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2956, '81', 'is-IS', 'Skrifaðu skapandi ljóð fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2957, '81', 'id-ID', 'Tulis puisi kreatif untuk berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2958, '81', 'it-IT', 'Scrivi poesie creative per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2959, '81', 'ja-JP', '以下のために創造的な詩を書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2960, '81', 'ko-KR', '다음을 위해 창의적인 시를 쓰세요.:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2961, '81', 'ms-MY', 'Tulis puisi kreatif untuk perkara berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2962, '81', 'nb-NO', 'Skriv kreativ poesi for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2963, '81', 'pl-PL', 'Napisz twórczą poezję dla następujących:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2964, '81', 'pt-PT', 'Escrever poesia criativa para os seguintes temas:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2965, '81', 'ru-RU', 'Пишите творческие стихи для следующих:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2966, '81', 'es-ES', 'Escribe poesía creativa para los siguientes:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2967, '81', 'sv-SE', 'Skriv kreativ poesi för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2968, '81', 'tr-TR', 'Aşağıdakiler için yaratıcı şiir yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2969, '81', 'pt-BR', 'Escreva poesia criativa para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2970, '81', 'ro-RO', 'Scrie poezie creativă pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2971, '81', 'vi-VN', 'Viết thơ sáng tạo cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2972, '81', 'sw-KE', 'Andika mashairi ya ubunifu kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2973, '81', 'sl-SI', 'Napišite ustvarjalno poezijo za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2974, '81', 'th-TH', 'เขียนบทกวีสร้างสรรค์ต่อไปนี้:\\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2975, '81', 'uk-UA', 'Напишіть творчі вірші для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2976, '81', 'lt-LT', 'Rašykite kūrybinę poeziją šiems dalykams:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2977, '81', 'bg-BG', 'Напишете творческа поезия за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2978, '82', 'en-US', 'Write progress Report for the following :\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2979, '82', 'ar-AE', 'اكتب تقرير التقدم لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2980, '82', 'cmn-CN', '为以下项目撰写进度报告:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2981, '82', 'hr-HR', 'Napišite izvješće o napretku za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2982, '82', 'cs-CZ', 'Napište zprávu o pokroku pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2983, '82', 'da-DK', 'Skriv statusrapport for følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2984, '82', 'nl-NL', 'Voortgangsrapport schrijven voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2985, '82', 'et-EE', 'Kirjutage edenemisaruanne järgmiste asjade jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2986, '82', 'fi-FI', 'Kirjoita edistymisraportti seuraavista asioista:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2987, '82', 'fr-FR', 'Rédiger un rapport d avancement pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2988, '82', 'de-DE', 'Schreiben Sie einen Fortschrittsbericht für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2989, '82', 'el-GR', 'Γράψτε αναφορά προόδου για τα ακόλουθα:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2990, '82', 'he-IL', 'כתוב דוח התקדמות עבור הדברים הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2991, '82', 'hi-IN', 'निम्नलिखित के लिए प्रगति रिपोर्ट लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2992, '82', 'hu-HU', 'Írjon előrehaladási jelentést a következőkhöz:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2993, '82', 'is-IS', 'Skrifaðu framvinduskýrslu fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2994, '82', 'id-ID', 'Tulis laporan kemajuan untuk hal-hal berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2995, '82', 'it-IT', 'Scrivi un rapporto sui progressi per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2996, '82', 'ja-JP', '以下の進捗レポートを作成します:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2997, '82', 'ko-KR', '다음에 대한 진행 보고서 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2998, '82', 'ms-MY', 'Tulis Laporan kemajuan untuk perkara berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (2999, '82', 'nb-NO', 'Skriv fremdriftsrapport for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3000, '82', 'pl-PL', 'Napisz raport z postępów dla następujących:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3001, '82', 'pt-PT', 'Redigir um relatório de progresso para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3002, '82', 'ru-RU', 'Напишите отчет о проделанной работе для следующего:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3003, '82', 'es-ES', 'Escriba el informe de progreso para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3004, '82', 'sv-SE', 'Skriv lägesrapport för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3005, '82', 'tr-TR', 'Aşağıdakiler için ilerleme raporu yaz:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:47', '2026-04-27 14:42:47'), (3006, '82', 'pt-BR', 'Escreva um relatório de progresso para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3007, '82', 'ro-RO', 'Scrieți un raport de progres pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3008, '82', 'vi-VN', 'Viết báo cáo tiến độ cho phần sau:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3009, '82', 'sw-KE', 'Andika Ripoti ya maendeleo kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3010, '82', 'sl-SI', 'Napišite poročilo o napredku za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3011, '82', 'th-TH', 'เขียนรายงานความคืบหน้าต่อไปนี้ : \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3012, '82', 'uk-UA', 'Напишіть звіт про прогрес для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3013, '82', 'lt-LT', 'Parašykite pažangos ataskaitą dėl šių dalykų:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3014, '82', 'bg-BG', 'Напишете отчет за напредъка за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3015, '83', 'en-US', 'Write fictional story idea for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3016, '83', 'ar-AE', 'اكتب فكرة قصة خيالية لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3017, '83', 'cmn-CN', '为以下内容写虚构的故事构想:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3018, '83', 'hr-HR', 'Napišite ideju izmišljene priče za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3019, '83', 'cs-CZ', 'Napište myšlenku na fiktivní příběh pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3020, '83', 'da-DK', 'Skriv en fiktiv historieidé til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3021, '83', 'nl-NL', 'Schrijf een fictief verhaalidee voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3022, '83', 'et-EE', 'Kirjutage väljamõeldud loo idee järgmise jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3023, '83', 'fi-FI', 'Kirjoita kuvitteellinen tarinaidea seuraavaa varten:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3024, '83', 'fr-FR', 'Écrivez une idée d histoire fictive pour ce qui suit:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3025, '83', 'de-DE', 'Schreiben Sie eine fiktive Story-Idee für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3026, '83', 'el-GR', 'Γράψτε μια ιδέα φανταστικής ιστορίας για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3027, '83', 'he-IL', 'כתוב רעיון לסיפור בדיוני עבור הדברים הבאים :\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3028, '83', 'hi-IN', 'निम्नलिखित के लिए काल्पनिक कहानी विचार लिखें:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3029, '83', 'hu-HU', 'Írj kitalált történetötletet a következőkhöz!:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3030, '83', 'is-IS', 'Skrifaðu skáldaða söguhugmynd fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3031, '83', 'id-ID', 'Tuliskan ide cerita fiksi untuk berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3032, '83', 'it-IT', 'Scrivi un idea per una storia immaginaria per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3033, '83', 'ja-JP', '以下の架空の物語のアイデアを書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3034, '83', 'ko-KR', '다음에 대한 허구의 이야기 아이디어 쓰기:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3035, '83', 'ms-MY', 'Tulis idea cerita fiksyen untuk yang berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3036, '83', 'nb-NO', 'Skriv en fiktiv historieidé for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3037, '83', 'pl-PL', 'Napisz pomysł na fabułę opowiadania pt:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3038, '83', 'pt-PT', 'Escreve uma ideia de história de ficção para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3039, '83', 'ru-RU', 'Напишите идею вымышленного рассказа для следующего:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3040, '83', 'es-ES', 'Escribe una idea de historia ficticia para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3041, '83', 'sv-SE', 'Skriv en fiktiv berättelseidé för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3042, '83', 'tr-TR', 'Aşağıdakiler için kurgusal hikaye fikri yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3043, '83', 'pt-BR', 'Escreva uma ideia de história fictícia para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3044, '83', 'ro-RO', 'Scrieți o idee de poveste fictivă pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3045, '83', 'vi-VN', 'Viết ý tưởng câu chuyện hư cấu cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3046, '83', 'sw-KE', 'Andika wazo la hadithi ya kubuni kwa zifuatazo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3047, '83', 'sl-SI', 'Napišite idejo izmišljene zgodbe za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3048, '83', 'th-TH', 'เขียนแนวคิดเรื่องสมมติต่อไปนี้ : \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3049, '83', 'uk-UA', 'Напишіть ідею художньої історії для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3050, '83', 'lt-LT', 'Parašykite išgalvotos istorijos idėją šiai temai:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3051, '83', 'bg-BG', 'Напишете идея за измислена история за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3052, '84', 'en-US', 'Write 10 catchy webinar title ideas for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3053, '84', 'ar-AE', 'اكتب 10 أفكار جذابة لعنوان ندوة عبر الإنترنت لما يلي:\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3054, '84', 'cmn-CN', '为以下内容编写 10 个引人入胜的网络研讨会标题创意:\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3055, '84', 'hr-HR', 'Napišite 10 zanimljivih ideja za naslov webinara za sljedeće:\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3056, '84', 'cs-CZ', 'Napište 10 chytlavých nápadů na název webináře pro následující:\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3057, '84', 'da-DK', 'Skriv 10 iørefaldende webinartitelideer til følgende:\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3058, '84', 'nl-NL', 'Schrijf 10 pakkende titelideeën voor webinars voor het volgende:\n\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3059, '84', 'et-EE', 'Kirjutage 10 meeldejäävat veebiseminari pealkirjaideed järgmiste asjade jaoks:\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3060, '84', 'fi-FI', 'Kirjoita 10 tarttuvaa webinaarin otsikkoideaa seuraavista aiheista:\n\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3061, '84', 'fr-FR', 'Rédigez 10 idées de titres de webinaires accrocheurs pour les éléments suivants :\n\n ##description## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3062, '84', 'de-DE', 'Schreiben Sie 10 einprägsame Webinar-Titelideen für Folgendes:\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3063, '84', 'el-GR', 'Γράψτε 10 ελκυστικές ιδέες τίτλου διαδικτυακού σεμιναρίου για τα ακόλουθα:\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3064, '84', 'he-IL', 'כתוב 10 רעיונות לכותרות סמינרים מקוונים עבור הדברים הבאים:\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3065, '84', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक वेबिनार शीर्षक विचार लिखें:\n\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3066, '84', 'hu-HU', 'Írj 10 fülbemászó webinárium címötletet a következőkhöz:\n\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3067, '84', 'is-IS', 'Skrifaðu 10 grípandi titilhugmyndir fyrir vefnámskeið fyrir eftirfarandi:\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3068, '84', 'id-ID', 'Tulis 10 ide judul webinar yang menarik sebagai berikut :\n\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3069, '84', 'it-IT', 'Scrivi 10 accattivanti idee per titoli di webinar per quanto segue:\n\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3070, '84', 'ja-JP', '以下について、キャッチーなウェビナー タイトルのアイデアを 10 個書いてください:\n\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3071, '84', 'ko-KR', '다음에 대한 10가지 흥미로운 웨비나 제목 아이디어를 작성하십시오:\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3072, '84', 'ms-MY', 'Tulis 10 idea tajuk webinar yang menarik untuk perkara berikut:\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3073, '84', 'nb-NO', 'Skriv 10 fengende webinartittelideer for følgende:\n\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3074, '84', 'pl-PL', 'Napisz 10 chwytliwych pomysłów na tytuły webinarów:\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3075, '84', 'pt-PT', 'Escreva 10 ideias atraentes de títulos de webinar para o seguinte:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3076, '84', 'ru-RU', 'Напишите 10 броских идей названия вебинара для следующего:\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3077, '84', 'es-ES', 'Escriba 10 ideas pegadizas para títulos de seminarios web para lo siguiente:\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3078, '84', 'sv-SE', 'Skriv 10 fängslande webbinariumtitelidéer för följande:\n\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3079, '84', 'tr-TR', 'Aşağıdakiler için akılda kalıcı 10 web semineri başlığı fikri yazın:\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3080, '84', 'pt-BR', 'Escreva 10 ideias de títulos de webinar atraentes para os seguintes itens:\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3081, '84', 'ro-RO', 'Scrieți 10 idei captivante pentru titluri de webinar pentru următoarele:\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3082, '84', 'vi-VN', 'Viết 10 ý tưởng tiêu đề hội thảo trên web hấp dẫn cho những nội dung sau:\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3083, '84', 'sw-KE', 'Andika mawazo 10 ya kuvutia ya mada ya wavuti kwa yafuatayo:\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3084, '84', 'sl-SI', 'Napišite 10 idej za privlačne naslove spletnih seminarjev za naslednje:\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3085, '84', 'th-TH', 'เขียน 10 แนวคิดเกี่ยวกับหัวข้อการสัมมนาผ่านเว็บที่จับใจสำหรับสิ่งต่อไปนี้:\n\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3086, '84', 'uk-UA', 'Напишіть 10 цікавих ідей назви вебінару для наступного:\n\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3087, '84', 'lt-LT', 'Parašykite 10 patrauklių internetinio seminaro pavadinimo idėjų, skirtų šiems dalykams:\n\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3088, '84', 'bg-BG', 'Напишете 10 закачливи идеи за заглавия на уебинара за следното:\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3089, '85', 'en-US', 'Write 10 interesting titles for snapchat ad of the following product aimed at:\n\n ##audience## \n\n Product name:\n ##title## \n\n Product description:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3090, '85', 'ar-AE', 'اكتب 10 عناوين مثيرة للاهتمام لإعلان سناب شات للمنتج التالي الذي يهدف إلى:\n\n ##audience## \n\n اسم المنتج:\n ##title## \n\n وصف المنتج:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3091, '85', 'cmn-CN', '为以下产品的 snapchat 广告写 10 个有趣的标题,目的是:\n\n ##audience## \n\n 产品名称:\n ##title## \n\n 产品描述:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3092, '85', 'hr-HR', 'Napišite 10 zanimljivih naslova za snapchat oglas sljedećeg proizvoda namijenjenog:\n\n ##audience## \n\n Ime proizvoda:\n ##title## \n\n Opis proizvoda:\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n Duljina naslova mora biti 30 znakova\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3093, '85', 'cs-CZ', 'Napište 10 zajímavých titulků pro snapchat reklamu následujícího produktu zaměřeného na:\n\n ##audience## \n\n Jméno výrobku:\n ##title## \n\n Popis výrobku:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3094, '85', 'da-DK', 'Skriv 10 interessante titler til snapchat-annoncer for følgende produkt rettet mod:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produkt beskrivelse:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3095, '85', 'nl-NL', 'Schrijf 10 interessante titels voor Snapchat-advertentie van het volgende product gericht op:\n\n ##audience## \n\n Productnaam:\n ##title## \n\n Product beschrijving:\n ##description## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3096, '85', 'et-EE', 'Kirjutage 10 huvitavat pealkirja järgmise toote snapchati reklaamile, mis on suunatud:\n\n ##audience## \n\n Tootenimi:\n ##title## \n\n Tootekirjeldus:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3097, '85', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavan tuotteen snapchat-mainokseen, joka on tarkoitettu:\n\n ##audience## \n\n Tuotteen nimi:\n ##title## \n\n Tuotteen Kuvaus:\n ##description## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3098, '85', 'fr-FR', 'Écrivez 10 titres intéressants pour l\'annonce Snapchat du produit suivant destiné à :\n\n ##audience## \n\n Nom du produit :\n ##title## \n\n Description du produit:\n ##description## \n\n Le ton de voix du résultat doit être :\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3099, '85', 'de-DE', 'Schreiben Sie 10 interessante Titel für die Snapchat-Anzeige des folgenden Produkts mit der Zielgruppe:\n\n ##audience## \n\n Produktname:\n ##title## \n\n Produktbeschreibung:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3100, '85', 'el-GR', 'Γράψτε 10 ενδιαφέροντες τίτλους για τη διαφήμιση snapchat του παρακάτω προϊόντος με στόχο:\n\n ##audience## \n\n Ονομασία προϊόντος:\n ##title## \n\n Περιγραφή προϊόντος:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3101, '85', 'he-IL', 'כתוב 10 כותרות מעניינות עבור מודעת Snapchat של המוצר הבא המיועדת ל:\n\n ##audience## \n\n שם מוצר:\n ##title## \n\n תיאור מוצר:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3102, '85', 'hi-IN', 'निम्नलिखित उत्पाद के स्नैपचैट विज्ञापन के लिए 10 दिलचस्प शीर्षक लिखें जिनका उद्देश्य है:\n\n ##audience## \n\n प्रोडक्ट का नाम:\n ##title## \n\n उत्पाद वर्णन:\n ##description## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3103, '85', 'hu-HU', 'Írjon 10 érdekes címet a következő termék snapchat-hirdetéséhez, amelynek célja:\n\n ##audience## \n\n Termék név:\n ##title## \n\n Termékleírás:\n ##description## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3104, '85', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir snapchat auglýsingu fyrir eftirfarandi vöru sem miðar að:\n\n ##audience## \n\n Vöru Nafn:\n ##title## \n\n Vörulýsing:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3105, '85', 'id-ID', 'Tulis 10 judul menarik untuk iklan snapchat produk berikut yang ditujukan untuk:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Deskripsi Produk:\n ##description## \n\n Nada suara hasil harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3106, '85', 'it-IT', 'Scrivi 10 titoli interessanti per l\'annuncio snapchat del seguente prodotto mirato a:\n\n ##audience## \n\n Nome del prodotto:\n ##title## \n\n Descrizione del prodotto:\n ##description## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3107, '85', 'ja-JP', '次の製品のスナップチャット広告の興味深いタイトルを 10 個書いてください:\n\n ##audience## \n\n 商品名:\n ##title## \n\n 製品説明:\n ##description## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3108, '85', 'ko-KR', '다음을 대상으로 하는 스냅챗 광고의 흥미로운 제목 10개를 작성하세요:\n\n ##audience## \n\n 상품명:\n ##title## \n\n 제품 설명:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3109, '85', 'ms-MY', 'Tulis 10 tajuk menarik untuk iklan snapchat produk berikut bertujuan:\n\n ##audience## \n\n Nama Produk:\n ##title## \n\n Penerangan Produk:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3110, '85', 'nb-NO', 'Skriv 10 interessante titler for snapchat-annonsen for følgende produkt rettet mot:\n\n ##audience## \n\n Produktnavn:\n ##title## \n\n Produktbeskrivelse:\n ##description## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3111, '85', 'pl-PL', 'Napisz 10 ciekawych tytułów reklamy snapchat następującego produktu skierowanej do:\n\n ##audience## \n\n Nazwa produktu:\n ##title## \n\n Opis produktu:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3112, '85', 'pt-PT', 'Escreva 10 títulos interessantes para o anúncio do Snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do Produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3113, '85', 'ru-RU', 'Напишите 10 интересных заголовков для рекламы в Snapchat следующего продукта, нацеленного на:\n\n ##audience## \n\n Наименование товара:\n ##title## \n\n Описание продукта:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3114, '85', 'es-ES', 'Escriba 10 títulos interesantes para el anuncio de Snapchat del siguiente producto dirigido a:\n\n ##audience## \n\n Nombre del producto:\n ##title## \n\n Descripción del Producto:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3115, '85', 'sv-SE', 'Skriv 10 intressanta titlar för snapchat-annons för följande produkt som syftar till:\n\n ##audience## \n\n Produktnamn:\n ##title## \n\n Produktbeskrivning:\n ##description## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3116, '85', 'tr-TR', 'Aşağıdaki ürünün Snapchat reklamı için 10 ilginç başlık yazın:\n\n ##audience## \n\n Ürün adı:\n ##title## \n\n Ürün Açıklaması:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3117, '85', 'pt-BR', 'Escreva 10 títulos interessantes para o anúncio do snapchat do seguinte produto destinado a:\n\n ##audience## \n\n Nome do produto:\n ##title## \n\n Descrição do produto:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3118, '85', 'ro-RO', 'Scrieți 10 titluri interesante pentru reclame snapchat ale următorului produs destinat:\n\n ##audience## \n\n Numele produsului:\n ##title## \n\n Descriere produs:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3119, '85', 'vi-VN', 'Viết 10 tiêu đề thú vị cho quảng cáo snapchat của sản phẩm sau nhằm mục đích:\n\n ##audience## \n\n Tên sản phẩm:\n ##title## \n\n Mô tả Sản phẩm:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3120, '85', 'sw-KE', 'Andika mada 10 za kuvutia za tangazo la snapchat la bidhaa ifuatayo inayolenga:\n\n ##audience## \n\n Jina la bidhaa:\n ##title## \n\n Maelezo ya bidhaa:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (3121, '85', 'sl-SI', 'Napišite 10 zanimivih naslovov za snapchat oglas naslednjega izdelka, ki je namenjen:\n\n ##audience## \n\n Ime izdelka:\n ##title## \n\n Opis izdelka:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3122, '85', 'th-TH', 'เขียน 10 ชื่อที่น่าสนใจสำหรับโฆษณา snapchat ของผลิตภัณฑ์ต่อไปนี้ซึ่งมุ่งเป้าไปที่:\n\n ##audience## \n\n ชื่อผลิตภัณฑ์:\n ##title## \n\n รายละเอียดสินค้า:\n ##description## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3123, '85', 'uk-UA', 'Напишіть 10 цікавих назв для реклами snapchat наступного продукту, спрямованого на:\n\n ##audience## \n\n Назва продукту:\n ##title## \n\n Опис продукту:\n ##description## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3124, '85', 'lt-LT', 'Parašykite 10 įdomių pavadinimų šio produkto „snapchat“ reklamai, skirtai:\n\n ##audience## \n\n Produkto pavadinimas:\n ##title## \n\n Prekės aprašymas:\n ##description## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3125, '85', 'bg-BG', 'Напишете 10 интересни заглавия за snapchat реклама на следния продукт, насочен към::\n\n ##audience## \n\n Име на продукта:\n ##title## \n\n Описание на продукта:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3126, '86', 'en-US', 'Write attention grabbing Shopify marketplace product description for:\n\n ##title## \n\nUse following keywords in the product description:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3127, '86', 'ar-AE', 'اكتب وصفًا لجذب الانتباه Shopify Marketplace وصف المنتج لـ:\n\n ##title## \n\n استخدم الكلمات الرئيسية التالية في وصف المنتج:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3128, '86', 'cmn-CN', '写下引人注目的 Shopify 市场产品描述:\n\n ##title## \n\n 在产品描述中使用以下关键字:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3129, '86', 'hr-HR', 'Napišite opis proizvoda Shopify marketplace koji privlači pažnju za:\n\n ##title## \n\n Koristite sljedeće ključne riječi u opisu proizvoda:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3130, '86', 'cs-CZ', 'Napište popis produktu na tržišti Shopify pro:\n\n ##title## \n\n V popisu produktu použijte následující klíčová slova:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3131, '86', 'da-DK', 'Skriv opmærksomhedsfangende Shopify markedsplads produktbeskrivelse for:\n\n ##title## \n\n Brug følgende nøgleord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3132, '86', 'nl-NL', 'Schrijf de aandacht trekkende Shopify marktplaats productbeschrijving voor:\n\n ##title## \n\n Gebruik de volgende trefwoorden in de productbeschrijving:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3133, '86', 'et-EE', 'Kirjutage tähelepanu äratav Shopify turuplatsi tootekirjeldus:\n\n ##title## \n\n Kasutage tootekirjelduses järgmisi märksõnu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3134, '86', 'fi-FI', 'Kirjoita huomiota herättävä Shopify Marketplace -tuotteen kuvaus:\n\n ##title## \n\n Käytä tuotekuvauksessa seuraavia avainsanoja:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3135, '86', 'fr-FR', 'Rédigez une description de produit accrocheuse sur le marché Shopify pour :\n\n ##title## \n\n Utilisez les mots clés suivants dans la description du produit :\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3136, '86', 'de-DE', 'Schreiben Sie eine aufmerksamkeitsstarke Produktbeschreibung für den Shopify-Marktplatz für:\n\n ##title## \n\n Verwenden Sie in der Produktbeschreibung folgende Schlüsselwörter:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3137, '86', 'el-GR', 'Γράψτε την περιγραφή προϊόντος της αγοράς Shopify για:\n\n ##title## \n\n Χρησιμοποιήστε τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του προϊόντος:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3138, '86', 'he-IL', 'כתוב תיאור המוצר של Shopify Marketplace למשוך תשומת לב עבור:\n\n ##title## \n\n השתמש במילות המפתח הבאות בתיאור המוצר:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3139, '86', 'hi-IN', 'ध्यान आकर्षित करने वाले लिखें Shopify मार्केटप्लेस के लिए उत्पाद विवरण:\n\n ##title## \n\n उत्पाद विवरण में निम्नलिखित कीवर्ड का प्रयोग करें:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3140, '86', 'hu-HU', 'Írjon figyelemfelkeltő Shopify piactér termékleírást a következőhöz:\n\n ##title## \n\n Használja a következő kulcsszavakat a termékleírásban:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3141, '86', 'is-IS', 'Skrifaðu athyglisverða vörulýsingu á Shopify markaðstorginu fyrir:\n\n ##title## \n\n Notaðu eftirfarandi lykilorð í vörulýsingunni:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3142, '86', 'id-ID', 'Tulis deskripsi produk pasar Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam deskripsi produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3143, '86', 'it-IT', 'Scrivi una descrizione del prodotto del marketplace Shopify che attiri l\'attenzione per:\n\n ##title## \n\n Usa le seguenti parole chiave nella descrizione del prodotto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3144, '86', 'ja-JP', '注目を集める Shopify マーケットプレイス製品の説明を次のように書きます:\n\n ##title## \n\n 製品説明には次のキーワードを使用します:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3145, '86', 'ko-KR', '관심을 끄는 Shopify 마켓플레이스 제품 설명 작성:\n\n ##title## \n\n 제품 설명에 다음 키워드를 사용하십시오:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3146, '86', 'ms-MY', 'Tulis penerangan produk pasaran Shopify yang menarik perhatian untuk:\n\n ##title## \n\n Gunakan kata kunci berikut dalam penerangan produk:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3147, '86', 'nb-NO', 'Skriv oppmerksomhetsfangende Shopify markedsplass produktbeskrivelse for:\n\n ##title## \n\n Bruk følgende nøkkelord i produktbeskrivelsen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3148, '86', 'pl-PL', 'Napisz przyciągający uwagę opis produktu Shopify marketplace dla:\n\n ##title## \n\n Użyj następujących słów kluczowych w opisie produktu:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3149, '86', 'pt-PT', 'Escreva uma descrição atraente do produto Shopify marketplace para:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3150, '86', 'ru-RU', 'Напишите привлекающее внимание описание продукта торговой площадки Shopify для:\n\n ##title## \n\n В описании товара используйте следующие ключевые слова:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3151, '86', 'es-ES', 'Escriba una descripción del producto del mercado de Shopify que llame la atención para:\n\n ##title## \n\n Utilice las siguientes palabras clave en la descripción del producto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3152, '86', 'sv-SE', 'Skriv en uppmärksammad produktbeskrivning för Shopify marknadsplats för:\n\n ##title## \n\nAnvänd följande nyckelord i produktbeskrivningen:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3153, '86', 'tr-TR', 'Aşağıdakiler için dikkat çekici Shopify ticaret sitesi ürün açıklamasını yazın:\n\n ##title## \n\n Ürün açıklamasında aşağıdaki anahtar kelimeleri kullanın:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3154, '86', 'pt-BR', 'Escreva uma descrição de produto do Shopify Marketplace que chame a atenção:\n\n ##title## \n\n Use as seguintes palavras-chave na descrição do produto:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3155, '86', 'ro-RO', 'Scrieți descrierea produsului Shopify marketplace pentru:\n\n ##title## \n\n Utilizați următoarele cuvinte cheie în descrierea produsului:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3156, '86', 'vi-VN', 'Viết mô tả sản phẩm thị trường Shopify thu hút sự chú ý cho:\n\n ##title## \n\n Sử dụng các từ khóa sau trong mô tả sản phẩm:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3157, '86', 'sw-KE', 'Andika umakini wa kuvutia maelezo ya bidhaa ya soko la Shopify kwa:\n\n ##title## \n\n Tumia maneno muhimu yafuatayo katika maelezo ya bidhaa:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3158, '86', 'sl-SI', 'Napišite opis izdelka Shopify marketplace, ki pritegne pozornost za:\n\n ##title## \n\n V opisu izdelka uporabite naslednje ključne besede:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3159, '86', 'th-TH', 'เขียนคำอธิบายผลิตภัณฑ์ตลาด Shopify ที่ดึงดูดความสนใจสำหรับ:\n\n ##title## \n\n ใช้คำหลักต่อไปนี้ในรายละเอียดสินค้า:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3160, '86', 'uk-UA', 'Напишіть опис продукту Shopify Marketplace, який приверне увагу:\n\n ##title## \n\n Використовуйте наступні ключові слова в описі товару:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3161, '86', 'lt-LT', 'Parašykite dėmesį patraukiantį Shopify prekyvietės produkto aprašymą:\n\n ##title## \n\n Produkto aprašyme naudokite šiuos raktinius žodžius:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3162, '86', 'bg-BG', 'Напишете грабващо вниманието описание на продукта на Shopify marketplace за:\n\n ##title## \n\n Използвайте следните ключови думи в описанието на продукта:\n ##keywords## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3163, '87', 'en-US', 'Write a personal bio which i can used at ##description## for myself \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3164, '87', 'ar-AE', 'اكتب سيرة ذاتية شخصية يمكنني استخدامها فيها ##description## لنفسي \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3165, '87', 'cmn-CN', '写一个我可以使用的个人简历 ##description## 为了我自己 \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3166, '87', 'hr-HR', 'Napiši osobnu biografiju koju mogu koristiti ##description## Za sebe \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3167, '87', 'cs-CZ', 'Napište osobní životopis, který mohu použít ##description## pro mě \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3168, '87', 'da-DK', 'Skriv en personlig biografi, som jeg kan bruge på ##description## for mig selv \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3169, '87', 'nl-NL', 'Schrijf een persoonlijke bio die ik kan gebruiken ##description## voor mezelf \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3170, '87', 'et-EE', 'Kirjutage isiklik biograafia, mida saan kasutada ##description## enda jaoks \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3171, '87', 'fi-FI', 'Kirjoita henkilökohtainen bio, jota voin käyttää ##description## itselleni \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3172, '87', 'fr-FR', 'Écrivez une biographie personnelle que je peux utiliser à ##description## pour moi-même \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3173, '87', 'de-DE', 'Schreiben Sie eine persönliche Biografie, die ich verwenden kann ##description## für mich \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3174, '87', 'el-GR', 'Γράψτε ένα προσωπικό βιογραφικό στο οποίο μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3175, '87', 'he-IL', 'כתוב ביו אישי שבו אני יכול להשתמש: ##description## בשבילי \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3176, '87', 'hi-IN', 'एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3177, '87', 'hu-HU', 'Írj személyes életrajzot, amit fel tudok használni ##description## magamnak \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3178, '87', 'is-IS', 'Skrifaðu persónulega ævisögu sem ég get notað á ##description## fyrir mig \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3179, '87', 'id-ID', 'Tulis bio pribadi yang bisa saya gunakan ##description## untuk diriku \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3180, '87', 'it-IT', 'Scrivi una biografia personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3181, '87', 'ja-JP', 'で使用できる個人的な経歴を書きます ##description## 自分のため \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3182, '87', 'ko-KR', '내가 사용할 수있는 개인 약력 쓰기: ##description## 나 자신을 위해 \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3183, '87', 'ms-MY', 'Tulis bio peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3184, '87', 'nb-NO', 'Skriv en personlig biografi som jeg kan bruke på ##description## for meg selv \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3185, '87', 'pl-PL', 'Napisz osobistą biografię, z której będę mógł korzystać ##description## dla siebie \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3186, '87', 'pt-PT', 'Escreva uma biografia pessoal que eu possa usar em ##description## para mim \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3187, '87', 'ru-RU', 'Напишите личную биографию, которую я могу использовать в ##description## для меня \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3188, '87', 'es-ES', 'Escribe una biografía personal que pueda usar en ##description## para mí \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3189, '87', 'sv-SE', 'Skriv en personlig bio som jag kan använda på ##description## för mig själv \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3190, '87', 'tr-TR', 'Kullanabileceğim kişisel bir biyografi yaz ##description## kendim için \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3191, '87', 'pt-BR', 'Escreva uma biografia pessoal que eu possa usar em ##description## para mim mesmo \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3192, '87', 'ro-RO', 'Scrie o biografie personală pe care să o pot folosi ##description## pentru mine \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3193, '87', 'vi-VN', 'Viết tiểu sử cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3194, '87', 'sw-KE', 'Andika wasifu wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3195, '87', 'sl-SI', 'Napišite osebni življenjepis, ki ga lahko uporabim ##description## zame \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3196, '87', 'th-TH', 'เขียนประวัติส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3197, '87', 'uk-UA', 'Напишіть особисту біографію, яку я можу використати ##description## для мене \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3198, '87', 'lt-LT', 'Parašykite asmeninę biografiją, kurią galėčiau panaudoti ##description## sau pačiam \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3199, '87', 'bg-BG', 'Напишете лична биография, която мога да използвам ##description## за мен \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3200, '88', 'en-US', 'Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3201, '88', 'ar-AE', 'اجذب الانتباه من خلال التسميات التوضيحية الجذابة لمشاركة Pinterest هذه:\n\n ##description## \n\nيجب أن تكون نبرة صوت التعليقات:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3202, '88', 'cmn-CN', '用醒目的标题吸引注意力:\n\n ##description## \n\n字幕的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3203, '88', 'hr-HR', 'Privucite pozornost privlačnim opisima za ovu objavu na Pinterestu:\n\n ##description## \n\nTon glasa titlova mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3204, '88', 'cs-CZ', 'Upoutejte pozornost chytlavými titulky k tomuto příspěvku na Pinterestu:\n\n ##description## \n\nTón hlasu titulků musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3205, '88', 'da-DK', 'Fang opmærksomhed med fængende billedtekster til dette Pinterest-indlæg:\n\n ##description## \n\nTone of voice af billedteksterne skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3206, '88', 'nl-NL', 'Trek de aandacht met pakkende bijschriften voor dit Pinterest-bericht:\n\n ##description## \n\nDe tone-of-voice van de onderschriften moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3207, '88', 'et-EE', 'Pöörake tähelepanu selle Pinteresti postituse meeldejäävate pealkirjadega:\n\n ##description## \n\nPealkirjade hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3208, '88', 'fi-FI', 'Herätä huomiota tämän Pinterest-julkaisun tarttuvilla kuvateksteillä:\n\n ##description## \n\nTekstityksen äänensävyn on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3209, '88', 'fr-FR', 'Attirez l\'attention avec des légendes accrocheuses pour ce post Pinterest:\n\n ##description## \n\nLe ton de la voix des sous-titres doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3210, '88', 'de-DE', 'Machen Sie mit einprägsamen Bildunterschriften für diesen Pinterest-Beitrag auf sich aufmerksam:\n\n ##description## \n\nDer Tonfall der Untertitel muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3211, '88', 'el-GR', 'Τραβήξτε την προσοχή με συναρπαστικές λεζάντες για αυτήν την ανάρτηση στο Pinterest:\n\n ##description## \n\nΟ τόνος της φωνής των λεζάντων πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3212, '88', 'he-IL', 'למשוך תשומת לב עם כיתובים קליטים לפוסט הזה בפינטרסט:\n\n ##description## \n\nטון הדיבור של הכתוביות חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3213, '88', 'hi-IN', 'इस Pinterest पोस्ट के लिए आकर्षक कैप्शन के साथ ध्यान आकर्षित करें:\n\n ##description## \n\nकैप्शन की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3214, '88', 'hu-HU', 'Vedd fel a figyelmet fülbemászó feliratokkal ehhez a Pinterest-bejegyzéshez:\n\n ##description## \n\nA feliratok hangszínének ilyennek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3215, '88', 'is-IS', 'Gríptu athygli með grípandi myndatexta fyrir þessa Pinterest færslu:\n\n ##description## \n\nRöddtónn skjátextanna verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3216, '88', 'id-ID', 'Tarik perhatian dengan teks yang menarik untuk postingan Pinterest ini:\n\n ##description## \n\nNada suara teks harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3217, '88', 'it-IT', 'Attira l\'attenzione con didascalie accattivanti per questo post di Pinterest:\n\n ##description## \n\nIl tono di voce delle didascalie deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3218, '88', 'ja-JP', 'この Pinterest の投稿にキャッチーなキャプションを付けて注目を集めましょう:\n\n ##description## \n\nキャプションの声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3219, '88', 'ko-KR', '이 Pinterest 게시물에 대한 눈길을 끄는 캡션으로 관심 끌기:\n\n ##description## \n\n자막의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3220, '88', 'ms-MY', 'Tarik perhatian dengan kapsyen menarik untuk siaran Pinterest ini:\n\n ##description## \n\nNada suara kapsyen mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3221, '88', 'nb-NO', 'Fang oppmerksomhet med fengende bildetekster for dette Pinterest-innlegget:\n\n ##description## \n\nTonefallet til bildetekstene må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3222, '88', 'pl-PL', 'Przyciągnij uwagę chwytliwymi napisami do tego posta na Pintereście:\n\n ##description## \n\nTon głosu napisów musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3223, '88', 'pt-PT', 'Chame a atenção com legendas cativantes para esta postagem do Pinterest:\n\n ##description## \n\nO tom de voz das legendas deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3224, '88', 'ru-RU', 'Привлеките внимание броскими подписями к этому посту в Pinterest:\n\n ##description## \n\nТон голоса титров должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3225, '88', 'es-ES', 'Llame la atención con leyendas pegadizas para esta publicación de Pinterest:\n\n ##description## \n\nEl tono de voz de los subtítulos debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3226, '88', 'sv-SE', 'Fånga uppmärksamheten med catchy bildtexter för detta Pinterest-inlägg:\n\n ##description## \n\nTonen i rösten för bildtexterna måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3227, '88', 'tr-TR', 'Bu Pinterest gönderisi için akılda kalıcı altyazılarla dikkat çekin:\n\n ##description## \n\nAltyazıların ses tonu:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3228, '88', 'pt-BR', 'Grab attention with catchy captions for this Pinterest post:\n\n ##description## \n\nTone of voice of the captions must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3229, '88', 'ro-RO', 'Atrageți atenția cu subtitrări captivante pentru această postare pe Pinterest:\n\n ##description## \n\nTonul vocii subtitrărilor trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3230, '88', 'vi-VN', 'Thu hút sự chú ý với chú thích hấp dẫn cho bài đăng trên Pinterest này:\n\n ##description## \n\nGiọng điệu của phụ đề phải được:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3231, '88', 'sw-KE', 'Chukua tahadhari kwa manukuu ya kuvutia ya chapisho hili la Pinterest:\n\n ##description## \n\nToni ya sauti ya manukuu lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3232, '88', 'sl-SI', 'Pritegnite pozornost s privlačnimi napisi za to objavo na Pinterestu:\n\n ##description## \n\nTon glasu napisov mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3233, '88', 'th-TH', 'ดึงดูดความสนใจด้วยคำบรรยายที่จับใจสำหรับโพสต์ Pinterest นี้:\n\n ##description## \n\nน้ำเสียงของคำบรรยายต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3234, '88', 'uk-UA', 'Привертайте увагу привабливими підписами до цієї публікації на Pinterest:\n\n ##description## \n\nТон голосу титрів повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3235, '88', 'lt-LT', 'Patraukite dėmesį patraukliais šio Pinterest įrašo antraštėmis:\n\n ##description## \n\nSubtitrų balso tonas turi būti toks:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3236, '88', 'bg-BG', 'Грабнете вниманието със закачливи надписи за тази публикация в Pinterest:\n\n ##description## \n\nТонът на гласа на надписите трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3237, '89', 'en-US', 'Write 10 interesting titles for Pinterest post of the following:\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n Title\'s length must be 30 characters\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3238, '89', 'ar-AE', 'اكتب 10 عناوين مثيرة للاهتمام لنشر Pinterest مما يلي:\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n يجب أن يكون طول العنوان 30 حرفًا\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3239, '89', 'cmn-CN', '为以下 Pinterest 帖子写 10 个有趣的标题:\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n 标题长度必须为 30 个字符\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3240, '89', 'hr-HR', 'Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3241, '89', 'cs-CZ', 'Napište 10 zajímavých titulů pro následující příspěvek na Pinterestu:\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n Délka názvu musí být 30 znaků\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3242, '89', 'da-DK', 'Skriv 10 interessante titler til Pinterest-indlæg af følgende:\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n Titlens længde skal være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3243, '89', 'nl-NL', 'Schrijf 10 interessante titels voor Pinterest post van het volgende:\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n De lengte van de titel moet 30 tekens zijn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3244, '89', 'et-EE', 'Kirjutage järgmise Pinteresti postituse jaoks 10 huvitavat pealkirja:\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n Pealkirja pikkus peab olema 30 tähemärki\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3245, '89', 'fi-FI', 'Kirjoita 10 mielenkiintoista otsikkoa seuraavista Pinterest-julkaisuista:\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n Otsikon pituuden tulee olla 30 merkkiä\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3246, '89', 'fr-FR', 'Écrivez 10 titres intéressants pour la publication Pinterest des éléments suivants:\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n La longueur du titre doit être de 30 caractères\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3247, '89', 'de-DE', 'Schreiben Sie 10 interessante Titel für den folgenden Pinterest-Beitrag:\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n Die Länge des Titels muss 30 Zeichen betragen\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3248, '89', 'el-GR', 'Γράψε 10 ενδιαφέροντες τίτλους για την ανάρτηση στο Pinterest των παρακάτω:\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n Το μήκος του τίτλου πρέπει να είναι 30 χαρακτήρες\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3249, '89', 'he-IL', 'כתוב 10 כותרות מעניינות לפוסט Pinterest של הבאים:\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n אורך הכותרת חייב להיות 30 תווים\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3250, '89', 'hi-IN', 'निम्नलिखित में से Pinterest पोस्ट के लिए 10 रोचक शीर्षक लिखें:\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n शीर्षक की लंबाई 30 वर्ण होनी चाहिए\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3251, '89', 'hu-HU', 'Írj 10 érdekes címet a következő Pinterest-bejegyzéshez:\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n A címnek 30 karakterből kell állnia\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3252, '89', 'is-IS', 'Skrifaðu 10 áhugaverða titla fyrir Pinterest færslu af eftirfarandi:\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n Lengd titilsins verður að vera 30 stafir\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3253, '89', 'id-ID', 'Tulis 10 judul menarik untuk postingan Pinterest berikut ini:\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n Panjang judul harus 30 karakter\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3254, '89', 'it-IT', 'Scrivi 10 titoli interessanti per il post Pinterest di quanto segue:\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n La lunghezza del titolo deve essere di 30 caratteri\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3255, '89', 'ja-JP', 'Pinterest の投稿に次の興味深いタイトルを 10 件書いてください:\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n タイトルの長さは 30 文字である必要があります\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3256, '89', 'ko-KR', 'Pinterest 게시물에 다음과 같은 흥미로운 제목 10개를 작성하세요.:\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n 제목 길이는 30자여야 합니다.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3257, '89', 'ms-MY', 'Tulis 10 tajuk menarik untuk siaran Pinterest berikut:\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n Panjang tajuk mestilah 30 aksara\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3258, '89', 'nb-NO', 'Skriv 10 interessante titler for Pinterest-innlegg av følgende:\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n Tittelens lengde må være på 30 tegn\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3259, '89', 'pl-PL', 'Napisz 10 interesujących tytułów dla posta na Pintereście z poniższych:\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n Długość tytułu musi wynosić 30 znaków\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3260, '89', 'pt-PT', 'Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3261, '89', 'ru-RU', 'Напишите 10 интересных заголовков для публикации в Pinterest из следующих:\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n Длина заголовка должна быть 30 символов.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3262, '89', 'es-ES', 'Escriba 10 títulos interesantes para la publicación de Pinterest de lo siguiente:\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n La longitud del título debe ser de 30 caracteres.\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3263, '89', 'sv-SE', 'Skriv 10 intressanta titlar för Pinterest-inlägg av följande:\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n Titelns längd måste vara 30 tecken\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3264, '89', 'tr-TR', 'Aşağıdakilerden Pinterest gönderisi için 10 ilginç başlık yazın:\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n Başlığın uzunluğu 30 karakter olmalıdır\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3265, '89', 'pt-BR', 'Escreva 10 títulos interessantes para a postagem no Pinterest do seguinte:\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n O comprimento do título deve ser de 30 caracteres\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3266, '89', 'ro-RO', 'Scrie 10 titluri interesante pentru postarea Pinterest din următoarele:\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n Lungimea titlului trebuie să fie de 30 de caractere\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3267, '89', 'vi-VN', 'Viết 10 tiêu đề thú vị cho bài đăng trên Pinterest sau đây:\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n Độ dài của tiêu đề phải là 30 ký tự\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3268, '89', 'sw-KE', 'Andika majina 10 ya kuvutia kwa chapisho la Pinterest la yafuatayo:\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n Urefu wa kichwa lazima uwe na vibambo 30\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3269, '89', 'sl-SI', 'Napišite 10 zanimivih naslovov za objavo na Pinterestu od naslednjih:\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n Dolžina naslova mora biti 30 znakov\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3270, '89', 'th-TH', 'เขียน 10 ชื่อเรื่องที่น่าสนใจสำหรับโพสต์ Pinterest ต่อไปนี้:\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n ความยาวของชื่อเรื่องต้องมีความยาว 30 อักขระ\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3271, '89', 'uk-UA', 'Напишіть 10 цікавих заголовків для публікації Pinterest з наступного:\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n Довжина заголовка має бути 30 символів\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3272, '89', 'lt-LT', 'Parašykite 10 įdomių pavadinimų toliau pateiktiems Pinterest įrašams:\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n Pavadinimo ilgis turi būti 30 simbolių\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3273, '89', 'bg-BG', 'Напишете 10 интересни заглавия за публикация в Pinterest от следните:\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n Дължината на заглавието трябва да бъде 30 знака\n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3274, '90', 'en-US', 'Write creative Pinterest bio Using following keywords in the bio description:\n ##keywords## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3275, '90', 'ar-AE', 'اكتب السيرة الذاتية الإبداعية Pinterest باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\n ##keywords## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3276, '90', 'cmn-CN', '写有创意的 Pinterest bio 在 bio 描述中使用以下关键字:\n ##keywords## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3277, '90', 'hr-HR', 'Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3278, '90', 'cs-CZ', 'Napište kreativní životopis na Pinterest Pomocí následujících klíčových slov v popisu životopisu:\n ##keywords## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3279, '90', 'da-DK', 'Skriv kreativ Pinterest bio Brug følgende nøgleord i biobeskrivelsen:\n ##keywords## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3280, '90', 'nl-NL', 'Schrijf creatieve Pinterest-bio Gebruik de volgende trefwoorden in de biobeschrijving:\n ##keywords## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3281, '90', 'et-EE', 'Kirjutage loominguline Pinteresti biograafia Kasutades biokirjelduses järgmisi märksõnu:\n ##keywords## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3282, '90', 'fi-FI', 'Kirjoita luova Pinterest bio käyttämällä seuraavia avainsanoja bion kuvauksessa:\n ##keywords## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3283, '90', 'fr-FR', 'Rédigez une bio Pinterest créative en utilisant les mots-clés suivants dans la description de la bio:\n ##keywords## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3284, '90', 'de-DE', 'Schreiben Sie eine kreative Pinterest-Biografie und verwenden Sie die folgenden Schlüsselwörter in der Biografiebeschreibung:\n ##keywords## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3285, '90', 'el-GR', 'Γράψτε δημιουργικό βιογραφικό Pinterest Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\n ##keywords## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3286, '90', 'he-IL', 'כתוב ביוגרפיה יצירתית של Pinterest באמצעות מילות מפתח הבאות בתיאור הביוגרפיה:\n ##keywords## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3287, '90', 'hi-IN', 'बायो विवरण में निम्नलिखित कीवर्ड्स का उपयोग करके रचनात्मक Pinterest बायो लिखें:\n ##keywords## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3288, '90', 'hu-HU', 'Írjon kreatív Pinterest életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\n ##keywords## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3289, '90', 'is-IS', 'Skrifaðu skapandi líffræði á Pinterest með því að nota eftirfarandi lykilorð í líflýsingunni:\n ##keywords## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3290, '90', 'id-ID', 'Tulis bio Pinterest yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\n ##keywords## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3291, '90', 'it-IT', 'Scrivi una biografia Pinterest creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\n ##keywords## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3292, '90', 'ja-JP', 'Pinterest のクリエイティブな自己紹介を作成します。自己紹介の説明に次のキーワードを使用します。:\n ##keywords## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3293, '90', 'ko-KR', '창의적인 Pinterest 약력 작성 약력 설명에 다음 키워드 사용:\n ##keywords## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3294, '90', 'ms-MY', 'Tulis bio Pinterest kreatif Menggunakan kata kunci berikut dalam penerangan bio:\n ##keywords## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3295, '90', 'nb-NO', 'Skriv kreativ Pinterest-biografi ved å bruke følgende nøkkelord i biobeskrivelsen:\n ##keywords## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3296, '90', 'pl-PL', 'Napisz kreatywną biografię na Pintereście, używając następujących słów kluczowych w opisie biografii:\n ##keywords## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3297, '90', 'pt-PT', 'Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3298, '90', 'ru-RU', 'Напишите креативную биографию Pinterest, используя следующие ключевые слова в описании биографии:\n ##keywords## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3299, '90', 'es-ES', 'Escriba una biografía creativa de Pinterest usando las siguientes palabras clave en la descripción de la biografía:\n ##keywords## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3300, '90', 'sv-SE', 'Skriv kreativ Pinterest-bio Använd följande nyckelord i biobeskrivningen:\n ##keywords## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3301, '90', 'tr-TR', 'Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı Pinterest biyografisi yazın:\n ##keywords## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3302, '90', 'pt-BR', 'Escreva uma biografia criativa no Pinterest usando as seguintes palavras-chave na descrição da biografia:\n ##keywords## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3303, '90', 'ro-RO', 'Scrieți o biografie creativă pentru Pinterest Folosind următoarele cuvinte cheie în descrierea biografiei:\n ##keywords## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3304, '90', 'vi-VN', 'Viết tiểu sử Pinterest sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\n ##keywords## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3305, '90', 'sw-KE', 'Andika wasifu wa ubunifu wa Pinterest Kwa kutumia maneno muhimu yafuatayo katika maelezo ya wasifu:\n ##keywords## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3306, '90', 'sl-SI', 'Napišite ustvarjalni življenjepis na Pinterestu. V opisu biografije uporabite naslednje ključne besede:\n ##keywords## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3307, '90', 'th-TH', 'เขียนชีวประวัติของ Pinterest อย่างสร้างสรรค์ โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ:\n ##keywords## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3308, '90', 'uk-UA', 'Напишіть креативну біографію Pinterest, використовуючи наступні ключові слова в описі біографії:\n ##keywords## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3309, '90', 'lt-LT', 'Parašykite kūrybingą Pinterest biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\n ##keywords## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3310, '90', 'bg-BG', 'Напишете творческа биография в Pinterest, като използвате следните ключови думи в описанието на биографията:\n ##keywords## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3311, '91', 'en-US', 'Write creative replay for the following review :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3312, '91', 'ar-AE', 'اكتب إعادة إبداعية للمراجعة التالية :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3313, '91', 'cmn-CN', '为以下评论撰写创意重播 :\n\n ##description## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3314, '91', 'hr-HR', 'Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3315, '91', 'cs-CZ', 'Napište kreativní záznam pro následující recenzi :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3316, '91', 'da-DK', 'Skriv kreativ gentagelse til den følgende anmeldelse :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3317, '91', 'nl-NL', 'Schrijf een creatieve herhaling voor de volgende recensie :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3318, '91', 'et-EE', 'Kirjutage järgmise ülevaate jaoks loominguline kordus :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3319, '91', 'fi-FI', 'Kirjoita luova uusinta seuraavaa arvostelua varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3320, '91', 'fr-FR', 'Rédiger une rediffusion créative pour l\'examen suivant :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3321, '91', 'de-DE', 'Schreiben Sie eine kreative Wiederholung für die folgende Rezension :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3322, '91', 'el-GR', 'Γράψτε επανάληψη δημιουργικού για την ακόλουθη κριτική :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3323, '91', 'he-IL', 'כתוב שידור חוזר יצירתי עבור הסקירה הבאה :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3324, '91', 'hi-IN', 'निम्नलिखित समीक्षा के लिए क्रिएटिव रिप्ले लिखें :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3325, '91', 'hu-HU', 'Írjon kreatív újrajátszást a következő áttekintéshez :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3326, '91', 'is-IS', 'Skrifaðu skapandi endursýningu fyrir eftirfarandi umsögn :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3327, '91', 'id-ID', 'Tulis tayangan ulang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3328, '91', 'it-IT', 'Scrivi un replay creativo per la seguente recensione :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3329, '91', 'ja-JP', '次のレビュー用にクリエイティブ リプレイを作成します :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3330, '91', 'ko-KR', '다음 리뷰를 위한 크리에이티브 리플레이 작성 :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (3331, '91', 'ms-MY', 'Tulis ulang tayang kreatif untuk ulasan berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3332, '91', 'nb-NO', 'Skriv kreativ reprise for følgende anmeldelse :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3333, '91', 'pl-PL', 'Napisz twórczą powtórkę do następnej recenzji :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3334, '91', 'pt-PT', 'Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3335, '91', 'ru-RU', 'Напишите творческий повтор для следующего обзора :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3336, '91', 'es-ES', 'Escriba una repetición creativa para la siguiente reseña :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3337, '91', 'sv-SE', 'Skriv kreativ repris för följande recension :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3338, '91', 'tr-TR', 'Bir sonraki inceleme için reklam öğesi tekrarını yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3339, '91', 'pt-BR', 'Escrever replay criativo para a seguinte revisão :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3340, '91', 'ro-RO', 'Scrieți reluare creativă pentru următoarea recenzie :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3341, '91', 'vi-VN', 'Viết phát lại sáng tạo cho đánh giá sau :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3342, '91', 'sw-KE', 'Andika ubunifu wa kurudia kwa ukaguzi ufuatao :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3343, '91', 'sl-SI', 'Napišite kreativno ponovitev za naslednji pregled :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3344, '91', 'th-TH', 'เขียนรีเพลย์เชิงสร้างสรรค์สำหรับบทวิจารณ์ต่อไปนี้ :\n\n ##description## \n\n น้ำเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3345, '91', 'uk-UA', 'Напишіть творчий повтор для наступного огляду :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3346, '91', 'lt-LT', 'Parašykite kūrybinį pakartojimą kitai peržiūrai :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3347, '91', 'bg-BG', 'Напишете творческо повторение за следния преглед :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3348, '92', 'en-US', 'Write 10 catchy Slogan for the following:\\n\\n ##description## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3349, '92', 'ar-AE', 'اكتب 10 شعارات جذابة لما يلي:\\n\\n ##description## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3350, '92', 'cmn-CN', '为以下内容写10个朗朗上口的Slogan:\\n\\n ##description## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3351, '92', 'hr-HR', 'Napišite 10 privlačnih slogana za sljedeće:\\n\\n ##description## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3352, '92', 'cs-CZ', 'Napište 10 chytlavých sloganů pro následující:\\n\\n ##description## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3353, '92', 'da-DK', 'Skriv 10 fængende slogan til følgende:\\n\\n ##description## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3354, '92', 'nl-NL', 'Schrijf 10 pakkende Slogan voor het volgende:\\n\\n ##description## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3355, '92', 'et-EE', 'Kirjutage 10 meeldejäävat loosungit järgmise jaoks:\\n\\n ##description## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3356, '92', 'fi-FI', 'Kirjoita 10 tarttuvaa iskulausetta seuraavalle:\\n\\n ##description## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3357, '92', 'fr-FR', 'Rédigez 10 slogans accrocheurs pour les éléments suivants:\\n\\n ##description## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3358, '92', 'de-DE', 'Schreiben Sie 10 einprägsame Slogans für Folgendes:\\n\\n ##description## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3359, '92', 'el-GR', 'Γράψτε 10 πιασάρικα σύνθημα για τα παρακάτω:\\n\\n ##description## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3360, '92', 'he-IL', 'כתוב 10 סלוגן קליט עבור הדברים הבאים:\\n\\n ##description## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3361, '92', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक स्लोगन लिखिए:\\n\\n ##description## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3362, '92', 'hu-HU', 'Írj 10 fülbemászó szlogent a következőkhöz:\\n\\n ##description## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3363, '92', 'is-IS', 'Skrifaðu 10 grípandi slagorð fyrir eftirfarandi:\\n\\n ##description## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3364, '92', 'id-ID', 'Tuliskan 10 Slogan yang menarik berikut ini:\\n\\n ##description## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3365, '92', 'it-IT', 'Scrivi 10 slogan accattivanti per quanto segue:\\n\\n ##description## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3366, '92', 'ja-JP', '以下のキャッチーなスローガンを 10 個書いてください:\\n\\n ##description## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3367, '92', 'ko-KR', '다음과 같은 10가지 눈에 띄는 슬로건 작성:\\n\\n ##description## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3368, '92', 'ms-MY', 'Tulis 10 Slogan yang menarik untuk yang berikut:\\n\\n ##description## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3369, '92', 'nb-NO', 'Skriv 10 fengende slagord for følgende:\\n\\n ##description## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3370, '92', 'pl-PL', 'Napisz 10 chwytliwych sloganów dla następujących osób:\\n\\n ##description## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3371, '92', 'pt-PT', 'Escreva 10 slogans apelativos para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3372, '92', 'ru-RU', 'Напишите 10 броских слоганов для следующих:\\n\\n ##description## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3373, '92', 'es-ES', 'Escriba 10 lemas pegadizos para lo siguiente:\\n\\n ##description## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3374, '92', 'sv-SE', 'Skriv 10 catchy slogan för följande:\\n\\n ##description## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3375, '92', 'tr-TR', 'Aşağıdakiler için akılda kalıcı 10 Slogan yazın:\\n\\n ##description## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3376, '92', 'pt-BR', 'Escreva 10 slogans atraentes para o seguinte:\\n\\n ##description## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3377, '92', 'ro-RO', 'Scrieți 10 sloganuri captivante pentru următoarele:\\n\\n ##description## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3378, '92', 'vi-VN', 'Viết 10 Slogan hấp dẫn cho những điều sau đây:\\n\\n ##description## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3379, '92', 'sw-KE', 'Andika Kauli mbi 10 ya kuvutia kwa yafuatayo:\\n\\n ##description## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3380, '92', 'sl-SI', 'Napišite 10 privlačnih sloganov za naslednje:\\n\\n ##description## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3381, '92', 'th-TH', 'เขียน 10 สโลแกนติดหูต่อไปนี้: \\n\\n ##description## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3382, '92', 'uk-UA', 'Напишіть 10 яскравих слоганів для наступного:\\n\\n ##description## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3383, '92', 'lt-LT', 'Parašykite 10 intriguojančių šūkių:\\n\\n ##description## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3384, '92', 'bg-BG', 'Напишете 10 закачливи лозунга за следното:\\n\\n ##description## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3385, '93', 'en-US', 'Write creative TikTok bio Using following keywords in the bio description:\\n ##keywords## \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3386, '93', 'ar-AE', 'اكتب السيرة الذاتية الإبداعية لـ TikTok باستخدام الكلمات الرئيسية التالية في وصف السيرة الذاتية:\\n ##keywords## \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3387, '93', 'cmn-CN', '撰写有创意的 TikTok bio 在 bio 描述中使用以下关键字:\\n ##keywords## \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3388, '93', 'hr-HR', 'Napišite kreativnu TikTok biografiju koristeći sljedeće ključne riječi u opisu biografije:\\n ##keywords## \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3389, '93', 'cs-CZ', 'Napište kreativní TikTok bio Pomocí následujících klíčových slov v popisu bio:\\n ##keywords## \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3390, '93', 'da-DK', 'Skriv kreativ TikTok-bio ved at bruge følgende nøgleord i biobeskrivelsen:\\n ##keywords## \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3391, '93', 'nl-NL', 'Schrijf creatieve TikTok-bio Gebruik de volgende trefwoorden in de biobeschrijving:\\n ##keywords## \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3392, '93', 'et-EE', 'Kirjutage loominguline TikToki biograafia, kasutades biokirjelduses järgmisi märksõnu:\\n ##keywords## \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3393, '93', 'fi-FI', 'Kirjoita luova TikTok bio käyttämällä seuraavia avainsanoja biokuvauksessa:\\n ##keywords## \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3394, '93', 'fr-FR', 'Rédigez une bio TikTok créative en utilisant les mots-clés suivants dans la description de la bio:\\n ##keywords## \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3395, '93', 'de-DE', 'Schreiben Sie eine kreative TikTok-Biografie und verwenden Sie dabei die folgenden Schlüsselwörter in der Biografiebeschreibung:\\n ##keywords## \\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3396, '93', 'el-GR', 'Γράψτε δημιουργικό TikTok bio Χρησιμοποιώντας τις ακόλουθες λέξεις-κλειδιά στην περιγραφή του βιογραφικού:\\n ##keywords## \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3397, '93', 'he-IL', 'כתוב ביוגרפיה יצירתית של TikTok באמצעות מילות מפתח הבאות בתיאור הביולוגי:\\n ##keywords## \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3398, '93', 'hi-IN', 'बायो डिस्क्रिप्शन में निम्नलिखित कीवर्ड्स का उपयोग करके क्रिएटिव टिकटॉक बायो लिखें:\\n ##keywords## \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3399, '93', 'hu-HU', 'Írjon kreatív TikTok életrajzot Az alábbi kulcsszavak használatával az életrajz leírásában:\\n ##keywords## \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3400, '93', 'is-IS', 'Skrifaðu skapandi TikTok líf með því að nota eftirfarandi leitarorð í líflýsingunni:\\n ##keywords## \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3401, '93', 'id-ID', 'Tulis bio TikTok yang kreatif Menggunakan kata kunci berikut dalam deskripsi bio:\\n ##keywords## \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3402, '93', 'it-IT', 'Scrivi una biografia TikTok creativa utilizzando le seguenti parole chiave nella descrizione della biografia:\\n ##keywords## \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3403, '93', 'ja-JP', 'クリエイティブな TikTok プロフィールを作成します。プロフィールの説明に次のキーワードを使用します。:\\n ##keywords## \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3404, '93', 'ko-KR', '약력 설명에 다음 키워드를 사용하여 창의적인 TikTok 약력 작성:\\n ##keywords## \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3405, '93', 'ms-MY', 'Tulis bio TikTok kreatif Menggunakan kata kunci berikut dalam huraian bio:\\n ##keywords## \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3406, '93', 'nb-NO', 'Skriv kreativ TikTok-bio ved å bruke følgende nøkkelord i biobeskrivelsen:\\n ##keywords## \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3407, '93', 'pl-PL', 'Napisz kreatywną biografię TikTok, używając następujących słów kluczowych w opisie biografii:\\n ##keywords## \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3408, '93', 'pt-PT', 'Escrever uma biografia criativa para o TikTok Utilizar as seguintes palavras-chave na descrição da biografia:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3409, '93', 'ru-RU', 'Напишите креативную биографию TikTok, используя следующие ключевые слова в описании биографии:\\n ##keywords## \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3410, '93', 'es-ES', 'Escriba una biografía creativa de TikTok usando las siguientes palabras clave en la descripción de la biografía:\\n ##keywords## \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3411, '93', 'sv-SE', 'Skriv kreativa TikTok-bio Använd följande nyckelord i biobeskrivningen:\\n ##keywords## \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3412, '93', 'tr-TR', 'Biyo açıklamasında aşağıdaki anahtar kelimeleri kullanarak yaratıcı TikTok biyografisi yazın:\\n ##keywords## \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3413, '93', 'pt-BR', 'Escreva uma biografia criativa no TikTok Usando as seguintes palavras-chave na descrição da biografia:\\n ##keywords## \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3414, '93', 'ro-RO', 'Scrieți o biografie creativa TikTok Folosind următoarele cuvinte cheie în descrierea biografiei:\\n ##keywords## \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3415, '93', 'vi-VN', 'Viết tiểu sử TikTok sáng tạo Sử dụng các từ khóa sau trong mô tả sinh học:\\n ##keywords## \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:48', '2026-04-27 14:42:48'), (3416, '93', 'sw-KE', 'Andika wasifu wa ubunifu wa TikTok Kwa kutumia maneno muhimu yafuatayo kwenye maelezo ya wasifu:\\n ##keywords## \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3417, '93', 'sl-SI', 'Napišite ustvarjalni TikTok življenjepis z uporabo naslednjih ključnih besed v opisu biografije:\\n ##keywords## \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3418, '93', 'th-TH', 'เขียนชีวประวัติของ TikTok อย่างสร้างสรรค์โดยใช้คำหลักต่อไปนี้ในคำอธิบายชีวประวัติ: \\n ##keywords## \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3419, '93', 'uk-UA', 'Напишіть творчу біографію TikTok, використовуючи наступні ключові слова в описі біографії:\\n ##keywords## \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3420, '93', 'lt-LT', 'Parašykite kūrybišką TikTok biografiją Naudodami šiuos raktinius žodžius biografijos aprašyme:\\n ##keywords## \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3421, '93', 'bg-BG', 'Напишете творческа биография на TikTok, като използвате следните ключови думи в описанието на биографията:\\n ##keywords## \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3422, '94', 'en-US', 'Write a cover letter for ##description## email \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3423, '94', 'ar-AE', 'اكتب خطاب تغطية ##description## بريد إلكتروني \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3424, '94', 'cmn-CN', '写求职信 ##description## 电子邮件 \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3425, '94', 'hr-HR', 'Napišite propratno pismo ##description## elektronička pošta \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3426, '94', 'cs-CZ', 'Napište motivační dopis ##description## e-mailem \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3427, '94', 'da-DK', 'Skriv et følgebrev ##description## e-mail \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3428, '94', 'nl-NL', 'Schrijf een begeleidende brief ##description## e-mailen \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3429, '94', 'et-EE', 'Kirjutage kaaskiri ##description## meili \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3430, '94', 'fi-FI', 'Kirjoita saatekirje ##description## sähköposti \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3431, '94', 'fr-FR', 'Rédiger une lettre de motivation ##description## e-Courrier électronique \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3432, '94', 'de-DE', 'Schreiben Sie ein Anschreiben ##description## Email\\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3433, '94', 'el-GR', 'Γράψτε μια συνοδευτική επιστολή ##description## ΗΛΕΚΤΡΟΝΙΚΗ ΔΙΕΥΘΥΝΣΗ \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3434, '94', 'he-IL', 'כתוב מכתב מקדים ##description## אימייל \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3435, '94', 'hi-IN', 'एक कवर लेटर लिखें ##description## ईमेल\\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3436, '94', 'hu-HU', 'Írj kísérőlevelet ##description## email \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3437, '94', 'is-IS', 'Skrifaðu kynningarbréf ##description## tölvupósti \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3438, '94', 'id-ID', 'Tulis surat pengantar ##description## surel \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3439, '94', 'it-IT', 'Scrivi una lettera di presentazione ##description## e-mail \\n\\n Il tono di voce del risultato deve essere:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3440, '94', 'ja-JP', 'カバーレターを書く ##description## Eメール \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3441, '94', 'ko-KR', '커버 레터 작성 ##description## 이메일 \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3442, '94', 'ms-MY', 'Tulis surat iringan ##description## emel \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3443, '94', 'nb-NO', 'Skriv et følgebrev ##description## e-post \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3444, '94', 'pl-PL', 'Napisz list motywacyjny ##description## wiadomość e-mail \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3445, '94', 'pt-PT', 'Escrever uma carta de apresentação para ##description## e-mail \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3446, '94', 'ru-RU', 'Написать сопроводительное письмо ##description## электронная почта \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3447, '94', 'es-ES', 'Escribe una carta de presentación ##description## correo electrónico \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3448, '94', 'sv-SE', 'Skriv ett följebrev ##description## e-post \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3449, '94', 'tr-TR', 'Bir ön yazı yaz ##description## e-posta \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3450, '94', 'pt-BR', 'Escreva uma carta de apresentação para ##description## e-mail \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3451, '94', 'ro-RO', 'Scrieți o scrisoare de intenție ##description## e-mail \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3452, '94', 'vi-VN', 'Viết thư xin việc ##description## e-mail \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3453, '94', 'sw-KE', 'Andika barua ya kazi ##description## barua pepe \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3454, '94', 'sl-SI', 'Napišite spremno pismo ##description## E-naslov \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3455, '94', 'th-TH', 'เขียนจดหมายปะหน้า ##description## อีเมล \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3456, '94', 'uk-UA', 'Напишіть супровідний лист ##description## електронною поштою \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3457, '94', 'lt-LT', 'Parašykite motyvacinį laišką ##description## paštu \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3458, '94', 'bg-BG', 'Напишете мотивационно писмо ##description## електронна поща \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3459, '95', 'en-US', 'Write a personal intro which i can used at ##description## for myself \\n\\n Tone of voice of the result must be:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3460, '95', 'ar-AE', 'اكتب مقدمة شخصية يمكنني استخدامها في ##description## لنفسي \\n\\n TTالوحيدة من صوت النتيجة يجب أن تكون::\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3461, '95', 'cmn-CN', '写一个我可以使用的个人介绍 ##description## 为了我自己 \\n\\n 结果的声音必须是:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3462, '95', 'hr-HR', 'Napišite osobni intro koji mogu koristiti ##description## Za sebe \\n\\n Ton glasa za rezultat mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3463, '95', 'cs-CZ', 'Napište osobní intro, které mohu použít ##description## pro mě \\n\\n Tón hlasu výsledku musí být:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3464, '95', 'da-DK', 'Skriv en personlig intro, som jeg kan bruge på ##description## v \\n\\n Tone of voice af resultatet skal være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3465, '95', 'nl-NL', 'Schrijf een persoonlijke intro waar ik bij kan gebruiken ##description## voor mezelf \\n\\n Toon van de stem van het resultaat moet zijn:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3466, '95', 'et-EE', 'Kirjutage isiklik tutvustus, mida saan kasutada ##description## enda jaoks \\n\\n Tulemuse hääletoon peab olema:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3467, '95', 'fi-FI', 'Kirjoita henkilökohtainen esittely, jota voin käyttää ##description## itselleni \\n\\n Tuloksen äänen on oltava:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3468, '95', 'fr-FR', 'Écrivez une introduction personnelle que je peux utiliser à ##description## pour moi-même \\n\\n Le Tone de la voix du résultat doit être:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3469, '95', 'de-DE', 'Schreiben Sie ein persönliches Intro, das ich verwenden kann ##description## für mich\\n\\n Ton der Stimme des Ergebnisses muss:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3470, '95', 'el-GR', 'Γράψτε μια προσωπική εισαγωγή στην οποία μπορώ να χρησιμοποιήσω ##description## για τον εαυτό μου \\n\\n Η φωνή του αποτελέσματος πρέπει να είναι:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3471, '95', 'he-IL', 'כתוב מבוא אישי שבו אני יכול להשתמש ##description## בשבילי \\n\\n של הקול של התוצאה חייב להיות:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3472, '95', 'hi-IN', 'एक व्यक्तिगत परिचय लिखें जिसका मैं उपयोग कर सकता हूं ##description## अपने आप के लिए \\n\\n परिणाम की आवाज का स्वर होना चाहिए ।:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3475, '95', 'id-ID', 'Tulis intro pribadi yang bisa saya gunakan ##description## untuk diriku \\n\\n Nada suara hasilnya harus dibuat.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3476, '95', 'it-IT', 'Scrivi unintroduzione personale che posso usare su ##description## per me \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3477, '95', 'ja-JP', 'で使用できる個人的な紹介文を書きます ##description## 自分のため \\n\\n 結果の声のトーンは:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3479, '95', 'ms-MY', 'Tulis intro peribadi yang boleh saya gunakan ##description## untuk diri saya sendiri \\n\\n Nada suara hasilnya mesti.:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3481, '95', 'pl-PL', 'Napisz osobiste wprowadzenie, którego będę mógł użyć ##description## dla siebie \\n\\n Ton głosu w wyniku musi być:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3482, '95', 'pt-PT', 'Escrever uma introdução pessoal que possa ser utilizada em ##description## para mim próprio \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3483, '95', 'ru-RU', 'Напишите личное введение, которое я могу использовать на ##description## для меня \\n\\n Тон голоса результата должен быть:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3484, '95', 'es-ES', 'Escribe una introducción personal que pueda usar en ##description## para mí \\n\\n El tono de voz del resultado debe ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3485, '95', 'sv-SE', 'Skriv ett personligt intro som jag kan använda vid ##description## för mig själv \\n\\n Ton av resultatet måste vara:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3486, '95', 'tr-TR', 'Kullanabileceğim kişisel bir giriş yaz ##description## kendim için \\n\\n Sonucun sesinin tonu olmalı:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3487, '95', 'pt-BR', 'Escreva uma introdução pessoal que eu possa usar em ##description## para mim mesmo \\n\\n O tom de voz do resultado deve ser:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3488, '95', 'ro-RO', 'Scrie o introducere personală pe care să o pot folosi ##description## pentru mine \\n\\n Tonul vocii rezultatului trebuie să fie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3489, '95', 'vi-VN', 'Viết phần giới thiệu cá nhân mà tôi có thể sử dụng tại ##description## cho bản thân mình \\n\\n Giọng nói của kết quả phải là:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3490, '95', 'sw-KE', 'Andika utangulizi wa kibinafsi ambao ninaweza kutumia ##description## kwa ajili yangu mwenyewe \\n\\n Toni ya sauti ya matokeo lazima iwe:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3491, '95', 'sl-SI', 'Napišite osebni uvod, ki ga lahko uporabim pri ##description## zame \\n\\n Ton glasu rezultata mora biti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3492, '95', 'th-TH', 'เขียนคำนำส่วนตัวที่ฉันสามารถใช้ได้ ##description## สำหรับตัวฉันเอง \\n\\n เสียงหนึ่งของผลที่ได้ต้องเป็น:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3493, '95', 'uk-UA', 'Напишіть особисте інтро, яке я можу використати ##description## v \\n\\n Тон голосу результату має бути:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3494, '95', 'lt-LT', 'Parašykite asmeninį įvadą, kurį galėčiau panaudoti ##description## sau pačiam \\n\\n Balso tonas rezultatas turi būti:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3495, '95', 'bg-BG', 'Напишете лично въведение, което мога да използвам ##description## за мен \\n\\n Тон на гласа на резултата трябва да бъде:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3496, '96', 'en-US', 'Write 10 catchy motivation quote for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3497, '96', 'ar-AE', 'اكتب 10 اقتباسات دافعة جذابة لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3498, '96', 'cmn-CN', '為下列項目撰寫 10 個朗朗文動機報價 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3499, '96', 'hr-HR', 'Napišite 10 privlačnih motivacijskih citata za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3500, '96', 'cs-CZ', 'Napište 10 chytlavých motivačních citátů pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3501, '96', 'da-DK', 'Skriv 10 fængende motivationscitater til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3502, '96', 'nl-NL', 'Schrijf 10 pakkende motivatiecitaten voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3503, '96', 'et-EE', 'Kirjutage 10 meeldejäävat motivatsioonitsitaati järgmise jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3504, '96', 'fi-FI', 'Kirjoita 10 tarttuvaa motivaatiolainausta seuraavaan :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3505, '96', 'fr-FR', 'Rédigez 10 citations de motivation accrocheuses pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3506, '96', 'de-DE', 'Schreiben Sie 10 einprägsame Motivationszitate für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3507, '96', 'el-GR', 'Γράψτε 10 συναρπαστικά κίνητρα για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3508, '96', 'he-IL', 'כתוב 10 ציטוטי מוטיבציה קליטים עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3509, '96', 'hi-IN', 'निम्नलिखित के लिए 10 आकर्षक प्रेरक उद्धरण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3510, '96', 'hu-HU', 'Írj 10 fülbemászó motivációs idézetet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3511, '96', 'is-IS', 'Skrifaðu 10 grípandi hvatningartilvitnanir fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3512, '96', 'id-ID', 'Tulis 10 kutipan motivasi yang menarik untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3513, '96', 'it-IT', 'Scrivi 10 citazioni motivazionali accattivanti per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3514, '96', 'ja-JP', '以下のキャッチーな動機付けの引用を 10 個書いてください :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3515, '96', 'ko-KR', '다음에 대해 기억하기 쉬운 동기 부여 인용문 10개를 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3516, '96', 'ms-MY', 'Tulis 10 petikan motivasi yang menarik untuk yang berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3517, '96', 'nb-NO', 'Skriv 10 fengende motivasjonssitat for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3518, '96', 'pl-PL', 'Napisz 10 chwytliwych cytatów motywacyjnych dla następujących osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3519, '96', 'pt-PT', 'Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3520, '96', 'ru-RU', 'Напишите 10 броских мотивационных цитат для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3521, '96', 'es-ES', 'Escriba 10 citas de motivación pegadizas para lo siguiente :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3522, '96', 'sv-SE', 'Skriv 10 catchy motivationscitat för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3523, '96', 'tr-TR', 'Aşağıdakiler için 10 akılda kalıcı motivasyon teklifi yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3524, '96', 'pt-BR', 'Escreva 10 citações cativantes de motivação para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3525, '96', 'ro-RO', 'Scrieți 10 citate de motivație captivante pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3526, '96', 'vi-VN', 'Viết 10 trích dẫn động lực hấp dẫn cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3527, '96', 'sw-KE', 'Andika nukuu 10 za motisha kwa zifuatazo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3528, '96', 'sl-SI', 'Napišite 10 privlačnih motivacijskih citatov za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3529, '96', 'th-TH', 'เขียน 10 คำพูดสร้างแรงบันดาลใจลวงต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3530, '96', 'uk-UA', 'Напишіть 10 привабливих мотиваційних цитат для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3531, '96', 'lt-LT', 'Parašykite 10 patrauklių motyvacijos citatų toliau nurodytam klausimui :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3532, '96', 'bg-BG', 'Напишете 10 закачливи мотивационни цитата за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3533, '97', 'en-US', 'Write a descriptive motivation speech for the following :\n\n ##description## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3534, '97', 'ar-AE', 'اكتب خطاب دافع وصفي لما يلي :\n\n ##description## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3535, '97', 'cmn-CN', '為下列項目撰寫敘述性動機語音 :\n\n ##description## \n\n 必須要有聲音的聲音:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3536, '97', 'hr-HR', 'Napišite opisni motivacijski govor za sljedeće :\n\n ##description## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3537, '97', 'cs-CZ', 'Napište popisný motivační projev pro následující :\n\n ##description## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3538, '97', 'da-DK', 'Skriv en beskrivende motivationstale til følgende :\n\n ##description## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3539, '97', 'nl-NL', 'Schrijf een beschrijvende motivatietoespraak voor het volgende :\n\n ##description## \n\n De tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3540, '97', 'et-EE', 'Kirjutage kirjeldav motivatsioonikõne järgneva jaoks :\n\n ##description## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3541, '97', 'fi-FI', 'Kirjoita kuvaava motivaatiopuhe seuraavaa varten :\n\n ##description## \n\n Äänesävyn tuloksen on oltava:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3542, '97', 'fr-FR', 'Rédigez un discours de motivation descriptif pour les éléments suivants :\n\n ##description## \n\n Le ton de la voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3543, '97', 'de-DE', 'Schreiben Sie eine beschreibende Motivationsrede für Folgendes :\n\n ##description## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3544, '97', 'el-GR', 'Γράψτε μια περιγραφική ομιλία κινήτρων για τα παρακάτω :\n\n ##description## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3545, '97', 'he-IL', 'כתוב נאום מוטיבציה תיאורי עבור הדברים הבאים :\n\n ##description## \n\n טון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3546, '97', 'hi-IN', 'निम्नलिखित के लिए वर्णनात्मक प्रेरक भाषण लिखिए :\n\n ##description## \n\n परिणाम का स्वर स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3547, '97', 'hu-HU', 'Írjon leíró motivációs beszédet a következőkhöz! :\n\n ##description## \n\n Az eredmény hangnemének kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3548, '97', 'is-IS', 'Skrifaðu lýsandi hvatningarræðu fyrir eftirfarandi :\n\n ##description## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3549, '97', 'id-ID', 'Tulis pidato motivasi deskriptif untuk yang berikut ini :\n\n ##description## \n\n Nada suara hasilnya harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3550, '97', 'it-IT', 'Scrivi un discorso motivazionale descrittivo per quanto segue :\n\n ##description## \n\n Tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3551, '97', 'ja-JP', '次のような動機を説明するスピーチを書いてください。 :\n\n ##description## \n\n 結果の声のトーンは次のとおりです。:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3552, '97', 'ko-KR', '다음에 대한 설명적인 동기 연설을 작성하십시오. :\n\n ##description## \n\n 결과의 어조는 다음과 같아야 합니다.:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3553, '97', 'ms-MY', 'Tulis ucapan motivasi deskriptif untuk perkara berikut :\n\n ##description## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3554, '97', 'nb-NO', 'Skriv en beskrivende motivasjonstale for følgende :\n\n ##description## \n\n Tonen i stemmen til resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3555, '97', 'pl-PL', 'Napisz opisowe przemówienie motywacyjne dla poniższych osób :\n\n ##description## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3556, '97', 'pt-PT', 'Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3557, '97', 'ru-RU', 'Напишите описательную мотивационную речь для следующего :\n\n ##description## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3558, '97', 'es-ES', 'Escriba un discurso de motivación descriptivo para los siguientes :\n\n ##description## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3559, '97', 'sv-SE', 'Skriv ett beskrivande motivationstal för följande :\n\n ##description## \n\n Tonen i rösten för resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3560, '97', 'tr-TR', 'Aşağıdakiler için açıklayıcı bir motivasyon konuşması yazın :\n\n ##description## \n\n Sonucun ses tonu şöyle olmalıdır::\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3561, '97', 'pt-BR', 'Escreva um discurso de motivação descritivo para o seguinte :\n\n ##description## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3562, '97', 'ro-RO', 'Scrieți un discurs descriptiv de motivare pentru următoarele :\n\n ##description## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3563, '97', 'vi-VN', 'Viết một bài phát biểu động cơ mô tả cho những điều sau đây :\n\n ##description## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3564, '97', 'sw-KE', 'Andika hotuba ya maelezo ya motisha kwa yafuatayo :\n\n ##description## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'); INSERT INTO `ai_template_prompts` (`id`, `template_id`, `key`, `value`, `created_by`, `created_at`, `updated_at`) VALUES (3565, '97', 'sl-SI', 'Napišite opisni motivacijski govor za naslednje :\n\n ##description## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3566, '97', 'th-TH', 'เขียนบรรยายแรงจูงใจต่อไปนี้ :\n\n ##description## \n\n โทนเสียงของผลลัพธ์จะต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3567, '97', 'uk-UA', 'Напишіть описову мотиваційну промову для наступного :\n\n ##description## \n\n Тон голосу результату повинен бути:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3568, '97', 'lt-LT', 'Parašykite aprašomąją motyvacinę kalbą dėl šių dalykų :\n\n ##description## \n\n Turi būti rezultato balso tonas:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3569, '97', 'bg-BG', 'Напишете описателна мотивационна реч за следното :\n\n ##description## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3570, '98', 'en-US', 'Write 10 catchy good wishes for the following occasion : ##occasion## for my : ##relation## \n\n Tone of voice of the result must be:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3571, '98', 'ar-AE', 'اكتب 10 تمنيات طيبة وجذابة للمناسبة التالية : ##occasion## لاجلي : ##relation## \n\n يجب أن تكون نبرة صوت النتيجة:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3572, '98', 'cmn-CN', '为以下场合写下 10 个朗朗上口的美好祝福 : ##occasion## 为了我的 : ##relation## \n\n 结果的语气必须是:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3573, '98', 'hr-HR', 'Napišite 10 lijepih lijepih želja za sljedeću priliku : ##occasion## za moj : ##relation## \n\n Ton glasa rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3574, '98', 'cs-CZ', 'Napište 10 chytlavých přání všeho dobrého pro následující příležitost : ##occasion## pro mě : ##relation## \n\n Tón hlasu výsledku musí být:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3575, '98', 'da-DK', 'Skriv 10 fængende gode ønsker til den følgende lejlighed : ##occasion## for min : ##relation## \n\n Tone of voice af resultatet skal være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3576, '98', 'nl-NL', 'Schrijf 10 pakkende goede wensen voor de volgende gelegenheid : ##occasion## voor mijn : ##relation## \n\n Tone of voice van het resultaat moet zijn:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3577, '98', 'et-EE', 'Kirjutage järgmiseks puhuks 10 meeldejäävat head soovi : ##occasion## minu : ##relation## \n\n Tulemuse hääletoon peab olema:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3578, '98', 'fi-FI', 'Kirjoita 10 tarttuvaa onnentoivotusta seuraavaan tilaisuuteen : ##occasion## minun puolestani : ##relation## \n\n Tuloksen äänensävyn tulee olla:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3579, '98', 'fr-FR', 'Écrivez 10 bons vœux accrocheurs pour l\'occasion suivante : ##occasion## pour mon : ##relation## \n\n Le ton de voix du résultat doit être:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3580, '98', 'de-DE', 'Schreiben Sie 10 einprägsame Glückwünsche für den folgenden Anlass : ##occasion## für mein : ##relation## \n\n Der Tonfall des Ergebnisses muss sein:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3581, '98', 'el-GR', 'Γράψε 10 πιασάρικες ευχές για την επόμενη περίσταση : ##occasion## για τη δικιά μου : ##relation## \n\n Ο τόνος της φωνής του αποτελέσματος πρέπει να είναι:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3582, '98', 'he-IL', 'כתבו 10 איחולים קליטים לאירוע הבא : ##occasion## עבור שלי : ##relation## \n\nטון הדיבור של התוצאה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3583, '98', 'hi-IN', 'निम्नलिखित अवसर के लिए 10 आकर्षक शुभकामनाएं लिखें : ##occasion## मेरे लिए : ##relation## \n\n परिणाम की आवाज़ का स्वर होना चाहिए:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3584, '98', 'hu-HU', 'Írj 10 fülbemászó jókívánságot a következő alkalomra : ##occasion## az én : ##relation## \n\n Az eredmény hangnemének a következőnek kell lennie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3585, '98', 'is-IS', 'Skrifaðu 10 grípandi góðar óskir fyrir næsta tilefni : ##occasion## fyrir mig : ##relation## \n\n Rödd útkomunnar verður að vera:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3586, '98', 'id-ID', 'Tulis 10 harapan baik yang menarik untuk kesempatan berikut : ##occasion## untuk ku : ##relation## \n\n Nada suara hasil harus:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3587, '98', 'it-IT', 'Scrivi 10 accattivanti auguri per la prossima occasione : ##occasion## per me : ##relation## \n\n Il tono di voce del risultato deve essere:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3588, '98', 'ja-JP', '次の機会に向けて、キャッチーな良い願いを 10 個書いてください : ##occasion## 私のために : ##relation## \n\n 結果の口調は次のようになります:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3589, '98', 'ko-KR', '다음 행사에 대한 10가지 좋은 소원을 적어보세요 : ##occasion## 나를 위해 : ##relation## \n\n 결과의 어조는 다음과 같아야 합니다:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3590, '98', 'ms-MY', 'Tulis 10 ucapan selamat yang menarik untuk majlis berikut : ##occasion## untuk saya : ##relation## \n\n Nada suara keputusan mestilah:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3591, '98', 'nb-NO', 'Skriv 10 fengende lykkeønskninger for neste anledning : ##occasion## for min : ##relation## \n\n Stemmetonen for resultatet må være:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3592, '98', 'pl-PL', 'Napisz 10 chwytliwych życzeń na następną okazję : ##occasion## dla mnie : ##relation## \n\n Ton głosu wyniku musi być:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3593, '98', 'pt-PT', 'Escreva 10 bons desejos cativantes para a seguinte ocasião : ##occasion## para o meu : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3594, '98', 'ru-RU', 'Напишите 10 запоминающихся добрых пожеланий на следующий случай : ##occasion## для меня : ##relation## \n\n Тон озвучивания результата должен быть:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3595, '98', 'es-ES', 'Escribe 10 buenos deseos pegadizos para la próxima ocasión : ##occasion## para mi : ##relation## \n\n El tono de voz del resultado debe ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3596, '98', 'sv-SE', 'Skriv 10 catchy lyckönskningar för följande tillfälle : ##occasion## för min : ##relation## \n\n Tonen i resultatet måste vara:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3597, '98', 'tr-TR', 'Bir sonraki durum için akılda kalıcı 10 iyi dilek yazın : ##occasion## benim için : ##relation## \n\n Sonucun ses tonu şöyle olmalıdır:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3598, '98', 'pt-BR', 'Escreva 10 bons votos cativantes para a seguinte ocasião : ##occasion## para mim : ##relation## \n\n O tom de voz do resultado deve ser:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3599, '98', 'ro-RO', 'Scrie 10 urări de bine atrăgătoare pentru următoarea ocazie : ##occasion## pentru a mea : ##relation## \n\n Tonul vocii rezultatului trebuie să fie:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3600, '98', 'vi-VN', 'Viết 10 lời chúc hấp dẫn cho dịp sau : ##occasion## cho tôi : ##relation## \n\n Giọng điệu của kết quả phải là:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3601, '98', 'sw-KE', 'Andika matashi 10 mazuri kwa hafla ifuatayo : ##occasion## kwa wangu : ##relation## \n\n Toni ya sauti ya matokeo lazima iwe:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3602, '98', 'sl-SI', 'Napišite 10 privlačnih dobrih želja za naslednjo priložnost : ##occasion## za moj : ##relation## \n\n Ton glasu rezultata mora biti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3603, '98', 'th-TH', 'เขียนความปรารถนาดีลวง 10 ประการต่อไปนี้ : ##occasion## สำหรับฉัน : ##relation## \n\n โทนเสียงของผลลัพธ์ต้องเป็น:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3604, '98', 'uk-UA', 'Напишіть 10 яскравих побажань на наступну подію : ##occasion## для мого : ##relation## \n\n Тон голосу результату повинен бути таким:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3605, '98', 'lt-LT', 'Parašykite 10 patrauklių linkėjimų kitai progai : ##occasion## už mano : ##relation## \n\n Rezultato balso tonas turi būti:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3606, '98', 'bg-BG', 'Напишете 10 запомнящи се добри пожелания за следващия повод : ##occasion## за моя : ##relation## \n\n Тонът на гласа на резултата трябва да бъде:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3607, '99', 'en-US', 'Write creative & convincing bid for the following project :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3608, '99', 'ar-AE', 'اكتب محاولة إبداعية ومقنعة للمشروع التالي\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3609, '99', 'cmn-CN', '为以下项目写出有创意和有说服力的标书:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3610, '99', 'hr-HR', 'Napišite kreativnu i uvjerljivu ponudu za sljedeći projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3611, '99', 'cs-CZ', 'Napište kreativní a přesvědčivou nabídku pro následující projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3612, '99', 'da-DK', 'Skriv et kreativt og overbevisende bud på følgende projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3613, '99', 'nl-NL', 'Schrijven van een creatief & overtuigend bod voor het volgende project:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3614, '99', 'et-EE', 'Kirjutage loov ja veenev pakkumine järgmise projekti jaoks:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3615, '99', 'fi-FI', 'Kirjoita luova ja vakuuttava tarjous seuraavaan projektiin:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3616, '99', 'fr-FR', 'Rédiger une offre créative et convaincante pour le projet suivant :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3617, '99', 'de-DE', 'Schreiben Sie ein kreatives und überzeugendes Angebot für das folgende Projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3618, '99', 'el-GR', 'Γράψτε δημιουργική και πειστική προσφορά για το παρακάτω έργο:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3619, '99', 'he-IL', 'כתוב הצעה יצירתית ומשכנעת עבור הפרויקט הבא:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3620, '99', 'hi-IN', 'निम्नलिखित परियोजना के लिए रचनात्मक और विश्वसनीय बोली लिखें:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3621, '99', 'hu-HU', 'Írjon kreatív és meggyőző ajánlatot a következő projektre:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3622, '99', 'is-IS', 'Skrifaðu skapandi og sannfærandi tilboð í eftirfarandi verkefni:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3623, '99', 'id-ID', 'Tulis tawaran yang kreatif & meyakinkan untuk proyek berikut :\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3624, '99', 'it-IT', 'Scrivi un\'offerta creativa e convincente per il seguente progetto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3625, '99', 'ja-JP', '次のプロジェクトに対してクリエイティブで説得力のある入札書を作成します:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3626, '99', 'ko-KR', '다음 프로젝트에 대한 창의적이고 설득력 있는 입찰가 작성:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3627, '99', 'ms-MY', 'Tulis tawaran yang kreatif & meyakinkan untuk projek berikut:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3628, '99', 'nb-NO', 'Skriv et kreativt og overbevisende bud på følgende prosjekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3629, '99', 'pl-PL', 'Napisz kreatywną i przekonującą ofertę na następujący projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3630, '99', 'pt-PT', 'Escreva um lance criativo e convincente para o seguinte projeto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3631, '99', 'ru-RU', 'Напишите креативную и убедительную заявку на следующий проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3632, '99', 'es-ES', 'Escriba una oferta creativa y convincente para el siguiente proyecto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3633, '99', 'sv-SE', 'Skriv ett kreativt och övertygande bud på följande projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3634, '99', 'tr-TR', 'Aşağıdaki proje için yaratıcı ve ikna edici teklif yazın:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3635, '99', 'pt-BR', 'Escreva uma proposta criativa e convincente para o seguinte projeto:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3636, '99', 'ro-RO', 'Scrieți o ofertă creativă și convingătoare pentru următorul proiect:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3637, '99', 'vi-VN', 'Viết giá thầu sáng tạo & thuyết phục cho dự án sau:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3638, '99', 'sw-KE', 'Andika zabuni ya ubunifu na ya kushawishi kwa mradi ufuatao:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3639, '99', 'sl-SI', 'Napišite kreativno in prepričljivo ponudbo za naslednji projekt:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3640, '99', 'th-TH', 'เขียนการเสนอราคาที่สร้างสรรค์และน่าเชื่อถือสำหรับโครงการต่อไปนี้:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3641, '99', 'uk-UA', 'Напишіть творчу та переконливу заявку на наступний проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3642, '99', 'lt-LT', 'Parašykite kūrybišką ir įtikinamą pasiūlymą kitam projektui:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3643, '99', 'bg-BG', 'Напишете креативна и убедителна оферта за следния проект:\n\n ##description##', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3644, '19', 'he-IL', 'כתוב מודעה יצירתית עבור המוצר הבא שיוצג בפייסבוק שמטרתה:\n\n ##audience## \n\n שם המוצר:\n ##title## \n\n תיאור המוצר:\n ##description## \n\n גוון הקול של המודעה חייב להיות:\n ##tone_language## \n\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3773, '95', 'hu-HU', 'Írj egy személyes bemutatkozást, amit felhasználhatok ##description## magamnak \\n\\n Az eredmény hangjának meg kell lennie:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3774, '95', 'is-IS', 'Skrifaðu persónulegt kynningu sem ég get notað á ##description## fyrir mig \\n\\n Rödd útkomunnar verður að vera:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3778, '95', 'ko-KR', '내가 사용할 수있는 개인 소개 쓰기 ##description## 나 자신을 위해 \\n\\n 결과의 음성 중 하나는 반드시 다음과 같아야 합니다:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'), (3780, '95', 'nb-NO', 'Skriv en personlig intro som jeg kan bruke på ##description## for meg selv \\n\\n Tone av stemmen til resultatet må være:\\n ##tone_language## \\n\\n', '0', '2026-04-27 14:42:49', '2026-04-27 14:42:49'); -- -------------------------------------------------------- -- -- Table structure for table `allowances` -- CREATE TABLE `allowances` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `allowance_type_id` bigint(20) UNSIGNED NOT NULL, `type` enum('fixed','percentage') NOT NULL, `amount` decimal(10,2) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `allowances` -- INSERT INTO `allowances` (`id`, `employee_id`, `allowance_type_id`, `type`, `amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 10, 1, 'fixed', 4200.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (2, 10, 7, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (3, 10, 3, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (4, 10, 5, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (5, 16, 9, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (6, 16, 4, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (7, 16, 7, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (8, 16, 8, 'percentage', 10.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (9, 14, 5, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (10, 14, 4, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (11, 14, 3, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (12, 14, 7, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (13, 18, 5, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (14, 18, 10, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (15, 18, 9, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (16, 18, 3, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (17, 22, 3, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (18, 22, 6, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (19, 22, 10, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (20, 22, 7, 'fixed', 4200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (21, 12, 10, 'fixed', 3000.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (22, 12, 9, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (23, 12, 8, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (24, 12, 2, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (25, 26, 8, 'percentage', 20.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (26, 26, 1, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (27, 26, 2, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (28, 26, 10, 'fixed', 1600.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (29, 8, 1, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (30, 8, 9, 'fixed', 7500.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (31, 8, 7, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (32, 8, 10, 'percentage', 8.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (33, 24, 8, 'fixed', 6400.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (34, 24, 4, 'fixed', 2800.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (35, 24, 10, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (36, 24, 3, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (37, 20, 1, 'percentage', 18.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (38, 20, 9, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (39, 20, 2, 'percentage', 15.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (40, 20, 6, 'percentage', 25.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `allowance_types` -- CREATE TABLE `allowance_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `allowance_types` -- INSERT INTO `allowance_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'House Rent Allowance (HRA)', 'Monthly allowance for accommodation expenses including rent and utilities.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (2, 'Medical Allowance', 'Healthcare allowance covering medical expenses and insurance premiums.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (3, 'Transport Allowance', 'Travel allowance for daily commuting and transportation expenses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (4, 'Food Allowance', 'Meal allowance covering lunch and food expenses during working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (5, 'Mobile Allowance', 'Communication allowance for mobile phone and internet expenses.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (6, 'Education Allowance', 'Educational support allowance for employees children school fees.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (7, 'Performance Bonus', 'Merit-based allowance for exceptional performance and achievements.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (8, 'Overtime Allowance', 'Additional compensation for work beyond regular working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (9, 'Shift Allowance', 'Extra allowance for night shifts and non-standard working hours.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (10, 'Travel Allowance', 'Business travel expenses including accommodation and meals.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); -- -------------------------------------------------------- -- -- Table structure for table `announcements` -- CREATE TABLE `announcements` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `announcement_category_id` bigint(20) UNSIGNED DEFAULT NULL, `start_date` date DEFAULT NULL, `end_date` date DEFAULT NULL, `priority` varchar(255) DEFAULT NULL, `status` enum('active','inactive','draft') NOT NULL DEFAULT 'draft', `description` longtext DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `approved_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `announcements` -- INSERT INTO `announcements` (`id`, `title`, `announcement_category_id`, `start_date`, `end_date`, `priority`, `status`, `description`, `creator_id`, `created_by`, `approved_by`, `created_at`, `updated_at`) VALUES (1, 'Annual Company Holiday Schedule 2025', 1, '2025-09-20', '2026-09-20', 'high', 'active', 'Official holiday calendar for 2025 has been finalized including national holidays, company closure dates, and optional floating holidays for employee planning.', 2, 2, 8, '2025-09-20 09:32:49', '2025-09-20 09:32:49'), (2, 'Enhanced Health Insurance Benefits Launch', 2, '2025-09-25', '2026-09-25', 'high', 'active', 'New comprehensive health insurance policy with expanded coverage, dental benefits, and wellness programs will be automatically enrolled for all eligible employees.', 2, 2, 10, '2025-09-25 10:47:49', '2025-09-25 10:47:49'), (3, 'Office Infrastructure Renovation Project', 3, '2025-09-30', '2026-04-18', 'medium', 'active', 'Third floor renovation will commence next week requiring temporary relocation of affected departments to fifth floor with minimal disruption to operations.', 2, 2, 12, '2025-09-30 15:02:49', '2025-09-30 15:02:49'), (4, 'Quarterly Performance Evaluation Process', 4, '2025-10-05', '2026-05-03', 'medium', 'draft', 'Performance review cycle begins next month requiring self-assessments, supervisor meetings, and goal setting sessions for all employees across departments.', 2, 2, NULL, '2025-10-05 11:37:49', '2025-10-05 11:37:49'), (5, 'Enhanced Security Protocol Implementation', 5, '2025-10-10', '2026-09-15', 'high', 'active', 'New security measures including mandatory ID card display, updated access procedures, and visitor management system will be enforced across premises.', 2, 2, 16, '2025-10-10 13:27:49', '2025-10-10 13:27:49'), (6, 'Annual Team Building Adventure Event', 6, '2025-10-15', '2026-04-08', 'low', 'active', 'Join our exciting team building activities at city park featuring outdoor games, catered lunch, networking sessions, and prize competitions for departments.', 2, 2, 18, '2025-10-15 15:52:49', '2025-10-15 15:52:49'), (7, 'Professional Development Training Program', 7, '2025-10-20', '2026-05-13', 'medium', 'active', 'Comprehensive skill enhancement workshops covering leadership, technical skills, and career advancement opportunities available for all employee levels and departments.', 2, 2, 20, '2025-10-20 09:07:49', '2025-10-20 09:07:49'), (8, 'Remote Work Policy Update', 8, '2025-10-25', '2026-07-12', 'medium', 'draft', 'Updated remote work guidelines including hybrid schedules, productivity expectations, communication protocols, and equipment provision for eligible positions.', 2, 2, NULL, '2025-10-25 12:42:49', '2025-10-25 12:42:49'), (9, 'Employee Wellness Initiative Launch', 9, '2025-10-31', '2026-06-12', 'medium', 'active', 'New wellness program featuring fitness memberships, mental health support, nutrition counseling, and stress management workshops for employee wellbeing enhancement.', 2, 2, 24, '2025-10-30 16:57:49', '2025-10-30 16:57:49'), (10, 'IT System Maintenance Schedule', 10, '2025-11-04', '2026-03-29', 'high', 'active', 'Planned system maintenance and upgrades will occur during weekend hours with minimal impact on daily operations and enhanced security features.', 2, 2, 26, '2025-11-04 10:12:49', '2025-11-04 10:12:49'), (11, 'Diversity and Inclusion Workshop Series', 11, '2025-11-09', '2026-04-28', 'high', 'active', 'Mandatory diversity training sessions promoting inclusive workplace culture, unconscious bias awareness, and respectful communication practices for all staff members.', 2, 2, 8, '2025-11-09 11:32:49', '2025-11-09 11:32:49'), (12, 'Environmental Sustainability Campaign', 12, '2025-11-14', '2026-09-10', 'low', 'draft', 'Green initiative promoting eco-friendly practices including recycling programs, energy conservation, paperless operations, and sustainable commuting options for employees.', 2, 2, NULL, '2025-11-14 14:47:49', '2025-11-14 14:47:49'), (13, 'Customer Service Excellence Training', 13, '2025-11-19', '2026-04-13', 'medium', 'active', 'Comprehensive customer service training program focusing on communication skills, problem resolution, and customer satisfaction improvement for client-facing departments.', 2, 2, 12, '2025-11-19 11:02:49', '2025-11-19 11:02:49'), (14, 'Annual Budget Planning Meeting', 14, '2025-11-24', '2026-04-03', 'high', 'active', 'Department heads and managers are required to attend budget planning sessions for next fiscal year including resource allocation and strategic planning.', 2, 2, 14, '2025-11-24 13:37:49', '2025-11-24 13:37:49'), (15, 'Employee Recognition Awards Ceremony', 15, '2025-11-29', '2025-12-09', 'medium', 'inactive', 'Annual awards ceremony celebrating outstanding employee achievements, service milestones, and exceptional contributions to company success across all departments.', 2, 2, NULL, '2025-11-29 15:27:49', '2025-11-29 15:27:49'), (16, 'Cybersecurity Awareness Training', 16, '2025-12-04', '2026-04-23', 'high', 'active', 'Mandatory cybersecurity training covering phishing prevention, password security, data protection protocols, and safe internet practices for all employees.', 2, 2, 18, '2025-12-04 08:52:49', '2025-12-04 08:52:49'), (17, 'New Employee Orientation Program', 17, '2025-12-09', '2027-03-14', 'medium', 'active', 'Comprehensive onboarding program for new hires including company culture introduction, policy briefings, department tours, and mentor assignment processes.', 2, 2, 20, '2025-12-09 13:07:49', '2025-12-09 13:07:49'), (18, 'Flexible Working Hours Policy', 18, '2025-12-15', '2026-06-12', 'medium', 'draft', 'New flexible schedule options allowing core hours flexibility, compressed workweeks, and alternative arrangements to improve work-life balance for employees.', 2, 2, NULL, '2025-12-14 16:42:49', '2025-12-14 16:42:49'), (19, 'Emergency Evacuation Drill Exercise', 19, '2025-12-19', '2026-03-24', 'high', 'active', 'Mandatory emergency preparedness drill testing evacuation procedures, assembly points, and safety protocols to ensure employee safety and compliance.', 2, 2, 24, '2025-12-19 09:57:49', '2025-12-19 09:57:49'), (20, 'Innovation Challenge Competition', 20, '2025-12-24', '2026-05-28', 'low', 'active', 'Company-wide innovation contest encouraging creative solutions, process improvements, and technological advancements with prizes for winning ideas and implementations.', 2, 2, 26, '2025-12-24 12:12:49', '2025-12-24 12:12:49'), (21, 'Mental Health Awareness Week', 21, '2025-12-29', '2026-01-05', 'medium', 'inactive', 'Dedicated week promoting mental health awareness featuring workshops, counseling sessions, stress management techniques, and wellness resources for employee support.', 2, 2, NULL, '2025-12-29 14:32:49', '2025-12-29 14:32:49'), (22, 'Quality Management System Certification', 22, '2026-01-03', '2026-07-12', 'high', 'active', 'Company pursuing ISO quality certification requiring employee training, process documentation, and compliance procedures across all operational departments.', 2, 2, 10, '2026-01-03 10:47:49', '2026-01-03 10:47:49'), (23, 'Employee Feedback Survey Campaign', 23, '2026-01-08', '2026-04-13', 'medium', 'active', 'Anonymous employee satisfaction survey collecting feedback on workplace culture, management effectiveness, benefits, and suggestions for organizational improvements.', 2, 2, 12, '2026-01-08 14:02:49', '2026-01-08 14:02:49'), (24, 'Technology Upgrade Implementation', 24, '2026-01-13', '2026-08-11', 'high', 'draft', 'Major technology infrastructure upgrade including new software systems, hardware replacements, and digital transformation initiatives across all departments.', 2, 2, NULL, '2026-01-13 15:37:49', '2026-01-13 15:37:49'), (25, 'Cross-Department Collaboration Project', 25, '2026-01-18', '2026-06-07', 'medium', 'active', 'Initiative promoting interdepartmental cooperation through joint projects, shared goals, and collaborative problem-solving to enhance organizational efficiency.', 2, 2, 16, '2026-01-18 08:27:49', '2026-01-18 08:27:49'), (26, 'Workplace Safety Inspection Schedule', 26, '2026-01-23', '2027-03-14', 'high', 'active', 'Regular safety inspections ensuring compliance with occupational health standards, equipment maintenance, and hazard identification across all work areas.', 2, 2, 18, '2026-01-23 12:52:49', '2026-01-23 12:52:49'), (27, 'Leadership Development Program', 27, '2026-01-29', '2026-02-27', 'medium', 'inactive', 'Executive leadership training program for managers and supervisors focusing on team management, strategic thinking, and organizational leadership skills.', 2, 2, NULL, '2026-01-28 17:07:49', '2026-01-28 17:07:49'), (28, 'Company Social Responsibility Initiative', 28, '2026-02-02', '2026-09-30', 'low', 'active', 'Community outreach program encouraging employee volunteerism, charitable contributions, and social impact projects supporting local community development.', 2, 2, 22, '2026-02-02 09:42:49', '2026-02-02 09:42:49'), (29, 'Digital Communication Platform Launch', 29, '2026-02-07', '2026-05-13', 'medium', 'draft', 'New internal communication system featuring instant messaging, video conferencing, file sharing, and collaboration tools for enhanced workplace connectivity.', 2, 2, NULL, '2026-02-07 11:57:49', '2026-02-07 11:57:49'), (30, 'Year-End Performance Bonus Distribution', 30, '2026-02-12', '2026-04-28', 'high', 'active', 'Annual performance bonus calculation and distribution based on individual achievements, department goals, and company performance metrics for eligible employees.', 2, 2, 26, '2026-02-12 15:12:49', '2026-02-12 15:12:49'); -- -------------------------------------------------------- -- -- Table structure for table `announcement_categories` -- CREATE TABLE `announcement_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `announcement_category` varchar(255) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `announcement_categories` -- INSERT INTO `announcement_categories` (`id`, `announcement_category`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Executive Communications', 2, 2, '2025-09-15 09:17:49', '2025-09-15 09:17:49'), (2, 'Human Resources Updates', 2, 2, '2025-09-17 10:47:49', '2025-09-17 10:47:49'), (3, 'Policy & Procedure Changes', 2, 2, '2025-09-20 11:32:49', '2025-09-20 11:32:49'), (4, 'Company Events & Celebrations', 2, 2, '2025-09-23 15:02:49', '2025-09-23 15:02:49'), (5, 'Training & Development Programs', 2, 2, '2025-09-25 13:37:49', '2025-09-25 13:37:49'), (6, 'Benefits & Compensation Updates', 2, 2, '2025-09-27 15:27:49', '2025-09-27 15:27:49'), (7, 'Safety & Security Alerts', 2, 2, '2025-09-30 12:17:49', '2025-09-30 12:17:49'), (8, 'Technology & IT Updates', 2, 2, '2025-10-03 16:47:49', '2025-10-03 16:47:49'), (9, 'Finance & Budget Notices', 2, 2, '2025-10-05 11:02:49', '2025-10-05 11:02:49'), (10, 'Operations & Process Updates', 2, 2, '2025-10-07 14:32:49', '2025-10-07 14:32:49'), (11, 'Employee Recognition & Awards', 2, 2, '2025-10-10 08:47:49', '2025-10-10 08:47:49'), (12, 'Health & Wellness Programs', 2, 2, '2025-10-13 09:17:49', '2025-10-13 09:17:49'), (13, 'Organizational Changes', 2, 2, '2025-10-15 11:37:49', '2025-10-15 11:37:49'), (14, 'Project & Initiative Updates', 2, 2, '2025-10-17 14:02:49', '2025-10-17 14:02:49'), (15, 'Customer & Client Relations', 2, 2, '2025-10-20 15:42:49', '2025-10-20 15:42:49'), (16, 'Compliance & Regulatory Updates', 2, 2, '2025-10-23 12:27:49', '2025-10-23 12:27:49'), (17, 'Facility & Infrastructure News', 2, 2, '2025-10-25 14:52:49', '2025-10-25 14:52:49'), (18, 'Quality & Performance Metrics', 2, 2, '2025-10-27 16:17:49', '2025-10-27 16:17:49'), (19, 'Environmental & Sustainability', 2, 2, '2025-10-30 11:07:49', '2025-10-30 11:07:49'), (20, 'Partnership & Collaboration News', 2, 2, '2025-11-02 13:32:49', '2025-11-02 13:32:49'), (21, 'Innovation & Research Updates', 2, 2, '2025-11-04 11:57:49', '2025-11-04 11:57:49'), (22, 'Market & Industry Insights', 2, 2, '2025-11-06 15:22:49', '2025-11-06 15:22:49'), (23, 'Emergency & Crisis Communications', 2, 2, '2025-11-09 09:42:49', '2025-11-09 09:42:49'), (24, 'Diversity & Inclusion Initiatives', 2, 2, '2025-11-12 13:12:49', '2025-11-12 13:12:49'), (25, 'Remote Work & Flexibility Updates', 2, 2, '2025-11-14 14:37:49', '2025-11-14 14:37:49'), (26, 'Performance Review & Feedback', 2, 2, '2025-11-16 17:02:49', '2025-11-16 17:02:49'), (27, 'Career Development Opportunities', 2, 2, '2025-11-19 08:27:49', '2025-11-19 08:27:49'), (28, 'Social & Community Engagement', 2, 2, '2025-11-22 10:52:49', '2025-11-22 10:52:49'), (29, 'Vendor & Supplier Communications', 2, 2, '2025-11-24 13:17:49', '2025-11-24 13:17:49'), (30, 'General Company Information', 2, 2, '2025-11-26 15:47:49', '2025-11-26 15:47:49'); -- -------------------------------------------------------- -- -- Table structure for table `announcement_departments` -- CREATE TABLE `announcement_departments` ( `id` bigint(20) UNSIGNED NOT NULL, `announcement_id` bigint(20) UNSIGNED NOT NULL, `department_id` bigint(20) UNSIGNED NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `announcement_departments` -- INSERT INTO `announcement_departments` (`id`, `announcement_id`, `department_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (2, 1, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (3, 1, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (4, 2, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (5, 2, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (6, 2, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (7, 3, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (8, 3, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (9, 3, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (10, 4, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (11, 4, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (12, 5, 8, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (13, 5, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (14, 6, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (15, 6, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (16, 6, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (17, 7, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (18, 7, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (19, 7, 22, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (20, 8, 11, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (21, 9, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (22, 9, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (23, 9, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (24, 10, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (25, 11, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (26, 11, 19, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (27, 11, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (28, 12, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (29, 13, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (30, 13, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (31, 13, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (32, 14, 2, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (33, 14, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (34, 15, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (35, 15, 27, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (36, 16, 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (37, 16, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (38, 16, 12, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (39, 17, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (40, 17, 6, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (41, 17, 28, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (42, 18, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (43, 18, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (44, 18, 10, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (45, 19, 7, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (46, 19, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (47, 20, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (48, 20, 20, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (49, 20, 25, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (50, 21, 17, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (51, 21, 26, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (52, 22, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (53, 23, 3, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (54, 23, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (55, 24, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (56, 25, 18, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (57, 26, 9, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (58, 26, 14, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (59, 27, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (60, 28, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (61, 28, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (62, 29, 4, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (63, 29, 5, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (64, 30, 21, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (65, 30, 29, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); -- -------------------------------------------------------- -- -- Table structure for table `apikey_setiings` -- CREATE TABLE `apikey_setiings` ( `id` bigint(20) UNSIGNED NOT NULL, `key` text NOT NULL, `provider` varchar(255) NOT NULL DEFAULT 'gemini', `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `assistant_templates` -- CREATE TABLE `assistant_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `template_name` varchar(255) NOT NULL, `template_module` varchar(255) NOT NULL, `module` varchar(255) NOT NULL, `prompt` text NOT NULL, `field_json` text NOT NULL, `is_tone` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `attendances` -- CREATE TABLE `attendances` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `shift_id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `clock_in` datetime NOT NULL, `clock_out` datetime DEFAULT NULL, `break_hour` decimal(8,2) DEFAULT 0.00, `total_hour` decimal(8,2) DEFAULT 0.00, `overtime_hours` decimal(8,2) DEFAULT 0.00, `overtime_amount` decimal(10,2) DEFAULT 0.00, `late_hours` decimal(8,2) DEFAULT 0.00, `early_hours` decimal(8,2) DEFAULT 0.00, `working_hours` decimal(8,2) DEFAULT 0.00, `is_holiday` tinyint(1) NOT NULL DEFAULT 0, `is_weekend` tinyint(1) NOT NULL DEFAULT 0, `is_half_day` tinyint(1) NOT NULL DEFAULT 0, `late_reason` varchar(255) DEFAULT NULL, `early_checkout_reason` varchar(255) DEFAULT NULL, `approved_by_id` bigint(20) UNSIGNED DEFAULT NULL, `approved_at` datetime DEFAULT NULL, `status` enum('present','half day','absent') NOT NULL DEFAULT 'present', `notes` longtext DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `attendances` -- INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 8, 6, '2025-07-01', '2025-07-01 08:00:00', '2025-07-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (2, 12, 6, '2025-07-01', '2025-07-01 08:00:00', '2025-07-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (3, 14, 4, '2025-07-01', '2025-07-01 06:00:00', '2025-07-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (4, 18, 4, '2025-07-01', '2025-07-01 06:00:00', '2025-07-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (5, 20, 3, '2025-07-01', '2025-07-01 22:00:00', '2025-07-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (6, 24, 3, '2025-07-01', '2025-07-01 22:00:00', '2025-07-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (7, 26, 2, '2025-07-01', '2025-07-01 14:00:00', '2025-07-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (8, 8, 6, '2025-07-02', '2025-07-02 08:00:00', '2025-07-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (9, 10, 5, '2025-07-02', '2025-07-02 10:00:00', '2025-07-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (10, 12, 6, '2025-07-02', '2025-07-02 08:00:00', '2025-07-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (11, 14, 4, '2025-07-02', '2025-07-02 06:00:00', '2025-07-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (12, 16, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (13, 18, 4, '2025-07-02', '2025-07-02 06:00:00', '2025-07-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (14, 20, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (15, 22, 2, '2025-07-02', '2025-07-02 14:00:00', '2025-07-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (16, 24, 3, '2025-07-02', '2025-07-02 22:00:00', '2025-07-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (17, 26, 2, '2025-07-02', '2025-07-02 14:00:00', '2025-07-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (18, 8, 6, '2025-07-03', '2025-07-03 08:00:00', '2025-07-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (19, 10, 5, '2025-07-03', '2025-07-03 10:00:00', '2025-07-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (20, 12, 6, '2025-07-03', '2025-07-03 08:00:00', '2025-07-03 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (21, 14, 4, '2025-07-03', '2025-07-03 06:00:00', '2025-07-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (22, 16, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (23, 18, 4, '2025-07-03', '2025-07-03 06:00:00', '2025-07-03 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (24, 20, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (25, 22, 2, '2025-07-03', '2025-07-03 14:00:00', '2025-07-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (26, 24, 3, '2025-07-03', '2025-07-03 22:00:00', '2025-07-03 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (27, 26, 2, '2025-07-03', '2025-07-03 14:00:00', '2025-07-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (28, 8, 6, '2025-07-04', '2025-07-04 08:00:00', '2025-07-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (29, 10, 5, '2025-07-04', '2025-07-04 10:00:00', '2025-07-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (30, 12, 6, '2025-07-04', '2025-07-04 08:00:00', '2025-07-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (31, 14, 4, '2025-07-04', '2025-07-04 06:00:00', '2025-07-04 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (32, 16, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (33, 18, 4, '2025-07-04', '2025-07-04 06:00:00', '2025-07-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (34, 20, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (35, 22, 2, '2025-07-04', '2025-07-04 14:00:00', '2025-07-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (36, 24, 3, '2025-07-04', '2025-07-04 22:00:00', '2025-07-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (37, 26, 2, '2025-07-04', '2025-07-04 14:00:00', '2025-07-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (38, 10, 5, '2025-07-07', '2025-07-07 10:00:00', '2025-07-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (39, 12, 6, '2025-07-07', '2025-07-07 08:00:00', '2025-07-07 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (40, 16, 3, '2025-07-07', '2025-07-07 22:00:00', '2025-07-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (41, 18, 4, '2025-07-07', '2025-07-07 06:00:00', '2025-07-07 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (42, 22, 2, '2025-07-07', '2025-07-07 14:00:00', '2025-07-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (43, 24, 3, '2025-07-07', '2025-07-07 22:00:00', '2025-07-07 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (44, 10, 5, '2025-07-08', '2025-07-08 10:00:00', '2025-07-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (45, 12, 6, '2025-07-08', '2025-07-08 08:00:00', '2025-07-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (46, 16, 3, '2025-07-08', '2025-07-08 22:00:00', '2025-07-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (47, 18, 4, '2025-07-08', '2025-07-08 06:00:00', '2025-07-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (48, 22, 2, '2025-07-08', '2025-07-08 14:00:00', '2025-07-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (49, 24, 3, '2025-07-08', '2025-07-08 22:00:00', '2025-07-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (50, 8, 6, '2025-07-09', '2025-07-09 08:00:00', '2025-07-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (51, 10, 5, '2025-07-09', '2025-07-09 10:00:00', '2025-07-09 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (52, 14, 4, '2025-07-09', '2025-07-09 06:00:00', '2025-07-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (53, 16, 3, '2025-07-09', '2025-07-09 22:00:00', '2025-07-09 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (54, 20, 3, '2025-07-09', '2025-07-09 22:00:00', '2025-07-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (55, 22, 2, '2025-07-09', '2025-07-09 14:00:00', '2025-07-09 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (56, 26, 2, '2025-07-09', '2025-07-09 14:00:00', '2025-07-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (57, 8, 6, '2025-07-10', '2025-07-10 08:00:00', '2025-07-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (58, 10, 5, '2025-07-10', '2025-07-10 10:00:00', '2025-07-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (59, 14, 4, '2025-07-10', '2025-07-10 06:00:00', '2025-07-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (60, 16, 3, '2025-07-10', '2025-07-10 22:00:00', '2025-07-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (61, 20, 3, '2025-07-10', '2025-07-10 22:00:00', '2025-07-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (62, 22, 2, '2025-07-10', '2025-07-10 14:00:00', '2025-07-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (63, 26, 2, '2025-07-10', '2025-07-10 14:00:00', '2025-07-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (64, 8, 6, '2025-07-11', '2025-07-11 08:00:00', '2025-07-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (65, 10, 5, '2025-07-11', '2025-07-11 10:00:00', '2025-07-11 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (66, 14, 4, '2025-07-11', '2025-07-11 06:00:00', '2025-07-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (67, 16, 3, '2025-07-11', '2025-07-11 22:00:00', '2025-07-11 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (68, 20, 3, '2025-07-11', '2025-07-11 22:00:00', '2025-07-11 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (69, 22, 2, '2025-07-11', '2025-07-11 14:00:00', '2025-07-11 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (70, 26, 2, '2025-07-11', '2025-07-11 14:00:00', '2025-07-11 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (71, 8, 6, '2025-07-14', '2025-07-14 08:00:00', '2025-07-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (72, 12, 6, '2025-07-14', '2025-07-14 08:00:00', '2025-07-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (73, 14, 4, '2025-07-14', '2025-07-14 06:00:00', '2025-07-14 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (74, 18, 4, '2025-07-14', '2025-07-14 06:00:00', '2025-07-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (75, 20, 3, '2025-07-14', '2025-07-14 22:00:00', '2025-07-14 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (76, 24, 3, '2025-07-14', '2025-07-14 22:00:00', '2025-07-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (77, 26, 2, '2025-07-14', '2025-07-14 14:00:00', '2025-07-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (78, 8, 6, '2025-07-15', '2025-07-15 08:00:00', '2025-07-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (79, 10, 5, '2025-07-15', '2025-07-15 10:00:00', '2025-07-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (80, 12, 6, '2025-07-15', '2025-07-15 08:00:00', '2025-07-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (81, 14, 4, '2025-07-15', '2025-07-15 06:00:00', '2025-07-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (82, 16, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (83, 18, 4, '2025-07-15', '2025-07-15 06:00:00', '2025-07-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (84, 20, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (85, 22, 2, '2025-07-15', '2025-07-15 14:00:00', '2025-07-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (86, 24, 3, '2025-07-15', '2025-07-15 22:00:00', '2025-07-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (87, 26, 2, '2025-07-15', '2025-07-15 14:00:00', '2025-07-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (88, 8, 6, '2025-07-16', '2025-07-16 08:00:00', '2025-07-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (89, 10, 5, '2025-07-16', '2025-07-16 10:00:00', '2025-07-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (90, 12, 6, '2025-07-16', '2025-07-16 08:00:00', '2025-07-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (91, 14, 4, '2025-07-16', '2025-07-16 06:00:00', '2025-07-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (92, 16, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (93, 18, 4, '2025-07-16', '2025-07-16 06:00:00', '2025-07-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (94, 20, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (95, 22, 2, '2025-07-16', '2025-07-16 14:00:00', '2025-07-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (96, 24, 3, '2025-07-16', '2025-07-16 22:00:00', '2025-07-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (97, 26, 2, '2025-07-16', '2025-07-16 14:00:00', '2025-07-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (98, 10, 5, '2025-07-17', '2025-07-17 10:00:00', '2025-07-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (99, 12, 6, '2025-07-17', '2025-07-17 08:00:00', '2025-07-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (100, 16, 3, '2025-07-17', '2025-07-17 22:00:00', '2025-07-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (101, 18, 4, '2025-07-17', '2025-07-17 06:00:00', '2025-07-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (102, 22, 2, '2025-07-17', '2025-07-17 14:00:00', '2025-07-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (103, 24, 3, '2025-07-17', '2025-07-17 22:00:00', '2025-07-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (104, 10, 5, '2025-07-18', '2025-07-18 10:00:00', '2025-07-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (105, 12, 6, '2025-07-18', '2025-07-18 08:00:00', '2025-07-18 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (106, 16, 3, '2025-07-18', '2025-07-18 22:00:00', '2025-07-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (107, 18, 4, '2025-07-18', '2025-07-18 06:00:00', '2025-07-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (108, 22, 2, '2025-07-18', '2025-07-18 14:00:00', '2025-07-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (109, 24, 3, '2025-07-18', '2025-07-18 22:00:00', '2025-07-18 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (110, 8, 6, '2025-07-21', '2025-07-21 08:00:00', '2025-07-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (111, 10, 5, '2025-07-21', '2025-07-21 10:00:00', '2025-07-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (112, 12, 6, '2025-07-21', '2025-07-21 08:00:00', '2025-07-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (113, 14, 4, '2025-07-21', '2025-07-21 06:00:00', '2025-07-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (114, 16, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (115, 18, 4, '2025-07-21', '2025-07-21 06:00:00', '2025-07-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (116, 20, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (117, 22, 2, '2025-07-21', '2025-07-21 14:00:00', '2025-07-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (118, 24, 3, '2025-07-21', '2025-07-21 22:00:00', '2025-07-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (119, 26, 2, '2025-07-21', '2025-07-21 14:00:00', '2025-07-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (120, 8, 6, '2025-07-22', '2025-07-22 08:00:00', '2025-07-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (121, 10, 5, '2025-07-22', '2025-07-22 10:00:00', '2025-07-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (122, 12, 6, '2025-07-22', '2025-07-22 08:00:00', '2025-07-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (123, 14, 4, '2025-07-22', '2025-07-22 06:00:00', '2025-07-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (124, 16, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (125, 18, 4, '2025-07-22', '2025-07-22 06:00:00', '2025-07-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (126, 20, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (127, 22, 2, '2025-07-22', '2025-07-22 14:00:00', '2025-07-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (128, 24, 3, '2025-07-22', '2025-07-22 22:00:00', '2025-07-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (129, 26, 2, '2025-07-22', '2025-07-22 14:00:00', '2025-07-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (130, 8, 6, '2025-07-23', '2025-07-23 08:00:00', '2025-07-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (131, 10, 5, '2025-07-23', '2025-07-23 10:00:00', '2025-07-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (132, 12, 6, '2025-07-23', '2025-07-23 08:00:00', '2025-07-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (133, 14, 4, '2025-07-23', '2025-07-23 06:00:00', '2025-07-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (134, 16, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (135, 18, 4, '2025-07-23', '2025-07-23 06:00:00', '2025-07-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (136, 20, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (137, 22, 2, '2025-07-23', '2025-07-23 14:00:00', '2025-07-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (138, 24, 3, '2025-07-23', '2025-07-23 22:00:00', '2025-07-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (139, 26, 2, '2025-07-23', '2025-07-23 14:00:00', '2025-07-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (140, 8, 6, '2025-07-24', '2025-07-24 08:00:00', '2025-07-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (141, 10, 5, '2025-07-24', '2025-07-24 10:00:00', '2025-07-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (142, 12, 6, '2025-07-24', '2025-07-24 08:00:00', '2025-07-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (143, 14, 4, '2025-07-24', '2025-07-24 06:00:00', '2025-07-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (144, 16, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (145, 18, 4, '2025-07-24', '2025-07-24 06:00:00', '2025-07-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (146, 20, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (147, 22, 2, '2025-07-24', '2025-07-24 14:00:00', '2025-07-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (148, 24, 3, '2025-07-24', '2025-07-24 22:00:00', '2025-07-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (149, 26, 2, '2025-07-24', '2025-07-24 14:00:00', '2025-07-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (150, 8, 6, '2025-07-25', '2025-07-25 08:00:00', '2025-07-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (151, 10, 5, '2025-07-25', '2025-07-25 10:00:00', '2025-07-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (152, 12, 6, '2025-07-25', '2025-07-25 08:00:00', '2025-07-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (153, 14, 4, '2025-07-25', '2025-07-25 06:00:00', '2025-07-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (154, 16, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (155, 18, 4, '2025-07-25', '2025-07-25 06:00:00', '2025-07-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (156, 20, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (157, 22, 2, '2025-07-25', '2025-07-25 14:00:00', '2025-07-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (158, 24, 3, '2025-07-25', '2025-07-25 22:00:00', '2025-07-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (159, 26, 2, '2025-07-25', '2025-07-25 14:00:00', '2025-07-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (160, 8, 6, '2025-07-28', '2025-07-28 08:00:00', '2025-07-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (161, 10, 5, '2025-07-28', '2025-07-28 10:00:00', '2025-07-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (162, 12, 6, '2025-07-28', '2025-07-28 08:00:00', '2025-07-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (163, 14, 4, '2025-07-28', '2025-07-28 06:00:00', '2025-07-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (164, 16, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (165, 18, 4, '2025-07-28', '2025-07-28 06:00:00', '2025-07-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (166, 20, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (167, 22, 2, '2025-07-28', '2025-07-28 14:00:00', '2025-07-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (168, 24, 3, '2025-07-28', '2025-07-28 22:00:00', '2025-07-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (169, 26, 2, '2025-07-28', '2025-07-28 14:00:00', '2025-07-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (170, 8, 6, '2025-07-29', '2025-07-29 08:00:00', '2025-07-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (171, 10, 5, '2025-07-29', '2025-07-29 10:00:00', '2025-07-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (172, 12, 6, '2025-07-29', '2025-07-29 08:00:00', '2025-07-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (173, 14, 4, '2025-07-29', '2025-07-29 06:00:00', '2025-07-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (174, 16, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (175, 18, 4, '2025-07-29', '2025-07-29 06:00:00', '2025-07-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (176, 20, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (177, 22, 2, '2025-07-29', '2025-07-29 14:00:00', '2025-07-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (178, 24, 3, '2025-07-29', '2025-07-29 22:00:00', '2025-07-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (179, 26, 2, '2025-07-29', '2025-07-29 14:00:00', '2025-07-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (180, 8, 6, '2025-07-30', '2025-07-30 08:00:00', '2025-07-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (181, 10, 5, '2025-07-30', '2025-07-30 10:00:00', '2025-07-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (182, 12, 6, '2025-07-30', '2025-07-30 08:00:00', '2025-07-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (183, 14, 4, '2025-07-30', '2025-07-30 06:00:00', '2025-07-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (184, 16, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (185, 18, 4, '2025-07-30', '2025-07-30 06:00:00', '2025-07-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (186, 20, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (187, 22, 2, '2025-07-30', '2025-07-30 14:00:00', '2025-07-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (188, 24, 3, '2025-07-30', '2025-07-30 22:00:00', '2025-07-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (189, 26, 2, '2025-07-30', '2025-07-30 14:00:00', '2025-07-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (190, 8, 6, '2025-07-31', '2025-07-31 08:00:00', '2025-07-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (191, 10, 5, '2025-07-31', '2025-07-31 10:00:00', '2025-07-31 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (192, 12, 6, '2025-07-31', '2025-07-31 08:00:00', '2025-07-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (193, 14, 4, '2025-07-31', '2025-07-31 06:00:00', '2025-07-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (194, 16, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (195, 18, 4, '2025-07-31', '2025-07-31 06:00:00', '2025-07-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (196, 20, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (197, 22, 2, '2025-07-31', '2025-07-31 14:00:00', '2025-07-31 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (198, 24, 3, '2025-07-31', '2025-07-31 22:00:00', '2025-07-31 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (199, 26, 2, '2025-07-31', '2025-07-31 14:00:00', '2025-07-31 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (200, 8, 6, '2025-08-01', '2025-08-01 08:00:00', '2025-08-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (201, 10, 5, '2025-08-01', '2025-08-01 10:00:00', '2025-08-01 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (202, 12, 6, '2025-08-01', '2025-08-01 08:00:00', '2025-08-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (203, 14, 4, '2025-08-01', '2025-08-01 06:00:00', '2025-08-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (204, 16, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (205, 18, 4, '2025-08-01', '2025-08-01 06:00:00', '2025-08-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (206, 20, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (207, 22, 2, '2025-08-01', '2025-08-01 14:00:00', '2025-08-01 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (208, 24, 3, '2025-08-01', '2025-08-01 22:00:00', '2025-08-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (209, 26, 2, '2025-08-01', '2025-08-01 14:00:00', '2025-08-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (210, 10, 5, '2025-08-04', '2025-08-04 10:00:00', '2025-08-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'); INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (211, 12, 6, '2025-08-04', '2025-08-04 08:00:00', '2025-08-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (212, 16, 3, '2025-08-04', '2025-08-04 22:00:00', '2025-08-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (213, 18, 4, '2025-08-04', '2025-08-04 06:00:00', '2025-08-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (214, 22, 2, '2025-08-04', '2025-08-04 14:00:00', '2025-08-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (215, 24, 3, '2025-08-04', '2025-08-04 22:00:00', '2025-08-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (216, 8, 6, '2025-08-05', '2025-08-05 08:00:00', '2025-08-05 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (217, 10, 5, '2025-08-05', '2025-08-05 10:00:00', '2025-08-05 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (218, 12, 6, '2025-08-05', '2025-08-05 08:00:00', '2025-08-05 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (219, 14, 4, '2025-08-05', '2025-08-05 06:00:00', '2025-08-05 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (220, 16, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (221, 18, 4, '2025-08-05', '2025-08-05 06:00:00', '2025-08-05 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (222, 20, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (223, 22, 2, '2025-08-05', '2025-08-05 14:00:00', '2025-08-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (224, 24, 3, '2025-08-05', '2025-08-05 22:00:00', '2025-08-05 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (225, 26, 2, '2025-08-05', '2025-08-05 14:00:00', '2025-08-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (226, 8, 6, '2025-08-06', '2025-08-06 08:00:00', '2025-08-06 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (227, 10, 5, '2025-08-06', '2025-08-06 10:00:00', '2025-08-06 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (228, 14, 4, '2025-08-06', '2025-08-06 06:00:00', '2025-08-06 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (229, 16, 3, '2025-08-06', '2025-08-06 22:00:00', '2025-08-06 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (230, 20, 3, '2025-08-06', '2025-08-06 22:00:00', '2025-08-06 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (231, 22, 2, '2025-08-06', '2025-08-06 14:00:00', '2025-08-06 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (232, 26, 2, '2025-08-06', '2025-08-06 14:00:00', '2025-08-06 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (233, 8, 6, '2025-08-07', '2025-08-07 08:00:00', '2025-08-07 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (234, 10, 5, '2025-08-07', '2025-08-07 10:00:00', '2025-08-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (235, 14, 4, '2025-08-07', '2025-08-07 06:00:00', '2025-08-07 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (236, 16, 3, '2025-08-07', '2025-08-07 22:00:00', '2025-08-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (237, 20, 3, '2025-08-07', '2025-08-07 22:00:00', '2025-08-07 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (238, 22, 2, '2025-08-07', '2025-08-07 14:00:00', '2025-08-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (239, 26, 2, '2025-08-07', '2025-08-07 14:00:00', '2025-08-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (240, 8, 6, '2025-08-08', '2025-08-08 08:00:00', '2025-08-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (241, 10, 5, '2025-08-08', '2025-08-08 10:00:00', '2025-08-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (242, 12, 6, '2025-08-08', '2025-08-08 08:00:00', '2025-08-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (243, 14, 4, '2025-08-08', '2025-08-08 06:00:00', '2025-08-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (244, 16, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (245, 18, 4, '2025-08-08', '2025-08-08 06:00:00', '2025-08-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (246, 20, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (247, 22, 2, '2025-08-08', '2025-08-08 14:00:00', '2025-08-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (248, 24, 3, '2025-08-08', '2025-08-08 22:00:00', '2025-08-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (249, 26, 2, '2025-08-08', '2025-08-08 14:00:00', '2025-08-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (250, 8, 6, '2025-08-11', '2025-08-11 08:00:00', '2025-08-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (251, 12, 6, '2025-08-11', '2025-08-11 08:00:00', '2025-08-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (252, 14, 4, '2025-08-11', '2025-08-11 06:00:00', '2025-08-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (253, 18, 4, '2025-08-11', '2025-08-11 06:00:00', '2025-08-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (254, 20, 3, '2025-08-11', '2025-08-11 22:00:00', '2025-08-11 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (255, 24, 3, '2025-08-11', '2025-08-11 22:00:00', '2025-08-11 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (256, 26, 2, '2025-08-11', '2025-08-11 14:00:00', '2025-08-11 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (257, 8, 6, '2025-08-12', '2025-08-12 08:00:00', '2025-08-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (258, 12, 6, '2025-08-12', '2025-08-12 08:00:00', '2025-08-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (259, 14, 4, '2025-08-12', '2025-08-12 06:00:00', '2025-08-12 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (260, 18, 4, '2025-08-12', '2025-08-12 06:00:00', '2025-08-12 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (261, 20, 3, '2025-08-12', '2025-08-12 22:00:00', '2025-08-12 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (262, 24, 3, '2025-08-12', '2025-08-12 22:00:00', '2025-08-12 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (263, 26, 2, '2025-08-12', '2025-08-12 14:00:00', '2025-08-12 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (264, 8, 6, '2025-08-13', '2025-08-13 08:00:00', '2025-08-13 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (265, 12, 6, '2025-08-13', '2025-08-13 08:00:00', '2025-08-13 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (266, 14, 4, '2025-08-13', '2025-08-13 06:00:00', '2025-08-13 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (267, 18, 4, '2025-08-13', '2025-08-13 06:00:00', '2025-08-13 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (268, 20, 3, '2025-08-13', '2025-08-13 22:00:00', '2025-08-13 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (269, 24, 3, '2025-08-13', '2025-08-13 22:00:00', '2025-08-13 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (270, 26, 2, '2025-08-13', '2025-08-13 14:00:00', '2025-08-13 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (271, 10, 5, '2025-08-14', '2025-08-14 10:00:00', '2025-08-14 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (272, 12, 6, '2025-08-14', '2025-08-14 08:00:00', '2025-08-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (273, 16, 3, '2025-08-14', '2025-08-14 22:00:00', '2025-08-14 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (274, 18, 4, '2025-08-14', '2025-08-14 06:00:00', '2025-08-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (275, 22, 2, '2025-08-14', '2025-08-14 14:00:00', '2025-08-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (276, 24, 3, '2025-08-14', '2025-08-14 22:00:00', '2025-08-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (277, 8, 6, '2025-08-15', '2025-08-15 08:00:00', '2025-08-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (278, 10, 5, '2025-08-15', '2025-08-15 10:00:00', '2025-08-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (279, 12, 6, '2025-08-15', '2025-08-15 08:00:00', '2025-08-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (280, 14, 4, '2025-08-15', '2025-08-15 06:00:00', '2025-08-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (281, 16, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (282, 18, 4, '2025-08-15', '2025-08-15 06:00:00', '2025-08-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (283, 20, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (284, 22, 2, '2025-08-15', '2025-08-15 14:00:00', '2025-08-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (285, 24, 3, '2025-08-15', '2025-08-15 22:00:00', '2025-08-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (286, 26, 2, '2025-08-15', '2025-08-15 14:00:00', '2025-08-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (287, 8, 6, '2025-08-18', '2025-08-18 08:00:00', '2025-08-18 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (288, 10, 5, '2025-08-18', '2025-08-18 10:00:00', '2025-08-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (289, 14, 4, '2025-08-18', '2025-08-18 06:00:00', '2025-08-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (290, 16, 3, '2025-08-18', '2025-08-18 22:00:00', '2025-08-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (291, 20, 3, '2025-08-18', '2025-08-18 22:00:00', '2025-08-18 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (292, 22, 2, '2025-08-18', '2025-08-18 14:00:00', '2025-08-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (293, 26, 2, '2025-08-18', '2025-08-18 14:00:00', '2025-08-18 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (294, 8, 6, '2025-08-19', '2025-08-19 08:00:00', '2025-08-19 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (295, 10, 5, '2025-08-19', '2025-08-19 10:00:00', '2025-08-19 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (296, 14, 4, '2025-08-19', '2025-08-19 06:00:00', '2025-08-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (297, 16, 3, '2025-08-19', '2025-08-19 22:00:00', '2025-08-19 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (298, 20, 3, '2025-08-19', '2025-08-19 22:00:00', '2025-08-19 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (299, 22, 2, '2025-08-19', '2025-08-19 14:00:00', '2025-08-19 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (300, 26, 2, '2025-08-19', '2025-08-19 14:00:00', '2025-08-19 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (301, 8, 6, '2025-08-20', '2025-08-20 08:00:00', '2025-08-20 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (302, 10, 5, '2025-08-20', '2025-08-20 10:00:00', '2025-08-20 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (303, 12, 6, '2025-08-20', '2025-08-20 08:00:00', '2025-08-20 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (304, 14, 4, '2025-08-20', '2025-08-20 06:00:00', '2025-08-20 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (305, 16, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (306, 18, 4, '2025-08-20', '2025-08-20 06:00:00', '2025-08-20 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (307, 20, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (308, 22, 2, '2025-08-20', '2025-08-20 14:00:00', '2025-08-20 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (309, 24, 3, '2025-08-20', '2025-08-20 22:00:00', '2025-08-20 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (310, 26, 2, '2025-08-20', '2025-08-20 14:00:00', '2025-08-20 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (311, 8, 6, '2025-08-21', '2025-08-21 08:00:00', '2025-08-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (312, 10, 5, '2025-08-21', '2025-08-21 10:00:00', '2025-08-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (313, 12, 6, '2025-08-21', '2025-08-21 08:00:00', '2025-08-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (314, 14, 4, '2025-08-21', '2025-08-21 06:00:00', '2025-08-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (315, 16, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (316, 18, 4, '2025-08-21', '2025-08-21 06:00:00', '2025-08-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (317, 20, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (318, 22, 2, '2025-08-21', '2025-08-21 14:00:00', '2025-08-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (319, 24, 3, '2025-08-21', '2025-08-21 22:00:00', '2025-08-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (320, 26, 2, '2025-08-21', '2025-08-21 14:00:00', '2025-08-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (321, 8, 6, '2025-08-22', '2025-08-22 08:00:00', '2025-08-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (322, 10, 5, '2025-08-22', '2025-08-22 10:00:00', '2025-08-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (323, 12, 6, '2025-08-22', '2025-08-22 08:00:00', '2025-08-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (324, 14, 4, '2025-08-22', '2025-08-22 06:00:00', '2025-08-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (325, 16, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (326, 18, 4, '2025-08-22', '2025-08-22 06:00:00', '2025-08-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (327, 20, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (328, 22, 2, '2025-08-22', '2025-08-22 14:00:00', '2025-08-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (329, 24, 3, '2025-08-22', '2025-08-22 22:00:00', '2025-08-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (330, 26, 2, '2025-08-22', '2025-08-22 14:00:00', '2025-08-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (331, 8, 6, '2025-08-25', '2025-08-25 08:00:00', '2025-08-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (332, 10, 5, '2025-08-25', '2025-08-25 10:00:00', '2025-08-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (333, 12, 6, '2025-08-25', '2025-08-25 08:00:00', '2025-08-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (334, 14, 4, '2025-08-25', '2025-08-25 06:00:00', '2025-08-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (335, 16, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (336, 18, 4, '2025-08-25', '2025-08-25 06:00:00', '2025-08-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (337, 20, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (338, 22, 2, '2025-08-25', '2025-08-25 14:00:00', '2025-08-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (339, 24, 3, '2025-08-25', '2025-08-25 22:00:00', '2025-08-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (340, 26, 2, '2025-08-25', '2025-08-25 14:00:00', '2025-08-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (341, 8, 6, '2025-08-26', '2025-08-26 08:00:00', '2025-08-26 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (342, 10, 5, '2025-08-26', '2025-08-26 10:00:00', '2025-08-26 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (343, 12, 6, '2025-08-26', '2025-08-26 08:00:00', '2025-08-26 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (344, 14, 4, '2025-08-26', '2025-08-26 06:00:00', '2025-08-26 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (345, 16, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (346, 18, 4, '2025-08-26', '2025-08-26 06:00:00', '2025-08-26 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (347, 20, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (348, 22, 2, '2025-08-26', '2025-08-26 14:00:00', '2025-08-26 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (349, 24, 3, '2025-08-26', '2025-08-26 22:00:00', '2025-08-26 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (350, 26, 2, '2025-08-26', '2025-08-26 14:00:00', '2025-08-26 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (351, 8, 6, '2025-08-27', '2025-08-27 08:00:00', '2025-08-27 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (352, 10, 5, '2025-08-27', '2025-08-27 10:00:00', '2025-08-27 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (353, 12, 6, '2025-08-27', '2025-08-27 08:00:00', '2025-08-27 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (354, 14, 4, '2025-08-27', '2025-08-27 06:00:00', '2025-08-27 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (355, 16, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (356, 18, 4, '2025-08-27', '2025-08-27 06:00:00', '2025-08-27 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (357, 20, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (358, 22, 2, '2025-08-27', '2025-08-27 14:00:00', '2025-08-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (359, 24, 3, '2025-08-27', '2025-08-27 22:00:00', '2025-08-27 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (360, 26, 2, '2025-08-27', '2025-08-27 14:00:00', '2025-08-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (361, 8, 6, '2025-08-28', '2025-08-28 08:00:00', '2025-08-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (362, 10, 5, '2025-08-28', '2025-08-28 10:00:00', '2025-08-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (363, 12, 6, '2025-08-28', '2025-08-28 08:00:00', '2025-08-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (364, 14, 4, '2025-08-28', '2025-08-28 06:00:00', '2025-08-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (365, 16, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (366, 18, 4, '2025-08-28', '2025-08-28 06:00:00', '2025-08-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (367, 20, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (368, 22, 2, '2025-08-28', '2025-08-28 14:00:00', '2025-08-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (369, 24, 3, '2025-08-28', '2025-08-28 22:00:00', '2025-08-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (370, 26, 2, '2025-08-28', '2025-08-28 14:00:00', '2025-08-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (371, 8, 6, '2025-08-29', '2025-08-29 08:00:00', '2025-08-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (372, 10, 5, '2025-08-29', '2025-08-29 10:00:00', '2025-08-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (373, 12, 6, '2025-08-29', '2025-08-29 08:00:00', '2025-08-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (374, 14, 4, '2025-08-29', '2025-08-29 06:00:00', '2025-08-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (375, 16, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (376, 18, 4, '2025-08-29', '2025-08-29 06:00:00', '2025-08-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (377, 20, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (378, 22, 2, '2025-08-29', '2025-08-29 14:00:00', '2025-08-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (379, 24, 3, '2025-08-29', '2025-08-29 22:00:00', '2025-08-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (380, 26, 2, '2025-08-29', '2025-08-29 14:00:00', '2025-08-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (381, 8, 6, '2025-09-01', '2025-09-01 08:00:00', '2025-09-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (382, 10, 5, '2025-09-01', '2025-09-01 10:00:00', '2025-09-01 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (383, 12, 6, '2025-09-01', '2025-09-01 08:00:00', '2025-09-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (384, 14, 4, '2025-09-01', '2025-09-01 06:00:00', '2025-09-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (385, 16, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (386, 18, 4, '2025-09-01', '2025-09-01 06:00:00', '2025-09-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (387, 20, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (388, 22, 2, '2025-09-01', '2025-09-01 14:00:00', '2025-09-01 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (389, 24, 3, '2025-09-01', '2025-09-01 22:00:00', '2025-09-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (390, 26, 2, '2025-09-01', '2025-09-01 14:00:00', '2025-09-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (391, 8, 6, '2025-09-02', '2025-09-02 08:00:00', '2025-09-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (392, 10, 5, '2025-09-02', '2025-09-02 10:00:00', '2025-09-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (393, 12, 6, '2025-09-02', '2025-09-02 08:00:00', '2025-09-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (394, 14, 4, '2025-09-02', '2025-09-02 06:00:00', '2025-09-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (395, 16, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (396, 18, 4, '2025-09-02', '2025-09-02 06:00:00', '2025-09-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (397, 20, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (398, 22, 2, '2025-09-02', '2025-09-02 14:00:00', '2025-09-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (399, 24, 3, '2025-09-02', '2025-09-02 22:00:00', '2025-09-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (400, 26, 2, '2025-09-02', '2025-09-02 14:00:00', '2025-09-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (401, 8, 6, '2025-09-03', '2025-09-03 08:00:00', '2025-09-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (402, 10, 5, '2025-09-03', '2025-09-03 10:00:00', '2025-09-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (403, 14, 4, '2025-09-03', '2025-09-03 06:00:00', '2025-09-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (404, 16, 3, '2025-09-03', '2025-09-03 22:00:00', '2025-09-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:50', '2026-03-14 00:17:50'), (405, 20, 3, '2025-09-03', '2025-09-03 22:00:00', '2025-09-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (406, 22, 2, '2025-09-03', '2025-09-03 14:00:00', '2025-09-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (407, 26, 2, '2025-09-03', '2025-09-03 14:00:00', '2025-09-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (408, 8, 6, '2025-09-04', '2025-09-04 08:00:00', '2025-09-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (409, 10, 5, '2025-09-04', '2025-09-04 10:00:00', '2025-09-04 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (410, 12, 6, '2025-09-04', '2025-09-04 08:00:00', '2025-09-04 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (411, 14, 4, '2025-09-04', '2025-09-04 06:00:00', '2025-09-04 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (412, 16, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (413, 18, 4, '2025-09-04', '2025-09-04 06:00:00', '2025-09-04 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (414, 20, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (415, 22, 2, '2025-09-04', '2025-09-04 14:00:00', '2025-09-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (416, 24, 3, '2025-09-04', '2025-09-04 22:00:00', '2025-09-04 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (417, 26, 2, '2025-09-04', '2025-09-04 14:00:00', '2025-09-04 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (418, 8, 6, '2025-09-05', '2025-09-05 08:00:00', '2025-09-05 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (419, 10, 5, '2025-09-05', '2025-09-05 10:00:00', '2025-09-05 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (420, 12, 6, '2025-09-05', '2025-09-05 08:00:00', '2025-09-05 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (421, 14, 4, '2025-09-05', '2025-09-05 06:00:00', '2025-09-05 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (422, 16, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (423, 18, 4, '2025-09-05', '2025-09-05 06:00:00', '2025-09-05 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (424, 20, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (425, 22, 2, '2025-09-05', '2025-09-05 14:00:00', '2025-09-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (426, 24, 3, '2025-09-05', '2025-09-05 22:00:00', '2025-09-05 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (427, 26, 2, '2025-09-05', '2025-09-05 14:00:00', '2025-09-05 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (428, 8, 6, '2025-09-08', '2025-09-08 08:00:00', '2025-09-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (429, 12, 6, '2025-09-08', '2025-09-08 08:00:00', '2025-09-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (430, 14, 4, '2025-09-08', '2025-09-08 06:00:00', '2025-09-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (431, 18, 4, '2025-09-08', '2025-09-08 06:00:00', '2025-09-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (432, 20, 3, '2025-09-08', '2025-09-08 22:00:00', '2025-09-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (433, 24, 3, '2025-09-08', '2025-09-08 22:00:00', '2025-09-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (434, 26, 2, '2025-09-08', '2025-09-08 14:00:00', '2025-09-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (435, 8, 6, '2025-09-09', '2025-09-09 08:00:00', '2025-09-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (436, 12, 6, '2025-09-09', '2025-09-09 08:00:00', '2025-09-09 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (437, 14, 4, '2025-09-09', '2025-09-09 06:00:00', '2025-09-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (438, 18, 4, '2025-09-09', '2025-09-09 06:00:00', '2025-09-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (439, 20, 3, '2025-09-09', '2025-09-09 22:00:00', '2025-09-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (440, 24, 3, '2025-09-09', '2025-09-09 22:00:00', '2025-09-09 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (441, 26, 2, '2025-09-09', '2025-09-09 14:00:00', '2025-09-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (442, 8, 6, '2025-09-10', '2025-09-10 08:00:00', '2025-09-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (443, 10, 5, '2025-09-10', '2025-09-10 10:00:00', '2025-09-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (444, 12, 6, '2025-09-10', '2025-09-10 08:00:00', '2025-09-10 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (445, 14, 4, '2025-09-10', '2025-09-10 06:00:00', '2025-09-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (446, 16, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (447, 18, 4, '2025-09-10', '2025-09-10 06:00:00', '2025-09-10 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (448, 20, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (449, 22, 2, '2025-09-10', '2025-09-10 14:00:00', '2025-09-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (450, 24, 3, '2025-09-10', '2025-09-10 22:00:00', '2025-09-10 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (451, 26, 2, '2025-09-10', '2025-09-10 14:00:00', '2025-09-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (452, 10, 5, '2025-09-11', '2025-09-11 10:00:00', '2025-09-11 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (453, 12, 6, '2025-09-11', '2025-09-11 08:00:00', '2025-09-11 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (454, 16, 3, '2025-09-11', '2025-09-11 22:00:00', '2025-09-11 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (455, 18, 4, '2025-09-11', '2025-09-11 06:00:00', '2025-09-11 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (456, 22, 2, '2025-09-11', '2025-09-11 14:00:00', '2025-09-11 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (457, 24, 3, '2025-09-11', '2025-09-11 22:00:00', '2025-09-11 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (458, 10, 5, '2025-09-12', '2025-09-12 10:00:00', '2025-09-12 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (459, 12, 6, '2025-09-12', '2025-09-12 08:00:00', '2025-09-12 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (460, 16, 3, '2025-09-12', '2025-09-12 22:00:00', '2025-09-12 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (461, 18, 4, '2025-09-12', '2025-09-12 06:00:00', '2025-09-12 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (462, 22, 2, '2025-09-12', '2025-09-12 14:00:00', '2025-09-12 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (463, 24, 3, '2025-09-12', '2025-09-12 22:00:00', '2025-09-12 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (464, 10, 5, '2025-09-15', '2025-09-15 10:00:00', '2025-09-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (465, 16, 3, '2025-09-15', '2025-09-15 22:00:00', '2025-09-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (466, 22, 2, '2025-09-15', '2025-09-15 14:00:00', '2025-09-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (467, 8, 6, '2025-09-16', '2025-09-16 08:00:00', '2025-09-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (468, 10, 5, '2025-09-16', '2025-09-16 10:00:00', '2025-09-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (469, 12, 6, '2025-09-16', '2025-09-16 08:00:00', '2025-09-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (470, 14, 4, '2025-09-16', '2025-09-16 06:00:00', '2025-09-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (471, 16, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (472, 18, 4, '2025-09-16', '2025-09-16 06:00:00', '2025-09-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (473, 20, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (474, 22, 2, '2025-09-16', '2025-09-16 14:00:00', '2025-09-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (475, 24, 3, '2025-09-16', '2025-09-16 22:00:00', '2025-09-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (476, 26, 2, '2025-09-16', '2025-09-16 14:00:00', '2025-09-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (477, 8, 6, '2025-09-17', '2025-09-17 08:00:00', '2025-09-17 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (478, 10, 5, '2025-09-17', '2025-09-17 10:00:00', '2025-09-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (479, 12, 6, '2025-09-17', '2025-09-17 08:00:00', '2025-09-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (480, 14, 4, '2025-09-17', '2025-09-17 06:00:00', '2025-09-17 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (481, 16, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (482, 18, 4, '2025-09-17', '2025-09-17 06:00:00', '2025-09-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (483, 20, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (484, 22, 2, '2025-09-17', '2025-09-17 14:00:00', '2025-09-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (485, 24, 3, '2025-09-17', '2025-09-17 22:00:00', '2025-09-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (486, 26, 2, '2025-09-17', '2025-09-17 14:00:00', '2025-09-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (487, 8, 6, '2025-09-18', '2025-09-18 08:00:00', '2025-09-18 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (488, 10, 5, '2025-09-18', '2025-09-18 10:00:00', '2025-09-18 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (489, 12, 6, '2025-09-18', '2025-09-18 08:00:00', '2025-09-18 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (490, 14, 4, '2025-09-18', '2025-09-18 06:00:00', '2025-09-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (491, 16, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (492, 18, 4, '2025-09-18', '2025-09-18 06:00:00', '2025-09-18 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (493, 20, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (494, 22, 2, '2025-09-18', '2025-09-18 14:00:00', '2025-09-18 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (495, 24, 3, '2025-09-18', '2025-09-18 22:00:00', '2025-09-18 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (496, 26, 2, '2025-09-18', '2025-09-18 14:00:00', '2025-09-18 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (497, 8, 6, '2025-09-19', '2025-09-19 08:00:00', '2025-09-19 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (498, 12, 6, '2025-09-19', '2025-09-19 08:00:00', '2025-09-19 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (499, 14, 4, '2025-09-19', '2025-09-19 06:00:00', '2025-09-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (500, 18, 4, '2025-09-19', '2025-09-19 06:00:00', '2025-09-19 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (501, 20, 3, '2025-09-19', '2025-09-19 22:00:00', '2025-09-19 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (502, 24, 3, '2025-09-19', '2025-09-19 22:00:00', '2025-09-19 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (503, 26, 2, '2025-09-19', '2025-09-19 14:00:00', '2025-09-19 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (504, 8, 6, '2025-09-22', '2025-09-22 08:00:00', '2025-09-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (505, 12, 6, '2025-09-22', '2025-09-22 08:00:00', '2025-09-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (506, 14, 4, '2025-09-22', '2025-09-22 06:00:00', '2025-09-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (507, 18, 4, '2025-09-22', '2025-09-22 06:00:00', '2025-09-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (508, 20, 3, '2025-09-22', '2025-09-22 22:00:00', '2025-09-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (509, 24, 3, '2025-09-22', '2025-09-22 22:00:00', '2025-09-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (510, 26, 2, '2025-09-22', '2025-09-22 14:00:00', '2025-09-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (511, 8, 6, '2025-09-23', '2025-09-23 08:00:00', '2025-09-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (512, 10, 5, '2025-09-23', '2025-09-23 10:00:00', '2025-09-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (513, 12, 6, '2025-09-23', '2025-09-23 08:00:00', '2025-09-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (514, 14, 4, '2025-09-23', '2025-09-23 06:00:00', '2025-09-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (515, 16, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (516, 18, 4, '2025-09-23', '2025-09-23 06:00:00', '2025-09-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (517, 20, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (518, 22, 2, '2025-09-23', '2025-09-23 14:00:00', '2025-09-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (519, 24, 3, '2025-09-23', '2025-09-23 22:00:00', '2025-09-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (520, 26, 2, '2025-09-23', '2025-09-23 14:00:00', '2025-09-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (521, 8, 6, '2025-09-24', '2025-09-24 08:00:00', '2025-09-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (522, 10, 5, '2025-09-24', '2025-09-24 10:00:00', '2025-09-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (523, 12, 6, '2025-09-24', '2025-09-24 08:00:00', '2025-09-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (524, 14, 4, '2025-09-24', '2025-09-24 06:00:00', '2025-09-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (525, 16, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (526, 18, 4, '2025-09-24', '2025-09-24 06:00:00', '2025-09-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (527, 20, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (528, 22, 2, '2025-09-24', '2025-09-24 14:00:00', '2025-09-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (529, 24, 3, '2025-09-24', '2025-09-24 22:00:00', '2025-09-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (530, 26, 2, '2025-09-24', '2025-09-24 14:00:00', '2025-09-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (531, 8, 6, '2025-09-25', '2025-09-25 08:00:00', '2025-09-25 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (532, 10, 5, '2025-09-25', '2025-09-25 10:00:00', '2025-09-25 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (533, 12, 6, '2025-09-25', '2025-09-25 08:00:00', '2025-09-25 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (534, 14, 4, '2025-09-25', '2025-09-25 06:00:00', '2025-09-25 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (535, 16, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (536, 18, 4, '2025-09-25', '2025-09-25 06:00:00', '2025-09-25 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (537, 20, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (538, 22, 2, '2025-09-25', '2025-09-25 14:00:00', '2025-09-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (539, 24, 3, '2025-09-25', '2025-09-25 22:00:00', '2025-09-25 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (540, 26, 2, '2025-09-25', '2025-09-25 14:00:00', '2025-09-25 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (541, 8, 6, '2025-09-26', '2025-09-26 08:00:00', '2025-09-26 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (542, 10, 5, '2025-09-26', '2025-09-26 10:00:00', '2025-09-26 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (543, 12, 6, '2025-09-26', '2025-09-26 08:00:00', '2025-09-26 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (544, 14, 4, '2025-09-26', '2025-09-26 06:00:00', '2025-09-26 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (545, 16, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (546, 18, 4, '2025-09-26', '2025-09-26 06:00:00', '2025-09-26 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (547, 20, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (548, 22, 2, '2025-09-26', '2025-09-26 14:00:00', '2025-09-26 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (549, 24, 3, '2025-09-26', '2025-09-26 22:00:00', '2025-09-26 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (550, 26, 2, '2025-09-26', '2025-09-26 14:00:00', '2025-09-26 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (551, 8, 6, '2025-09-29', '2025-09-29 08:00:00', '2025-09-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (552, 10, 5, '2025-09-29', '2025-09-29 10:00:00', '2025-09-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (553, 12, 6, '2025-09-29', '2025-09-29 08:00:00', '2025-09-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (554, 14, 4, '2025-09-29', '2025-09-29 06:00:00', '2025-09-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (555, 16, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (556, 18, 4, '2025-09-29', '2025-09-29 06:00:00', '2025-09-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (557, 20, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (558, 22, 2, '2025-09-29', '2025-09-29 14:00:00', '2025-09-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (559, 24, 3, '2025-09-29', '2025-09-29 22:00:00', '2025-09-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (560, 26, 2, '2025-09-29', '2025-09-29 14:00:00', '2025-09-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (561, 8, 6, '2025-09-30', '2025-09-30 08:00:00', '2025-09-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (562, 10, 5, '2025-09-30', '2025-09-30 10:00:00', '2025-09-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (563, 12, 6, '2025-09-30', '2025-09-30 08:00:00', '2025-09-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (564, 14, 4, '2025-09-30', '2025-09-30 06:00:00', '2025-09-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (565, 16, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (566, 18, 4, '2025-09-30', '2025-09-30 06:00:00', '2025-09-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (567, 20, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (568, 22, 2, '2025-09-30', '2025-09-30 14:00:00', '2025-09-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (569, 24, 3, '2025-09-30', '2025-09-30 22:00:00', '2025-09-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (570, 26, 2, '2025-09-30', '2025-09-30 14:00:00', '2025-09-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (571, 8, 6, '2025-10-01', '2025-10-01 08:00:00', '2025-10-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (572, 12, 6, '2025-10-01', '2025-10-01 08:00:00', '2025-10-01 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (573, 14, 4, '2025-10-01', '2025-10-01 06:00:00', '2025-10-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (574, 18, 4, '2025-10-01', '2025-10-01 06:00:00', '2025-10-01 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (575, 20, 3, '2025-10-01', '2025-10-01 22:00:00', '2025-10-01 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (576, 24, 3, '2025-10-01', '2025-10-01 22:00:00', '2025-10-01 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (577, 26, 2, '2025-10-01', '2025-10-01 14:00:00', '2025-10-01 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (578, 8, 6, '2025-10-02', '2025-10-02 08:00:00', '2025-10-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (579, 10, 5, '2025-10-02', '2025-10-02 10:00:00', '2025-10-02 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (580, 12, 6, '2025-10-02', '2025-10-02 08:00:00', '2025-10-02 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (581, 14, 4, '2025-10-02', '2025-10-02 06:00:00', '2025-10-02 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (582, 16, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (583, 18, 4, '2025-10-02', '2025-10-02 06:00:00', '2025-10-02 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (584, 20, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (585, 22, 2, '2025-10-02', '2025-10-02 14:00:00', '2025-10-02 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (586, 24, 3, '2025-10-02', '2025-10-02 22:00:00', '2025-10-02 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (587, 26, 2, '2025-10-02', '2025-10-02 14:00:00', '2025-10-02 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (588, 8, 6, '2025-10-03', '2025-10-03 08:00:00', '2025-10-03 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (589, 10, 5, '2025-10-03', '2025-10-03 10:00:00', '2025-10-03 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (590, 12, 6, '2025-10-03', '2025-10-03 08:00:00', '2025-10-03 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (591, 14, 4, '2025-10-03', '2025-10-03 06:00:00', '2025-10-03 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (592, 16, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (593, 18, 4, '2025-10-03', '2025-10-03 06:00:00', '2025-10-03 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (594, 20, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (595, 22, 2, '2025-10-03', '2025-10-03 14:00:00', '2025-10-03 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (596, 24, 3, '2025-10-03', '2025-10-03 22:00:00', '2025-10-03 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (597, 26, 2, '2025-10-03', '2025-10-03 14:00:00', '2025-10-03 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (598, 10, 5, '2025-10-06', '2025-10-06 10:00:00', '2025-10-06 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (599, 12, 6, '2025-10-06', '2025-10-06 08:00:00', '2025-10-06 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (600, 16, 3, '2025-10-06', '2025-10-06 22:00:00', '2025-10-06 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (601, 18, 4, '2025-10-06', '2025-10-06 06:00:00', '2025-10-06 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (602, 22, 2, '2025-10-06', '2025-10-06 14:00:00', '2025-10-06 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (603, 24, 3, '2025-10-06', '2025-10-06 22:00:00', '2025-10-06 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (604, 10, 5, '2025-10-07', '2025-10-07 10:00:00', '2025-10-07 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (605, 12, 6, '2025-10-07', '2025-10-07 08:00:00', '2025-10-07 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (606, 16, 3, '2025-10-07', '2025-10-07 22:00:00', '2025-10-07 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (607, 18, 4, '2025-10-07', '2025-10-07 06:00:00', '2025-10-07 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (608, 22, 2, '2025-10-07', '2025-10-07 14:00:00', '2025-10-07 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (609, 24, 3, '2025-10-07', '2025-10-07 22:00:00', '2025-10-07 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (610, 8, 6, '2025-10-08', '2025-10-08 08:00:00', '2025-10-08 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (611, 10, 5, '2025-10-08', '2025-10-08 10:00:00', '2025-10-08 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (612, 12, 6, '2025-10-08', '2025-10-08 08:00:00', '2025-10-08 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (613, 14, 4, '2025-10-08', '2025-10-08 06:00:00', '2025-10-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (614, 16, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (615, 18, 4, '2025-10-08', '2025-10-08 06:00:00', '2025-10-08 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (616, 20, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (617, 22, 2, '2025-10-08', '2025-10-08 14:00:00', '2025-10-08 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (618, 24, 3, '2025-10-08', '2025-10-08 22:00:00', '2025-10-08 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (619, 26, 2, '2025-10-08', '2025-10-08 14:00:00', '2025-10-08 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (620, 8, 6, '2025-10-09', '2025-10-09 08:00:00', '2025-10-09 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (621, 10, 5, '2025-10-09', '2025-10-09 10:00:00', '2025-10-09 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (622, 14, 4, '2025-10-09', '2025-10-09 06:00:00', '2025-10-09 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (623, 16, 3, '2025-10-09', '2025-10-09 22:00:00', '2025-10-09 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (624, 20, 3, '2025-10-09', '2025-10-09 22:00:00', '2025-10-09 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (625, 22, 2, '2025-10-09', '2025-10-09 14:00:00', '2025-10-09 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (626, 26, 2, '2025-10-09', '2025-10-09 14:00:00', '2025-10-09 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (627, 8, 6, '2025-10-10', '2025-10-10 08:00:00', '2025-10-10 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (628, 10, 5, '2025-10-10', '2025-10-10 10:00:00', '2025-10-10 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (629, 14, 4, '2025-10-10', '2025-10-10 06:00:00', '2025-10-10 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (630, 16, 3, '2025-10-10', '2025-10-10 22:00:00', '2025-10-10 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (631, 20, 3, '2025-10-10', '2025-10-10 22:00:00', '2025-10-10 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (632, 22, 2, '2025-10-10', '2025-10-10 14:00:00', '2025-10-10 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (633, 26, 2, '2025-10-10', '2025-10-10 14:00:00', '2025-10-10 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (634, 8, 6, '2025-10-13', '2025-10-13 08:00:00', '2025-10-13 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (635, 14, 4, '2025-10-13', '2025-10-13 06:00:00', '2025-10-13 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (636, 20, 3, '2025-10-13', '2025-10-13 22:00:00', '2025-10-13 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (637, 26, 2, '2025-10-13', '2025-10-13 14:00:00', '2025-10-13 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (638, 8, 6, '2025-10-14', '2025-10-14 08:00:00', '2025-10-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (639, 10, 5, '2025-10-14', '2025-10-14 10:00:00', '2025-10-14 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (640, 12, 6, '2025-10-14', '2025-10-14 08:00:00', '2025-10-14 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (641, 14, 4, '2025-10-14', '2025-10-14 06:00:00', '2025-10-14 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (642, 16, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (643, 18, 4, '2025-10-14', '2025-10-14 06:00:00', '2025-10-14 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (644, 20, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (645, 22, 2, '2025-10-14', '2025-10-14 14:00:00', '2025-10-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (646, 24, 3, '2025-10-14', '2025-10-14 22:00:00', '2025-10-14 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (647, 26, 2, '2025-10-14', '2025-10-14 14:00:00', '2025-10-14 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (648, 8, 6, '2025-10-15', '2025-10-15 08:00:00', '2025-10-15 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (649, 10, 5, '2025-10-15', '2025-10-15 10:00:00', '2025-10-15 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (650, 12, 6, '2025-10-15', '2025-10-15 08:00:00', '2025-10-15 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (651, 14, 4, '2025-10-15', '2025-10-15 06:00:00', '2025-10-15 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (652, 16, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (653, 18, 4, '2025-10-15', '2025-10-15 06:00:00', '2025-10-15 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (654, 20, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (655, 22, 2, '2025-10-15', '2025-10-15 14:00:00', '2025-10-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (656, 24, 3, '2025-10-15', '2025-10-15 22:00:00', '2025-10-15 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (657, 26, 2, '2025-10-15', '2025-10-15 14:00:00', '2025-10-15 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (658, 8, 6, '2025-10-16', '2025-10-16 08:00:00', '2025-10-16 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (659, 10, 5, '2025-10-16', '2025-10-16 10:00:00', '2025-10-16 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (660, 12, 6, '2025-10-16', '2025-10-16 08:00:00', '2025-10-16 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (661, 14, 4, '2025-10-16', '2025-10-16 06:00:00', '2025-10-16 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (662, 16, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (663, 18, 4, '2025-10-16', '2025-10-16 06:00:00', '2025-10-16 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (664, 20, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (665, 22, 2, '2025-10-16', '2025-10-16 14:00:00', '2025-10-16 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (666, 24, 3, '2025-10-16', '2025-10-16 22:00:00', '2025-10-16 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (667, 26, 2, '2025-10-16', '2025-10-16 14:00:00', '2025-10-16 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (668, 10, 5, '2025-10-17', '2025-10-17 10:00:00', '2025-10-17 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (669, 12, 6, '2025-10-17', '2025-10-17 08:00:00', '2025-10-17 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (670, 16, 3, '2025-10-17', '2025-10-17 22:00:00', '2025-10-17 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (671, 18, 4, '2025-10-17', '2025-10-17 06:00:00', '2025-10-17 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (672, 22, 2, '2025-10-17', '2025-10-17 14:00:00', '2025-10-17 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (673, 24, 3, '2025-10-17', '2025-10-17 22:00:00', '2025-10-17 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (674, 10, 5, '2025-10-20', '2025-10-20 10:00:00', '2025-10-20 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (675, 12, 6, '2025-10-20', '2025-10-20 08:00:00', '2025-10-20 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (676, 16, 3, '2025-10-20', '2025-10-20 22:00:00', '2025-10-20 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (677, 18, 4, '2025-10-20', '2025-10-20 06:00:00', '2025-10-20 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (678, 22, 2, '2025-10-20', '2025-10-20 14:00:00', '2025-10-20 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (679, 24, 3, '2025-10-20', '2025-10-20 22:00:00', '2025-10-20 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (680, 8, 6, '2025-10-21', '2025-10-21 08:00:00', '2025-10-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (681, 10, 5, '2025-10-21', '2025-10-21 10:00:00', '2025-10-21 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (682, 12, 6, '2025-10-21', '2025-10-21 08:00:00', '2025-10-21 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (683, 14, 4, '2025-10-21', '2025-10-21 06:00:00', '2025-10-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (684, 16, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (685, 18, 4, '2025-10-21', '2025-10-21 06:00:00', '2025-10-21 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (686, 20, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (687, 22, 2, '2025-10-21', '2025-10-21 14:00:00', '2025-10-21 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (688, 24, 3, '2025-10-21', '2025-10-21 22:00:00', '2025-10-21 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (689, 26, 2, '2025-10-21', '2025-10-21 14:00:00', '2025-10-21 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (690, 8, 6, '2025-10-22', '2025-10-22 08:00:00', '2025-10-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (691, 10, 5, '2025-10-22', '2025-10-22 10:00:00', '2025-10-22 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (692, 12, 6, '2025-10-22', '2025-10-22 08:00:00', '2025-10-22 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (693, 14, 4, '2025-10-22', '2025-10-22 06:00:00', '2025-10-22 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (694, 16, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (695, 18, 4, '2025-10-22', '2025-10-22 06:00:00', '2025-10-22 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (696, 20, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (697, 22, 2, '2025-10-22', '2025-10-22 14:00:00', '2025-10-22 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (698, 24, 3, '2025-10-22', '2025-10-22 22:00:00', '2025-10-22 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (699, 26, 2, '2025-10-22', '2025-10-22 14:00:00', '2025-10-22 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (700, 8, 6, '2025-10-23', '2025-10-23 08:00:00', '2025-10-23 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (701, 10, 5, '2025-10-23', '2025-10-23 10:00:00', '2025-10-23 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (702, 12, 6, '2025-10-23', '2025-10-23 08:00:00', '2025-10-23 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (703, 14, 4, '2025-10-23', '2025-10-23 06:00:00', '2025-10-23 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (704, 16, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (705, 18, 4, '2025-10-23', '2025-10-23 06:00:00', '2025-10-23 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (706, 20, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (707, 22, 2, '2025-10-23', '2025-10-23 14:00:00', '2025-10-23 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (708, 24, 3, '2025-10-23', '2025-10-23 22:00:00', '2025-10-23 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (709, 26, 2, '2025-10-23', '2025-10-23 14:00:00', '2025-10-23 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (710, 8, 6, '2025-10-24', '2025-10-24 08:00:00', '2025-10-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (711, 10, 5, '2025-10-24', '2025-10-24 10:00:00', '2025-10-24 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (712, 12, 6, '2025-10-24', '2025-10-24 08:00:00', '2025-10-24 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (713, 14, 4, '2025-10-24', '2025-10-24 06:00:00', '2025-10-24 10:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (714, 16, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (715, 18, 4, '2025-10-24', '2025-10-24 06:00:00', '2025-10-24 06:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (716, 20, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (717, 22, 2, '2025-10-24', '2025-10-24 14:00:00', '2025-10-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (718, 24, 3, '2025-10-24', '2025-10-24 22:00:00', '2025-10-24 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (719, 26, 2, '2025-10-24', '2025-10-24 14:00:00', '2025-10-24 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (720, 8, 6, '2025-10-27', '2025-10-27 08:00:00', '2025-10-27 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (721, 10, 5, '2025-10-27', '2025-10-27 10:00:00', '2025-10-27 14:00:00', 1.00, 3.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (722, 12, 6, '2025-10-27', '2025-10-27 08:00:00', '2025-10-27 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (723, 14, 4, '2025-10-27', '2025-10-27 06:00:00', '2025-10-27 15:30:00', 1.00, 8.50, 1.50, 29.22, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (724, 16, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (725, 18, 4, '2025-10-27', '2025-10-27 06:00:00', '2025-10-27 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (726, 20, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (727, 22, 2, '2025-10-27', '2025-10-27 14:00:00', '2025-10-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (728, 24, 3, '2025-10-27', '2025-10-27 22:00:00', '2025-10-27 07:30:00', 0.00, 9.50, 2.50, 67.75, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (729, 26, 2, '2025-10-27', '2025-10-27 14:00:00', '2025-10-27 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (730, 8, 6, '2025-10-28', '2025-10-28 08:00:00', '2025-10-28 12:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (731, 10, 5, '2025-10-28', '2025-10-28 10:00:00', '2025-10-28 10:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (732, 12, 6, '2025-10-28', '2025-10-28 08:00:00', '2025-10-28 17:30:00', 1.00, 8.50, 1.50, 28.59, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (733, 14, 4, '2025-10-28', '2025-10-28 06:00:00', '2025-10-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (734, 16, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (735, 18, 4, '2025-10-28', '2025-10-28 06:00:00', '2025-10-28 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (736, 20, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (737, 22, 2, '2025-10-28', '2025-10-28 14:00:00', '2025-10-28 23:30:00', 1.00, 8.50, 1.50, 70.34, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (738, 24, 3, '2025-10-28', '2025-10-28 22:00:00', '2025-10-28 06:00:00', 0.00, 8.00, 1.00, 27.10, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (739, 26, 2, '2025-10-28', '2025-10-28 14:00:00', '2025-10-28 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (740, 8, 6, '2025-10-29', '2025-10-29 08:00:00', '2025-10-29 08:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (741, 10, 5, '2025-10-29', '2025-10-29 10:00:00', '2025-10-29 19:30:00', 1.00, 8.50, 1.50, 46.47, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (742, 12, 6, '2025-10-29', '2025-10-29 08:00:00', '2025-10-29 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (743, 14, 4, '2025-10-29', '2025-10-29 06:00:00', '2025-10-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (744, 16, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (745, 18, 4, '2025-10-29', '2025-10-29 06:00:00', '2025-10-29 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (746, 20, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 07:30:00', 0.00, 9.50, 2.50, 54.35, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (747, 22, 2, '2025-10-29', '2025-10-29 14:00:00', '2025-10-29 22:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (748, 24, 3, '2025-10-29', '2025-10-29 22:00:00', '2025-10-29 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (749, 26, 2, '2025-10-29', '2025-10-29 14:00:00', '2025-10-29 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (750, 8, 6, '2025-10-30', '2025-10-30 08:00:00', '2025-10-30 17:30:00', 1.00, 8.50, 1.50, 69.71, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (751, 10, 5, '2025-10-30', '2025-10-30 10:00:00', '2025-10-30 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (752, 12, 6, '2025-10-30', '2025-10-30 08:00:00', '2025-10-30 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (753, 14, 4, '2025-10-30', '2025-10-30 06:00:00', '2025-10-30 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (754, 16, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 06:00:00', 0.00, 8.00, 1.00, 27.83, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (755, 18, 4, '2025-10-30', '2025-10-30 06:00:00', '2025-10-30 15:30:00', 1.00, 8.50, 1.50, 22.89, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (756, 20, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 06:00:00', 0.00, 8.00, 1.00, 21.74, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (757, 22, 2, '2025-10-30', '2025-10-30 14:00:00', '2025-10-30 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (758, 24, 3, '2025-10-30', '2025-10-30 22:00:00', '2025-10-30 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (759, 26, 2, '2025-10-30', '2025-10-30 14:00:00', '2025-10-30 14:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (760, 8, 6, '2025-10-31', '2025-10-31 08:00:00', '2025-10-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (761, 10, 5, '2025-10-31', '2025-10-31 10:00:00', '2025-10-31 18:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (762, 12, 6, '2025-10-31', '2025-10-31 08:00:00', '2025-10-31 16:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (763, 14, 4, '2025-10-31', '2025-10-31 06:00:00', '2025-10-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (764, 16, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 07:30:00', 0.00, 9.50, 2.50, 69.58, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (765, 18, 4, '2025-10-31', '2025-10-31 06:00:00', '2025-10-31 14:00:00', 1.00, 7.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (766, 20, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 02:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (767, 22, 2, '2025-10-31', '2025-10-31 14:00:00', '2025-10-31 18:00:00', 0.00, 4.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'half day', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (768, 24, 3, '2025-10-31', '2025-10-31 22:00:00', '2025-10-31 22:00:00', 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'absent', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (769, 26, 2, '2025-10-31', '2025-10-31 14:00:00', '2025-10-31 23:30:00', 1.00, 8.50, 1.50, 58.01, 0.00, 0.00, 0.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', 'Demo attendance record', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (770, 71, 55, '2026-02-07', '2026-02-07 12:00:00', '2026-02-07 19:00:00', 0.00, 7.00, 0.00, 0.00, 12.00, 0.00, 7.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-26 22:47:40'), (771, 71, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-26 22:39:52'), (772, 71, 86, '2026-01-14', '2026-01-14 15:12:00', '2026-01-15 00:30:00', 0.00, 9.30, 0.30, 0.00, 0.00, 0.00, 9.30, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-26 22:39:52'), (773, 71, 90, '2026-01-16', '2026-01-16 17:21:00', '2026-01-17 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-26 22:39:52'), (774, 71, 90, '2026-01-17', '2026-01-17 17:21:00', '2026-01-18 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-26 22:39:52'), (775, 71, 86, '2026-01-19', '2026-01-19 14:29:00', '2026-01-20 00:30:00', 0.00, 10.02, 1.02, 0.00, 0.00, 0.00, 10.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-26 22:39:52'), (776, 71, 86, '2026-01-20', '2026-01-20 15:13:00', '2026-01-21 00:30:00', 0.00, 9.28, 0.28, 0.00, 0.00, 0.00, 9.28, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-26 22:39:52'), (777, 71, 86, '2026-01-21', '2026-01-21 14:51:00', '2026-01-22 00:30:00', 0.00, 9.65, 0.65, 0.00, 0.00, 0.00, 9.65, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-26 22:39:52'), (778, 71, 90, '2026-01-23', '2026-01-23 17:11:00', '2026-01-24 02:30:00', 0.00, 9.32, 0.32, 0.00, 0.00, 0.00, 9.32, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-26 22:39:52'), (779, 72, 86, '2026-01-12', '2026-01-12 15:24:00', '2026-01-13 00:30:00', 0.00, 9.10, 0.10, 0.00, 0.00, 0.00, 9.10, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (780, 75, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (781, 76, 86, '2026-01-12', '2026-01-12 15:23:00', '2026-01-13 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (782, 77, 71, '2026-01-12', '2026-01-12 07:54:00', '2026-01-12 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), (783, 72, 86, '2026-01-13', '2026-01-13 15:17:00', '2026-01-14 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (784, 74, 86, '2026-01-13', '2026-01-13 15:26:00', '2026-01-14 00:30:00', 0.00, 9.07, 0.07, 0.00, 0.00, 0.00, 9.07, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (785, 75, 86, '2026-01-13', '2026-01-13 15:15:00', '2026-01-14 00:30:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (786, 76, 86, '2026-01-13', '2026-01-13 15:28:00', '2026-01-14 00:30:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (787, 77, 71, '2026-01-13', '2026-01-13 07:54:00', '2026-01-13 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), (788, 73, 86, '2026-01-14', '2026-01-14 15:23:00', '2026-01-15 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (789, 74, 90, '2026-01-14', '2026-01-14 17:24:00', '2026-01-15 02:31:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-11 10:16:54'), (790, 75, 86, '2026-01-14', '2026-01-14 15:25:00', '2026-01-15 00:30:00', 0.00, 9.08, 0.08, 0.00, 0.00, 0.00, 9.08, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (791, 77, 71, '2026-01-14', '2026-01-14 08:14:00', '2026-01-14 17:03:00', 0.00, 8.82, 0.00, 0.00, 0.23, 0.00, 8.82, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-03-10 08:28:40'), (792, 78, 86, '2026-01-14', '2026-01-14 15:16:00', '2026-01-15 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (793, 79, 86, '2026-01-14', '2026-01-14 15:05:00', '2026-01-15 00:31:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (794, 73, 86, '2026-01-15', '2026-01-15 15:14:00', '2026-01-16 00:30:00', 0.00, 9.27, 0.27, 0.00, 0.00, 0.00, 9.27, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (795, 75, 86, '2026-01-15', '2026-01-15 15:23:00', '2026-01-16 00:31:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (796, 78, 86, '2026-01-15', '2026-01-15 15:23:00', '2026-01-16 00:32:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (797, 79, 86, '2026-01-15', '2026-01-15 15:16:00', '2026-01-16 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (798, 72, 86, '2026-01-16', '2026-01-16 15:27:00', '2026-01-17 00:34:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (799, 73, 86, '2026-01-16', '2026-01-16 15:09:00', '2026-01-17 00:32:00', 0.00, 9.38, 0.38, 0.00, 0.00, 0.00, 9.38, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (800, 75, 90, '2026-01-16', '2026-01-16 17:16:00', '2026-01-17 02:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (801, 76, 90, '2026-01-16', '2026-01-16 17:21:00', '2026-01-17 02:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (802, 77, 71, '2026-01-16', '2026-01-16 07:54:00', '2026-01-16 17:06:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:53'), (803, 78, 86, '2026-01-16', '2026-01-16 15:18:00', '2026-01-17 00:33:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (804, 79, 90, '2026-01-16', '2026-01-16 16:45:00', '2026-01-17 02:30:00', 0.00, 9.75, 0.75, 0.00, 0.00, 0.00, 9.75, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:00', '2026-02-26 22:39:52'), (805, 75, 86, '2026-01-19', '2026-01-19 15:19:00', '2026-01-20 00:30:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (806, 78, 86, '2026-01-19', '2026-01-19 15:20:00', '2026-01-20 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (807, 74, 86, '2026-01-20', '2026-01-20 15:23:00', '2026-01-21 12:30:00', 0.00, 21.12, 12.12, 0.00, 0.00, 0.00, 21.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (808, 75, 86, '2026-01-20', '2026-01-20 15:20:00', '2026-01-21 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (809, 76, 86, '2026-01-20', '2026-01-20 15:22:00', '2026-01-21 00:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (810, 77, 71, '2026-01-20', '2026-01-20 07:51:00', '2026-01-20 17:05:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (811, 73, 86, '2026-01-21', '2026-01-21 15:30:00', '2026-01-22 12:30:00', 0.00, 21.00, 12.00, 0.00, 0.00, 0.00, 21.00, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (812, 74, 86, '2026-01-21', '2026-01-21 15:29:00', '2026-01-22 00:30:00', 0.00, 9.02, 0.02, 0.00, 0.00, 0.00, 9.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (813, 75, 86, '2026-01-21', '2026-01-21 15:13:00', '2026-01-21 22:31:00', 0.00, 7.30, 0.00, 0.00, 0.00, 1.98, 7.30, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (814, 77, 71, '2026-01-21', '2026-01-21 07:59:00', '2026-01-21 17:01:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (815, 78, 86, '2026-01-21', '2026-01-21 15:16:00', '2026-01-22 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 0.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (816, 79, 86, '2026-01-21', '2026-01-21 14:51:00', '2026-01-22 00:30:00', 0.00, 9.65, 0.65, 0.00, 0.00, 0.00, 9.65, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (817, 74, 86, '2026-01-22', '2026-01-22 15:26:00', '2026-01-23 00:31:00', 0.00, 9.08, 0.08, 0.00, 0.00, 0.00, 9.08, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (818, 75, 86, '2026-01-22', '2026-01-22 15:21:00', '2026-01-23 00:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (819, 77, 71, '2026-01-22', '2026-01-22 07:58:00', '2026-01-22 17:08:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (820, 78, 86, '2026-01-22', '2026-01-22 15:24:00', '2026-01-23 00:30:00', 0.00, 9.10, 0.10, 0.00, 0.00, 0.00, 9.10, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (821, 79, 86, '2026-01-22', '2026-01-22 15:05:00', '2026-01-23 00:30:00', 0.00, 9.42, 0.42, 0.00, 0.00, 0.00, 9.42, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (822, 72, 86, '2026-01-23', '2026-01-23 15:57:00', '2026-01-24 00:34:00', 0.00, 8.62, 0.00, 0.00, 0.45, 0.00, 8.62, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (823, 73, 86, '2026-01-23', '2026-01-23 15:17:00', '2026-01-24 00:32:00', 0.00, 9.25, 0.25, 0.00, 0.00, 0.00, 9.25, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (824, 74, 90, '2026-01-23', '2026-01-23 17:29:00', '2026-01-24 02:30:00', 0.00, 9.02, 0.02, 0.00, 0.00, 0.00, 9.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (825, 75, 90, '2026-01-23', '2026-01-23 17:01:00', '2026-01-24 02:30:00', 0.00, 9.48, 0.48, 0.00, 0.00, 0.00, 9.48, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (826, 76, 86, '2026-01-23', '2026-01-23 15:21:00', '2026-01-24 00:32:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:53'), (827, 78, 90, '2026-01-23', '2026-01-23 17:04:00', '2026-01-24 02:30:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (828, 79, 90, '2026-01-23', '2026-01-23 17:05:00', '2026-01-24 02:30:00', 0.00, 9.42, 0.42, 0.00, 0.00, 0.00, 9.42, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:01:01', '2026-02-26 22:39:52'), (829, 79, 86, '2026-01-11', '2026-01-11 15:03:00', '2026-01-12 00:30:00', 0.00, 9.45, 0.45, 0.00, 0.00, 0.00, 9.45, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-26 22:39:52'), (830, 79, 90, '2026-01-17', '2026-01-17 17:04:00', '2026-01-18 02:30:00', 0.00, 9.43, 0.43, 0.00, 0.00, 0.00, 9.43, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-26 22:39:52'), (831, 79, 86, '2026-01-18', '2026-01-18 15:17:00', '2026-01-19 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-26 22:39:52'), (832, 79, 90, '2026-01-24', '2026-01-24 17:10:00', '2026-01-25 02:30:00', 0.00, 9.33, 0.33, 0.00, 0.00, 0.00, 9.33, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-26 22:39:52'), (833, 79, 86, '2026-01-25', '2026-01-25 14:53:00', '2026-01-26 00:30:00', 0.00, 9.62, 0.62, 0.00, 0.00, 0.00, 9.62, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-26 22:39:52'), (834, 72, 86, '2026-01-11', '2026-01-11 15:20:00', '2026-01-12 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-26 22:39:52'), (835, 72, 86, '2026-01-17', '2026-01-17 15:25:00', '2026-01-17 21:39:00', 0.00, 6.23, 0.00, 0.00, 0.00, 2.85, 6.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-26 22:39:52'), (836, 72, 86, '2026-01-24', '2026-01-24 15:18:00', '2026-01-25 00:30:00', 0.00, 9.20, 0.20, 0.00, 0.00, 0.00, 9.20, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-26 22:39:52'), (837, 72, 86, '2026-01-25', '2026-01-25 15:28:00', '2026-01-26 00:30:00', 0.00, 9.03, 0.03, 0.00, 0.00, 0.00, 9.03, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-26 22:39:52'), (838, 76, 86, '2026-01-11', '2026-01-11 15:23:00', '2026-01-12 00:30:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-26 22:39:53'), (839, 76, 90, '2026-01-17', '2026-01-17 17:26:00', '2026-01-18 02:30:00', 0.00, 9.07, 0.07, 0.00, 0.00, 0.00, 9.07, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-26 22:39:53'), (840, 76, 86, '2026-01-18', '2026-01-18 15:22:00', '2026-01-19 00:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-26 22:39:53'), (841, 76, 86, '2026-01-24', '2026-01-24 15:20:00', '2026-01-25 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-26 22:39:53'), (842, 76, 86, '2026-01-25', '2026-01-25 15:20:00', '2026-01-26 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-26 22:39:53'); INSERT INTO `attendances` (`id`, `employee_id`, `shift_id`, `date`, `clock_in`, `clock_out`, `break_hour`, `total_hour`, `overtime_hours`, `overtime_amount`, `late_hours`, `early_hours`, `working_hours`, `is_holiday`, `is_weekend`, `is_half_day`, `late_reason`, `early_checkout_reason`, `approved_by_id`, `approved_at`, `status`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (843, 74, 90, '2026-01-17', '2026-01-17 17:27:00', '2026-01-18 02:30:00', 0.00, 9.05, 0.05, 0.00, 0.00, 0.00, 9.05, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-26 22:39:52'), (844, 74, 90, '2026-01-24', '2026-01-24 17:29:00', '2026-01-25 00:30:00', 0.00, 7.02, 0.00, 0.00, 0.00, 2.00, 7.02, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-26 22:39:53'), (845, 78, 86, '2026-01-17', '2026-01-17 15:25:00', '2026-01-18 00:32:00', 0.00, 9.12, 0.12, 0.00, 0.00, 0.00, 9.12, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-26 22:39:52'), (846, 78, 86, '2026-01-18', '2026-01-18 15:20:00', '2026-01-19 00:30:00', 0.00, 9.17, 0.17, 0.00, 0.00, 0.00, 9.17, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-26 22:39:52'), (847, 78, 90, '2026-01-24', '2026-01-24 15:16:00', '2026-01-25 00:30:00', 0.00, 9.23, 0.23, 0.00, 0.00, 2.00, 9.23, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), (848, 73, 86, '2026-01-11', '2026-01-11 15:21:00', '2026-01-12 00:30:00', 0.00, 9.15, 0.15, 0.00, 0.00, 0.00, 9.15, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-26 22:39:52'), (849, 73, 86, '2026-01-18', '2026-01-18 15:20:00', '2026-01-19 00:31:00', 0.00, 9.18, 0.18, 0.00, 0.00, 0.00, 9.18, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-26 22:39:52'), (850, 73, 90, '2026-01-24', '2026-01-24 17:22:00', '2026-01-25 02:30:00', 0.00, 9.13, 0.13, 0.00, 0.00, 0.00, 9.13, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-26 22:39:52'), (851, 73, 86, '2026-01-25', '2026-01-25 15:17:00', '2026-01-26 00:30:00', 0.00, 9.22, 0.22, 0.00, 0.00, 0.00, 9.22, 0, 0, 0, NULL, NULL, NULL, NULL, 'present', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-26 22:39:52'); -- -------------------------------------------------------- -- -- Table structure for table `attendance_logs` -- CREATE TABLE `attendance_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `attendance_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `time` time DEFAULT NULL, `logged_at` datetime NOT NULL, `type` varchar(255) NOT NULL, `shift_id` bigint(20) UNSIGNED DEFAULT NULL, `break_type` varchar(255) DEFAULT NULL, `break_duration` int(11) DEFAULT NULL, `latitude` decimal(10,7) DEFAULT NULL, `longitude` decimal(10,7) DEFAULT NULL, `source` varchar(255) DEFAULT NULL, `notes` text DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `attendance_logs` -- INSERT INTO `attendance_logs` (`id`, `attendance_id`, `user_id`, `date`, `time`, `logged_at`, `type`, `shift_id`, `break_type`, `break_duration`, `latitude`, `longitude`, `source`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 770, 71, '2026-02-07', NULL, '2026-02-07 12:00:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-07 11:19:56'), (2, 770, 71, '2026-02-07', NULL, '2026-02-07 12:00:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-07 11:19:56', '2026-02-07 11:19:56'), (3, 771, 71, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-09 13:48:37'), (4, 771, 71, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:48:37', '2026-02-09 13:48:37'), (5, 772, 71, '2026-01-14', NULL, '2026-01-14 15:12:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-09 13:49:13'), (6, 772, 71, '2026-01-14', NULL, '2026-01-14 15:12:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:13', '2026-02-09 13:49:13'), (7, 773, 71, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-09 13:49:50'), (8, 773, 71, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:49:50', '2026-02-09 13:49:50'), (9, 774, 71, '2026-01-17', NULL, '2026-01-17 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-09 13:51:45'), (10, 774, 71, '2026-01-17', NULL, '2026-01-17 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:51:45', '2026-02-09 13:51:45'), (11, 775, 71, '2026-01-19', NULL, '2026-01-19 14:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-09 13:53:14'), (12, 775, 71, '2026-01-19', NULL, '2026-01-19 14:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:14', '2026-02-09 13:53:14'), (13, 776, 71, '2026-01-20', NULL, '2026-01-20 15:13:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-09 13:53:50'), (14, 776, 71, '2026-01-20', NULL, '2026-01-20 15:13:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:53:50', '2026-02-09 13:53:50'), (15, 777, 71, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-09 13:54:26'), (16, 777, 71, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:54:26', '2026-02-09 13:54:26'), (17, 778, 71, '2026-01-23', NULL, '2026-01-23 17:11:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-09 13:55:16'), (18, 778, 71, '2026-01-23', NULL, '2026-01-23 17:11:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 13:55:16', '2026-02-09 13:55:16'), (19, 780, 75, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:09:29', '2026-02-09 14:09:29'), (20, 780, 75, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:09:29', '2026-02-09 14:09:29'), (21, 785, 75, '2026-01-13', NULL, '2026-01-13 15:15:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:02', '2026-02-09 14:10:02'), (22, 785, 75, '2026-01-13', NULL, '2026-01-13 15:15:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:02', '2026-02-09 14:10:02'), (23, 790, 75, '2026-01-14', NULL, '2026-01-14 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:32', '2026-02-09 14:10:32'), (24, 790, 75, '2026-01-14', NULL, '2026-01-14 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:10:32', '2026-02-09 14:10:32'), (25, 795, 75, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:11:34', '2026-02-09 14:11:34'), (26, 795, 75, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:11:34', '2026-02-09 14:11:34'), (27, 800, 75, '2026-01-16', NULL, '2026-01-16 17:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:01', '2026-02-09 14:12:01'), (28, 800, 75, '2026-01-16', NULL, '2026-01-16 17:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:01', '2026-02-09 14:12:01'), (29, 805, 75, '2026-01-19', NULL, '2026-01-19 15:19:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:33', '2026-02-09 14:12:33'), (30, 805, 75, '2026-01-19', NULL, '2026-01-19 15:19:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:12:33', '2026-02-09 14:12:33'), (31, 808, 75, '2026-01-20', NULL, '2026-01-20 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:13:15', '2026-02-09 14:13:15'), (32, 808, 75, '2026-01-20', NULL, '2026-01-20 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:13:15', '2026-02-09 14:13:15'), (33, 813, 75, '2026-01-21', NULL, '2026-01-21 15:13:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:10', '2026-02-09 14:14:10'), (34, 813, 75, '2026-01-21', NULL, '2026-01-21 15:13:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:10', '2026-02-09 14:14:10'), (35, 818, 75, '2026-01-22', NULL, '2026-01-22 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:45', '2026-02-09 14:14:45'), (36, 818, 75, '2026-01-22', NULL, '2026-01-22 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:14:45', '2026-02-09 14:14:45'), (37, 825, 75, '2026-01-23', NULL, '2026-01-23 17:01:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:15:32', '2026-02-09 14:15:32'), (38, 825, 75, '2026-01-23', NULL, '2026-01-23 17:01:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:15:32', '2026-02-09 14:15:32'), (39, 829, 79, '2026-01-11', NULL, '2026-01-11 15:03:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-09 14:18:45'), (40, 829, 79, '2026-01-11', NULL, '2026-01-11 15:03:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:18:45', '2026-02-09 14:18:45'), (41, 793, 79, '2026-01-14', NULL, '2026-01-14 15:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:25', '2026-02-09 14:19:25'), (42, 793, 79, '2026-01-14', NULL, '2026-01-14 15:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:25', '2026-02-09 14:19:25'), (43, 797, 79, '2026-01-15', NULL, '2026-01-15 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:55', '2026-02-09 14:19:55'), (44, 797, 79, '2026-01-15', NULL, '2026-01-15 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:19:55', '2026-02-09 14:19:55'), (45, 804, 79, '2026-01-16', NULL, '2026-01-16 16:45:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:20:38', '2026-02-09 14:20:38'), (46, 804, 79, '2026-01-16', NULL, '2026-01-16 16:45:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:20:38', '2026-02-09 14:20:38'), (47, 830, 79, '2026-01-17', NULL, '2026-01-17 17:04:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-09 14:21:13'), (48, 830, 79, '2026-01-17', NULL, '2026-01-17 17:04:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:13', '2026-02-09 14:21:13'), (49, 831, 79, '2026-01-18', NULL, '2026-01-18 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-09 14:21:50'), (50, 831, 79, '2026-01-18', NULL, '2026-01-18 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:21:50', '2026-02-09 14:21:50'), (51, 816, 79, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:25', '2026-02-09 14:22:25'), (52, 816, 79, '2026-01-21', NULL, '2026-01-21 14:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:25', '2026-02-09 14:22:25'), (53, 821, 79, '2026-01-22', NULL, '2026-01-22 15:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:59', '2026-02-09 14:22:59'), (54, 821, 79, '2026-01-22', NULL, '2026-01-22 15:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:22:59', '2026-02-09 14:22:59'), (55, 828, 79, '2026-01-23', NULL, '2026-01-23 17:05:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:23:29', '2026-02-09 14:23:29'), (56, 828, 79, '2026-01-23', NULL, '2026-01-23 17:05:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:23:29', '2026-02-09 14:23:29'), (57, 832, 79, '2026-01-24', NULL, '2026-01-24 17:10:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-09 14:24:08'), (58, 832, 79, '2026-01-24', NULL, '2026-01-24 17:10:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:08', '2026-02-09 14:24:08'), (59, 833, 79, '2026-01-25', NULL, '2026-01-25 14:53:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-09 14:24:53'), (60, 833, 79, '2026-01-25', NULL, '2026-01-25 14:53:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:24:53', '2026-02-09 14:24:53'), (61, 834, 72, '2026-01-11', NULL, '2026-01-11 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-09 14:32:56'), (62, 834, 72, '2026-01-11', NULL, '2026-01-11 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:32:56', '2026-02-09 14:32:56'), (63, 779, 72, '2026-01-12', NULL, '2026-01-12 15:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:33:32', '2026-02-09 14:33:32'), (64, 779, 72, '2026-01-12', NULL, '2026-01-12 15:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:33:32', '2026-02-09 14:33:32'), (65, 783, 72, '2026-01-13', NULL, '2026-01-13 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:13', '2026-02-09 14:34:13'), (66, 783, 72, '2026-01-13', NULL, '2026-01-13 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:13', '2026-02-09 14:34:13'), (67, 798, 72, '2026-01-16', NULL, '2026-01-16 15:27:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:43', '2026-02-09 14:34:43'), (68, 798, 72, '2026-01-16', NULL, '2026-01-16 15:27:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:34:43', '2026-02-09 14:34:43'), (69, 835, 72, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-09 14:35:19'), (70, 835, 72, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:19', '2026-02-09 14:35:19'), (71, 822, 72, '2026-01-23', NULL, '2026-01-23 15:57:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:58', '2026-02-09 14:35:58'), (72, 822, 72, '2026-01-23', NULL, '2026-01-23 15:57:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:35:58', '2026-02-09 14:35:58'), (73, 836, 72, '2026-01-24', NULL, '2026-01-24 15:18:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-09 14:36:25'), (74, 836, 72, '2026-01-24', NULL, '2026-01-24 15:18:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:25', '2026-02-09 14:36:25'), (75, 837, 72, '2026-01-25', NULL, '2026-01-25 15:28:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-09 14:36:58'), (76, 837, 72, '2026-01-25', NULL, '2026-01-25 15:28:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-09 14:36:58', '2026-02-09 14:36:58'), (77, 838, 76, '2026-01-11', NULL, '2026-01-11 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-18 15:40:32'), (78, 838, 76, '2026-01-11', NULL, '2026-01-11 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:40:32', '2026-02-18 15:40:32'), (79, 781, 76, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:11', '2026-02-18 15:41:11'), (80, 781, 76, '2026-01-12', NULL, '2026-01-12 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:11', '2026-02-18 15:41:11'), (81, 786, 76, '2026-01-13', NULL, '2026-01-13 15:28:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:38', '2026-02-18 15:41:38'), (82, 786, 76, '2026-01-13', NULL, '2026-01-13 15:28:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:41:38', '2026-02-18 15:41:38'), (83, 801, 76, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:08', '2026-02-18 15:42:08'), (84, 801, 76, '2026-01-16', NULL, '2026-01-16 17:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:08', '2026-02-18 15:42:08'), (85, 839, 76, '2026-01-17', NULL, '2026-01-17 17:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-18 15:42:40'), (86, 839, 76, '2026-01-17', NULL, '2026-01-17 17:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:42:40', '2026-02-18 15:42:40'), (87, 840, 76, '2026-01-18', NULL, '2026-01-18 15:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-18 15:44:16'), (88, 840, 76, '2026-01-18', NULL, '2026-01-18 15:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:16', '2026-02-18 15:44:16'), (89, 809, 76, '2026-01-20', NULL, '2026-01-20 15:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:50', '2026-02-18 15:44:50'), (90, 809, 76, '2026-01-20', NULL, '2026-01-20 15:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:44:50', '2026-02-18 15:44:50'), (91, 826, 76, '2026-01-23', NULL, '2026-01-23 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:45:37', '2026-02-18 15:45:37'), (92, 826, 76, '2026-01-23', NULL, '2026-01-23 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:45:37', '2026-02-18 15:45:37'), (93, 841, 76, '2026-01-24', NULL, '2026-01-24 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-18 15:46:40'), (94, 841, 76, '2026-01-24', NULL, '2026-01-24 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:46:40', '2026-02-18 15:46:40'), (95, 842, 76, '2026-01-25', NULL, '2026-01-25 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-18 15:47:06'), (96, 842, 76, '2026-01-25', NULL, '2026-01-25 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-18 15:47:06', '2026-02-18 15:47:06'), (97, 784, 74, '2026-01-13', NULL, '2026-01-13 15:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:30:40', '2026-02-20 09:30:40'), (98, 784, 74, '2026-01-13', NULL, '2026-01-13 15:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:30:40', '2026-02-20 09:30:40'), (99, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:27', '2026-02-20 09:31:28'), (100, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:27', '2026-02-20 09:31:28'), (101, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:28', '2026-02-20 09:31:28'), (102, 789, 74, '2026-01-14', NULL, '2026-01-14 17:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:31:28', '2026-02-20 09:31:28'), (103, 843, 74, '2026-01-17', NULL, '2026-01-17 17:27:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-20 09:32:11'), (104, 843, 74, '2026-01-17', NULL, '2026-01-17 17:27:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:11', '2026-02-20 09:32:11'), (105, 807, 74, '2026-01-20', NULL, '2026-01-20 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:53', '2026-02-20 09:32:53'), (106, 807, 74, '2026-01-20', NULL, '2026-01-20 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:32:53', '2026-02-20 09:32:53'), (107, 812, 74, '2026-01-21', NULL, '2026-01-21 15:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:34:11', '2026-02-20 09:34:11'), (108, 812, 74, '2026-01-21', NULL, '2026-01-21 15:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:34:11', '2026-02-20 09:34:11'), (109, 817, 74, '2026-01-22', NULL, '2026-01-22 15:26:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:35:24', '2026-02-20 09:35:24'), (110, 817, 74, '2026-01-22', NULL, '2026-01-22 15:26:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:35:24', '2026-02-20 09:35:24'), (111, 824, 74, '2026-01-23', NULL, '2026-01-23 17:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:36:28', '2026-02-20 09:36:28'), (112, 824, 74, '2026-01-23', NULL, '2026-01-23 17:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:36:28', '2026-02-20 09:36:28'), (113, 844, 74, '2026-01-24', NULL, '2026-01-24 17:29:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-20 09:37:11'), (114, 844, 74, '2026-01-24', NULL, '2026-01-24 17:29:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:37:11', '2026-02-20 09:37:11'), (115, 792, 78, '2026-01-14', NULL, '2026-01-14 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:39:29', '2026-02-20 09:39:29'), (116, 792, 78, '2026-01-14', NULL, '2026-01-14 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:39:29', '2026-02-20 09:39:29'), (117, 796, 78, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:01', '2026-02-20 09:40:01'), (118, 796, 78, '2026-01-15', NULL, '2026-01-15 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:01', '2026-02-20 09:40:01'), (119, 803, 78, '2026-01-16', NULL, '2026-01-16 15:18:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:34', '2026-02-20 09:40:34'), (120, 803, 78, '2026-01-16', NULL, '2026-01-16 15:18:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:40:34', '2026-02-20 09:40:34'), (121, 845, 78, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-20 09:41:14'), (122, 845, 78, '2026-01-17', NULL, '2026-01-17 15:25:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:14', '2026-02-20 09:41:14'), (123, 846, 78, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-20 09:41:48'), (124, 846, 78, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:41:48', '2026-02-20 09:41:48'), (125, 806, 78, '2026-01-19', NULL, '2026-01-19 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:08', '2026-02-20 09:43:08'), (126, 806, 78, '2026-01-19', NULL, '2026-01-19 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:08', '2026-02-20 09:43:08'), (127, 815, 78, '2026-01-21', NULL, '2026-01-21 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:42', '2026-02-20 09:43:42'), (128, 815, 78, '2026-01-21', NULL, '2026-01-21 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:43:42', '2026-02-20 09:43:42'), (129, 820, 78, '2026-01-22', NULL, '2026-01-22 15:24:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:18', '2026-02-20 09:44:18'), (130, 820, 78, '2026-01-22', NULL, '2026-01-22 15:24:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:18', '2026-02-20 09:44:18'), (131, 827, 78, '2026-01-23', NULL, '2026-01-23 17:04:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:48', '2026-02-20 09:44:48'), (132, 827, 78, '2026-01-23', NULL, '2026-01-23 17:04:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:44:48', '2026-02-20 09:44:48'), (133, 847, 78, '2026-01-24', NULL, '2026-01-24 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), (134, 847, 78, '2026-01-24', NULL, '2026-01-24 15:16:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:45:26', '2026-03-11 10:18:10'), (135, 848, 73, '2026-01-11', NULL, '2026-01-11 15:21:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-20 09:51:28'), (136, 848, 73, '2026-01-11', NULL, '2026-01-11 15:21:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:51:28', '2026-02-20 09:51:28'), (137, 788, 73, '2026-01-14', NULL, '2026-01-14 15:23:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:02', '2026-02-20 09:52:02'), (138, 788, 73, '2026-01-14', NULL, '2026-01-14 15:23:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:02', '2026-02-20 09:52:02'), (139, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:34', '2026-02-20 09:54:54'), (140, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:52:34', '2026-02-20 09:54:54'), (141, 799, 73, '2026-01-16', NULL, '2026-01-16 15:09:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:01', '2026-02-20 09:53:01'), (142, 799, 73, '2026-01-16', NULL, '2026-01-16 15:09:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:01', '2026-02-20 09:53:01'), (143, 849, 73, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-20 09:53:28'), (144, 849, 73, '2026-01-18', NULL, '2026-01-18 15:20:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:53:28', '2026-02-20 09:53:28'), (145, 811, 73, '2026-01-21', NULL, '2026-01-21 15:30:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:27', '2026-02-20 09:54:27'), (146, 811, 73, '2026-01-21', NULL, '2026-01-21 15:30:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:27', '2026-02-20 09:54:27'), (147, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:54', '2026-02-20 09:54:54'), (148, 794, 73, '2026-01-15', NULL, '2026-01-15 15:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:54:54', '2026-02-20 09:54:54'), (149, 823, 73, '2026-01-23', NULL, '2026-01-23 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:22', '2026-02-20 09:55:22'), (150, 823, 73, '2026-01-23', NULL, '2026-01-23 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:22', '2026-02-20 09:55:22'), (151, 850, 73, '2026-01-24', NULL, '2026-01-24 17:22:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-20 09:55:56'), (152, 850, 73, '2026-01-24', NULL, '2026-01-24 17:22:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:55:56', '2026-02-20 09:55:56'), (153, 851, 73, '2026-01-25', NULL, '2026-01-25 15:17:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-20 09:56:33'), (154, 851, 73, '2026-01-25', NULL, '2026-01-25 15:17:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:56:33', '2026-02-20 09:56:33'), (155, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:03', '2026-02-20 10:17:21'), (156, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:03', '2026-02-20 10:17:21'), (157, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:35', '2026-02-20 10:17:54'), (158, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:58:35', '2026-02-20 10:17:54'), (159, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:14', '2026-02-20 10:03:15'), (160, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:14', '2026-02-20 10:03:15'), (161, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:47', '2026-02-20 10:19:01'), (162, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 09:59:47', '2026-02-20 10:19:01'), (163, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:00:26', '2026-02-20 10:19:32'), (164, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:00:26', '2026-02-20 10:19:32'), (165, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:14', '2026-02-20 10:20:02'), (166, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:14', '2026-02-20 10:20:02'), (167, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:44', '2026-02-20 10:20:37'), (168, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:01:44', '2026-02-20 10:20:37'), (169, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:03:15', '2026-02-20 10:15:21'), (170, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:15:21', '2026-02-20 10:18:23'), (171, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:15:21', '2026-02-20 10:18:23'), (172, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:21', '2026-02-20 10:17:21'), (173, 782, 77, '2026-01-12', NULL, '2026-01-12 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:21', '2026-02-20 10:17:21'), (174, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:54', '2026-02-20 10:17:54'), (175, 787, 77, '2026-01-13', NULL, '2026-01-13 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:17:54', '2026-02-20 10:17:54'), (176, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:18:23', '2026-02-20 10:18:23'), (177, 791, 77, '2026-01-14', NULL, '2026-01-14 08:14:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:18:23', '2026-02-20 10:18:23'), (178, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:01', '2026-02-20 10:19:01'), (179, 802, 77, '2026-01-16', NULL, '2026-01-16 07:54:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:01', '2026-02-20 10:19:01'), (180, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:32', '2026-02-20 10:19:32'), (181, 810, 77, '2026-01-20', NULL, '2026-01-20 07:51:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:19:32', '2026-02-20 10:19:32'), (182, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:02', '2026-02-20 10:20:02'), (183, 814, 77, '2026-01-21', NULL, '2026-01-21 07:59:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:02', '2026-02-20 10:20:02'), (184, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:37', '2026-02-20 10:20:37'), (185, 819, 77, '2026-01-22', NULL, '2026-01-22 07:58:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-02-20 10:20:37', '2026-02-20 10:20:37'), (186, 847, 78, '2026-01-24', '15:16:00', '2026-01-24 15:16:00', 'check_in', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-03-11 10:18:10', '2026-03-11 10:18:10'), (187, 847, 78, '2026-01-24', '00:30:00', '2026-01-25 00:30:00', 'check_out', NULL, NULL, NULL, NULL, NULL, 'import', NULL, NULL, 58, '2026-03-11 10:18:10', '2026-03-11 10:18:10'); -- -------------------------------------------------------- -- -- Table structure for table `awards` -- CREATE TABLE `awards` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `award_type_id` bigint(20) UNSIGNED NOT NULL, `award_date` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `certificate` varchar(255) DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `awards` -- INSERT INTO `awards` (`id`, `employee_id`, `award_type_id`, `award_date`, `description`, `certificate`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 26, 15, '2026-02-12 00:00:00', 'Innovation in automation for implementing cutting-edge technologies that revolutionized traditional business processes effectively.', 'award3.png', 2, 2, '2026-02-14 16:54:48', '2026-02-14 12:05:48'), (2, 16, 10, '2026-01-18 00:00:00', 'Project management excellence for delivering critical business initiatives on time and within budget constraints.', 'award1.png', 2, 2, '2026-01-20 09:37:48', '2026-01-20 13:12:48'), (3, 22, 8, '2025-10-25 00:00:00', 'Leadership development award for successfully managing cross-functional teams and driving organizational transformation initiatives.', 'award2.png', 2, 2, '2025-10-27 17:03:48', '2025-10-27 17:17:48'), (4, 20, 7, '2025-10-20 00:00:00', 'Technical expertise recognition for mastering advanced technologies and providing innovative solutions to complex problems.', 'award1.png', 2, 2, '2025-10-22 16:06:48', '2025-10-22 08:28:48'), (5, 10, 12, '2025-11-14 00:00:00', 'Environmental sustainability award for implementing green practices and promoting corporate social responsibility programs.', 'award3.png', 2, 2, '2025-11-16 11:48:48', '2025-11-16 14:26:48'), (6, 16, 15, '2025-11-29 00:00:00', 'Vendor management recognition for negotiating favorable contracts and building strategic partnerships with suppliers.', 'award3.png', 2, 2, '2025-12-01 16:22:48', '2025-12-01 16:41:48'), (7, 20, 2, '2025-12-09 00:00:00', 'Change management leadership for successfully guiding organizational adaptation and maintaining high employee engagement.', 'award2.png', 2, 2, '2025-12-11 15:47:48', '2025-12-11 16:54:48'), (8, 14, 4, '2025-10-05 00:00:00', 'Team collaboration award for fostering positive work environment and successfully mentoring junior colleagues.', 'award1.png', 2, 2, '2025-10-07 13:12:48', '2025-10-07 16:12:48'), (9, 18, 6, '2025-10-15 00:00:00', 'Sales achievement award for exceeding quarterly targets and establishing new market penetration strategies.', 'award3.png', 2, 2, '2025-10-17 16:11:48', '2025-10-17 15:47:48'), (10, 18, 11, '2026-01-23 00:00:00', 'Strategic planning recognition for long-term vision development and successful implementation of business growth strategies.', 'award2.png', 2, 2, '2026-01-25 15:46:48', '2026-01-25 14:48:48'), (11, 10, 7, '2026-01-03 00:00:00', 'Compliance and governance excellence for ensuring regulatory requirements are consistently met across operations.', 'award1.png', 2, 2, '2026-01-05 11:27:48', '2026-01-05 13:52:48'), (12, 8, 6, '2025-12-29 00:00:00', 'Financial management recognition for cost optimization initiatives and budget management that improved departmental performance.', 'award3.png', 2, 2, '2025-12-31 14:55:48', '2025-12-31 12:12:48'), (13, 22, 13, '2026-02-02 00:00:00', 'Mentorship and coaching recognition for developing talent pipeline and fostering professional growth of team members.', 'award1.png', 2, 2, '2026-02-04 08:51:48', '2026-02-04 13:16:48'), (14, 22, 3, '2025-12-14 00:00:00', 'International business development for expanding company presence in global markets and cultural adaptation.', 'award3.png', 2, 2, '2025-12-16 11:33:48', '2025-12-16 15:21:48'), (15, 26, 10, '2025-11-04 00:00:00', 'Safety excellence award for maintaining impeccable safety records and promoting workplace safety culture.', 'award1.png', 2, 2, '2025-11-06 08:34:48', '2025-11-06 09:16:48'), (16, 20, 12, '2026-01-28 00:00:00', 'Communication excellence award for effective stakeholder management and clear information dissemination across organization.', 'award3.png', 2, 2, '2026-01-30 17:00:48', '2026-01-30 14:46:48'), (17, 12, 8, '2026-01-08 00:00:00', 'Community engagement award for representing company values and building positive public relations in society.', 'award2.png', 2, 2, '2026-01-10 15:08:48', '2026-01-10 09:49:48'), (18, 8, 11, '2025-11-09 00:00:00', 'Training and development recognition for creating comprehensive learning programs and knowledge transfer initiatives.', 'award2.png', 2, 2, '2025-11-11 17:12:48', '2025-11-11 17:19:48'), (19, 26, 5, '2025-12-24 00:00:00', 'Research and development excellence for breakthrough innovations and successful patent applications in technology.', 'award2.png', 2, 2, '2025-12-26 10:48:48', '2025-12-26 15:24:48'), (20, 12, 13, '2025-11-19 00:00:00', 'Digital transformation leadership for driving technology adoption and modernizing legacy systems across departments.', 'award1.png', 2, 2, '2025-11-21 16:36:48', '2025-11-21 09:39:48'), (21, 18, 1, '2025-12-04 00:00:00', 'Data analytics excellence for providing actionable insights that drove informed business decision-making processes.', 'award1.png', 2, 2, '2025-12-06 10:08:48', '2025-12-06 13:24:48'), (22, 24, 9, '2025-10-30 00:00:00', 'Process improvement recognition for streamlining workflows and implementing automation that enhanced productivity significantly.', 'award3.png', 2, 2, '2025-11-01 09:03:48', '2025-11-01 16:42:48'), (23, 14, 9, '2026-01-13 00:00:00', 'Diversity and inclusion leadership for creating inclusive workplace culture and promoting equal opportunities.', 'award3.png', 2, 2, '2026-01-15 16:43:48', '2026-01-15 11:25:48'), (24, 24, 4, '2025-12-19 00:00:00', 'Supply chain optimization recognition for improving efficiency and reducing operational costs through strategic planning.', 'award1.png', 2, 2, '2025-12-21 14:29:48', '2025-12-21 11:12:48'), (25, 12, 3, '2025-09-30 00:00:00', 'Customer service excellence recognition for maintaining highest satisfaction ratings and building strong client relationships.', 'award3.png', 2, 2, '2025-10-02 17:56:48', '2025-10-02 15:42:48'), (26, 14, 14, '2025-11-24 00:00:00', 'Crisis management excellence for demonstrating exceptional problem-solving skills during challenging organizational situations.', 'award2.png', 2, 2, '2025-11-26 10:04:48', '2025-11-26 13:57:48'), (27, 8, 1, '2025-09-20 00:00:00', 'Outstanding performance excellence and exceptional leadership skills demonstrated consistently throughout the evaluation period.', 'award1.png', 2, 2, '2025-09-22 14:15:48', '2025-09-22 12:49:48'), (28, 10, 2, '2025-09-25 00:00:00', 'Innovation award for developing creative solutions that significantly improved operational efficiency and cost reduction.', 'award2.png', 2, 2, '2025-09-27 13:44:48', '2025-09-27 14:16:48'), (29, 16, 5, '2025-10-10 00:00:00', 'Quality assurance excellence for maintaining zero-defect standards and implementing robust quality control processes.', 'award2.png', 2, 2, '2025-10-12 08:42:48', '2025-10-12 15:48:48'), (30, 24, 14, '2026-02-07 00:00:00', 'Operational excellence award for maintaining high standards of service delivery and continuous improvement initiatives.', 'award2.png', 2, 2, '2026-02-09 11:04:48', '2026-02-09 11:36:48'); -- -------------------------------------------------------- -- -- Table structure for table `award_types` -- CREATE TABLE `award_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` varchar(255) DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `award_types` -- INSERT INTO `award_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Employee of the Month', 'Awarded to the best performing employee each month.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 'Best Team Player', 'Recognizes outstanding collaboration and teamwork.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 'Customer Hero Award', 'For delivering exceptional customer service.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 'Innovation Champion', 'Honors employees who introduce creative solutions.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 'Leadership Excellence', 'Awarded for demonstrating strong leadership qualities.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 'Rookie of the Year', 'For the most promising new employee of the year.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 'Outstanding Attendance', 'Recognizes consistent punctuality and attendance.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 'Sales Star', 'Awarded for achieving top sales performance.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 'Excellence in Quality', 'For maintaining exceptional standards of work quality.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 'Community Contributor', 'Recognizes employees who contribute to community initiatives.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 'Tech Innovator', 'For creating or improving technology-based processes.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 'Mentor of the Year', 'For providing exceptional guidance and mentorship.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 'Best Problem Solver', 'Awarded to the employee with outstanding analytical skills.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 'Long Service Award', 'Recognizes employees for long-term dedication and service.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 'Culture Champion', 'For embodying and promoting company values consistently.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `bank_accounts` -- CREATE TABLE `bank_accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `account_number` varchar(255) NOT NULL, `account_name` varchar(255) NOT NULL, `bank_name` varchar(255) NOT NULL, `branch_name` varchar(255) DEFAULT NULL, `account_type` varchar(255) NOT NULL DEFAULT '0', `payment_gateway` varchar(255) DEFAULT NULL, `opening_balance` decimal(10,2) DEFAULT NULL, `current_balance` decimal(10,2) DEFAULT NULL, `iban` varchar(255) DEFAULT NULL, `swift_code` varchar(255) DEFAULT NULL, `routing_number` varchar(255) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 0, `gl_account_id` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bank_accounts` -- INSERT INTO `bank_accounts` (`id`, `account_number`, `account_name`, `bank_name`, `branch_name`, `account_type`, `payment_gateway`, `opening_balance`, `current_balance`, `iban`, `swift_code`, `routing_number`, `is_active`, `gl_account_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, '1234567890', 'Business Checking Account', 'Chase Bank', 'Downtown Branch', '0', 'Stripe', 500000.00, 750000.00, 'US64SVBKUS6S3300958879', 'CHASUS33', '021000021', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, '9876543210', 'Savings Account', 'Bank of America', 'Main Street Branch', '1', 'PayPal', 1000000.00, 1250000.00, 'US29NFCU0000000001001808', 'BOFAUS3N', '026009593', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, '5555666677', 'Credit Line Account', 'Wells Fargo', 'Business Center', '2', 'Square', 0.00, 2500000.00, 'US12WFBIUS6S', 'WFBIUS6S', '121000248', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, '1111222233', 'Equipment Loan Account', 'Citibank', 'Corporate Branch', '3', 'Razorpay', 2500000.00, 3500000.00, 'US33CITIUS33', 'CITIUS33', '021000089', 1, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, '7777888899', 'Petty Cash Account', 'TD Bank', 'Local Branch', '0', NULL, 10000.00, 85000.00, 'US44TDBUS33', 'TDBKUS33', '031201360', 0, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `bank_transactions` -- CREATE TABLE `bank_transactions` ( `id` bigint(20) UNSIGNED NOT NULL, `bank_account_id` bigint(20) UNSIGNED NOT NULL, `transaction_date` date NOT NULL, `transaction_type` enum('debit','credit') NOT NULL, `reference_number` varchar(255) DEFAULT NULL, `description` text NOT NULL, `amount` decimal(15,2) NOT NULL, `running_balance` decimal(15,2) NOT NULL, `transaction_status` enum('pending','cleared','cancelled') NOT NULL DEFAULT 'pending', `reconciliation_status` enum('unreconciled','reconciled') NOT NULL DEFAULT 'unreconciled', `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bank_transfers` -- CREATE TABLE `bank_transfers` ( `id` bigint(20) UNSIGNED NOT NULL, `transfer_number` varchar(255) NOT NULL, `transfer_date` date NOT NULL, `from_account_id` bigint(20) UNSIGNED NOT NULL, `to_account_id` bigint(20) UNSIGNED NOT NULL, `transfer_amount` decimal(15,2) NOT NULL, `transfer_charges` decimal(15,2) NOT NULL DEFAULT 0.00, `reference_number` varchar(255) DEFAULT NULL, `description` text NOT NULL, `status` enum('pending','completed','failed') NOT NULL DEFAULT 'pending', `journal_entry_id` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bank_transfer_payments` -- CREATE TABLE `bank_transfer_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `price` decimal(10,2) DEFAULT NULL, `order_id` varchar(255) NOT NULL, `status` enum('pending','approved','rejected') NOT NULL DEFAULT 'pending', `price_currency` varchar(3) NOT NULL DEFAULT 'USD', `attachment` varchar(255) DEFAULT NULL, `request` longtext DEFAULT NULL, `type` varchar(255) DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bank_transfer_payments` -- INSERT INTO `bank_transfer_payments` (`id`, `user_id`, `price`, `order_id`, `status`, `price_currency`, `attachment`, `request`, `type`, `created_by`, `created_at`, `updated_at`) VALUES (1, 2, 394.95, '9B4A92C4FD2A', 'approved', 'USD', NULL, '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":1,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Dibbert-O\'Kon Bank\\\",\\\"account_holder\\\":\\\"Hector Gottlieb\\\",\\\"account_number\\\":\\\"443237351722\\\",\\\"transaction_id\\\":\\\"3a85e742-ea5d-3918-88f4-440e3c8256b1\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 4, 223.49, '9B4A92C50227', 'approved', 'EUR', 'https://via.placeholder.com/640x480.png/003399?text=business+id', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":4,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Leuschke Inc Bank\\\",\\\"account_holder\\\":\\\"Jevon Hansen\\\",\\\"account_number\\\":\\\"796141101966\\\",\\\"transaction_id\\\":\\\"5357bbb4-a56b-3d3e-a9e1-f849f842b50a\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 2, 48.90, '9B4A92C50731', 'rejected', 'EUR', 'https://via.placeholder.com/640x480.png/0044bb?text=business+id', '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Crist-Ryan Bank\\\",\\\"account_holder\\\":\\\"Javier West MD\\\",\\\"account_number\\\":\\\"694528432\\\",\\\"transaction_id\\\":\\\"c38b1763-2073-3972-946a-4f20b329fea9\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 4, 158.32, '9B4A92C50DF0', 'rejected', 'EUR', 'https://via.placeholder.com/640x480.png/00ee22?text=business+accusantium', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":7,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"DuBuque, Reynolds and Harber Bank\\\",\\\"account_holder\\\":\\\"Brady Bins\\\",\\\"account_number\\\":\\\"7291232669\\\",\\\"transaction_id\\\":\\\"79b6e624-76c9-3659-8b59-4fc8da69481d\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 5, 231.19, '9B4A92C512D8', 'rejected', 'GBP', 'https://via.placeholder.com/640x480.png/00ff55?text=business+quisquam', '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Mraz LLC Bank\\\",\\\"account_holder\\\":\\\"Prof. Maxime Gibson III\\\",\\\"account_number\\\":\\\"16855706643\\\",\\\"transaction_id\\\":\\\"4216cbef-6fdc-354a-9b87-2bb79aa60544\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 2, 397.76, '9B4A92C517A7', 'pending', 'USD', 'https://via.placeholder.com/640x480.png/00bbee?text=business+eum', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":8,\\\"storage_counter_input\\\":1,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Goodwin, Shields and Spinka Bank\\\",\\\"account_holder\\\":\\\"Sabrina Wintheiser\\\",\\\"account_number\\\":\\\"5317042593285\\\",\\\"transaction_id\\\":\\\"761abacd-c9c7-391a-833d-d3d9f0c84b5c\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 2, 423.19, '9B4A92C51C9F', 'approved', 'GBP', NULL, '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":3,\\\"storage_counter_input\\\":2,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Wolff Ltd Bank\\\",\\\"account_holder\\\":\\\"Miss Marie Runolfsdottir DDS\\\",\\\"account_number\\\":\\\"9809154071666\\\",\\\"transaction_id\\\":\\\"c0f3e7f9-c6ef-3db9-ae82-d97dc158f17a\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 2, 229.71, '9B4A92C52115', 'pending', 'GBP', NULL, '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":5,\\\"storage_counter_input\\\":3,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Casper-Bednar Bank\\\",\\\"account_holder\\\":\\\"Lillian Heaney\\\",\\\"account_number\\\":\\\"18237611\\\",\\\"transaction_id\\\":\\\"61c89b5b-a717-3261-bf1f-6ce5e2484a23\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 3, 496.26, '9B4A92C5257E', 'pending', 'EUR', 'https://via.placeholder.com/640x480.png/006677?text=business+officia', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":2,\\\"storage_counter_input\\\":5,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Larson, Lesch and Sporer Bank\\\",\\\"account_holder\\\":\\\"Landen Dooley\\\",\\\"account_number\\\":\\\"8400799882751854\\\",\\\"transaction_id\\\":\\\"55f13ac8-a98c-365c-9e31-a03f39dfedc2\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 4, 296.84, '9B4A92C52A6B', 'approved', 'USD', 'https://via.placeholder.com/640x480.png/007733?text=business+voluptas', '\"{\\\"plan_id\\\":2,\\\"user_counter_input\\\":8,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Spinka, Weber and Barton Bank\\\",\\\"account_holder\\\":\\\"Glennie Leuschke\\\",\\\"account_number\\\":\\\"131944787\\\",\\\"transaction_id\\\":\\\"09d731ae-ddb2-3501-afac-16ad6eee0539\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 6, 129.67, '9B4A92C52F4C', 'approved', 'USD', NULL, '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":2,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Sporer, Mante and Heathcote Bank\\\",\\\"account_holder\\\":\\\"Tillman Bartoletti\\\",\\\"account_number\\\":\\\"54300852\\\",\\\"transaction_id\\\":\\\"f57a26b4-11bd-378c-9bb6-80b8018600f7\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 4, 397.12, '9B4A92C533AF', 'pending', 'GBP', 'https://via.placeholder.com/640x480.png/0022ff?text=business+cum', '\"{\\\"plan_id\\\":1,\\\"user_counter_input\\\":6,\\\"storage_counter_input\\\":4,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"McClure-Heathcote Bank\\\",\\\"account_holder\\\":\\\"Odell Hettinger\\\",\\\"account_number\\\":\\\"2614036927\\\",\\\"transaction_id\\\":\\\"3b36b776-6767-3019-bab2-6b53f5f8ed77\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 6, 198.22, '9B4A92C53881', 'pending', 'EUR', NULL, '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":9,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Spinka, Hegmann and Dibbert Bank\\\",\\\"account_holder\\\":\\\"Yasmin Parisian\\\",\\\"account_number\\\":\\\"966772483382656\\\",\\\"transaction_id\\\":\\\"60d4fb2d-58e4-39eb-8219-2e909747e446\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 3, 117.17, '9B4A92C53D1C', 'approved', 'EUR', 'https://via.placeholder.com/640x480.png/009955?text=business+assumenda', '\"{\\\"plan_id\\\":4,\\\"user_counter_input\\\":3,\\\"storage_counter_input\\\":1,\\\"time_period\\\":\\\"Year\\\",\\\"bank_name\\\":\\\"Lakin Group Bank\\\",\\\"account_holder\\\":\\\"Prof. Darrin Olson PhD\\\",\\\"account_number\\\":\\\"7096635773\\\",\\\"transaction_id\\\":\\\"05628cbd-8992-31e3-be10-7035946d036f\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 3, 194.53, '9B4A92C54224', 'approved', 'GBP', 'https://via.placeholder.com/640x480.png/00dd66?text=business+veniam', '\"{\\\"plan_id\\\":3,\\\"user_counter_input\\\":6,\\\"storage_counter_input\\\":0,\\\"time_period\\\":\\\"Month\\\",\\\"bank_name\\\":\\\"Lebsack, Prohaska and Wiegand Bank\\\",\\\"account_holder\\\":\\\"Miss Meghan Strosin II\\\",\\\"account_number\\\":\\\"554524525032490\\\",\\\"transaction_id\\\":\\\"d7128f4d-2018-3b2f-b24a-4a732aa3ec2b\\\"}\"', 'Bank Transfer', 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `bookings` -- CREATE TABLE `bookings` ( `id` bigint(20) UNSIGNED NOT NULL, `customer_name` int(11) NOT NULL, `vehicle_name` int(11) NOT NULL, `driver_name` int(11) NOT NULL, `trip_type` varchar(255) NOT NULL, `start_date` timestamp NULL DEFAULT NULL, `end_date` timestamp NULL DEFAULT NULL, `start_address` varchar(255) NOT NULL, `end_address` varchar(255) NOT NULL, `total_price` int(11) NOT NULL DEFAULT 0, `status` varchar(255) NOT NULL, `notes` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_appointments` -- CREATE TABLE `bookings_appointments` ( `id` bigint(20) UNSIGNED NOT NULL, `appointment_id` int(11) NOT NULL, `date` date NOT NULL, `service` int(11) NOT NULL, `package` varchar(255) NOT NULL, `staff` varchar(255) NOT NULL, `client_id` varchar(255) NOT NULL, `start_time` varchar(255) NOT NULL, `end_time` varchar(255) NOT NULL, `your_country` varchar(255) NOT NULL, `your_state` varchar(255) NOT NULL, `your_city` varchar(255) NOT NULL, `your_address` varchar(255) NOT NULL, `your_zip_code` int(11) NOT NULL, `our_country` varchar(255) NOT NULL, `our_state` varchar(255) NOT NULL, `our_city` varchar(255) NOT NULL, `our_zip_code` int(11) NOT NULL, `payment` varchar(255) DEFAULT NULL, `stage_id` int(11) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_business_hours` -- CREATE TABLE `bookings_business_hours` ( `id` bigint(20) UNSIGNED NOT NULL, `day_name` varchar(255) NOT NULL, `start_time` time NOT NULL, `end_time` time NOT NULL, `day_off` varchar(255) NOT NULL DEFAULT 'off', `break_hours` varchar(255) DEFAULT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_customers` -- CREATE TABLE `bookings_customers` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `number` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `client_id` varchar(255) DEFAULT NULL, `customer` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_duration` -- CREATE TABLE `bookings_duration` ( `id` bigint(20) UNSIGNED NOT NULL, `item_id` varchar(255) NOT NULL, `duration` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_extra_services` -- CREATE TABLE `bookings_extra_services` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_packages` -- CREATE TABLE `bookings_packages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `item` varchar(255) NOT NULL, `services` varchar(255) NOT NULL, `delivery_time` varchar(255) NOT NULL, `delivery_period` varchar(255) NOT NULL, `price` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `bookings_staff` -- CREATE TABLE `bookings_staff` ( `id` bigint(20) UNSIGNED NOT NULL, `staff` varchar(255) NOT NULL, `service` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `branches` -- CREATE TABLE `branches` ( `id` bigint(20) UNSIGNED NOT NULL, `branch_name` varchar(255) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `branches` -- INSERT INTO `branches` (`id`, `branch_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Main Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 'Downtown Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 'North Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 'South Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 'East Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 'West Branch', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 'Corporate Headquarters', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 'Regional Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 'Sales Office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 'Customer Service Center', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `bug_comments` -- CREATE TABLE `bug_comments` ( `id` bigint(20) UNSIGNED NOT NULL, `bug_id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `comment` text NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bug_comments` -- INSERT INTO `bug_comments` (`id`, `bug_id`, `user_id`, `comment`, `created_at`, `updated_at`) VALUES (1, 1, 16, 'Closed after successful testing and validation.', '2026-02-14 00:17:53', '2026-03-14 00:17:53'), (2, 2, 26, 'User confirmation received, issue considered closed.', '2026-02-20 00:17:53', '2026-03-14 00:17:53'), (3, 2, 26, 'User confirmation received, issue considered closed.', '2026-03-13 00:17:53', '2026-03-14 00:17:53'), (4, 3, 26, 'Additional logs and screenshots requested from reporter.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), (5, 4, 16, 'Testing potential fix in development environment.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), (6, 5, 20, 'Temporary workaround applied while final fix is prepared.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (7, 5, 16, 'Testing potential fix in development environment.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), (8, 6, 20, 'User confirmation received, issue considered closed.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), (9, 6, 20, 'User confirmation received, issue considered closed.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (10, 7, 22, 'Assigned to development team for analysis.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (11, 8, 16, 'Fix verified and working as expected.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), (12, 8, 16, 'Issue resolved, monitoring for any recurrence.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (13, 9, 18, 'Fix verified and working as expected.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), (14, 10, 26, 'Resolution documented for future reference.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), (15, 11, 18, 'User confirmation received, issue considered closed.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), (16, 11, 18, 'User confirmation received, issue considered closed.', '2026-02-21 00:17:53', '2026-03-14 00:17:53'), (17, 12, 18, 'Resolution documented for future reference.', '2026-03-03 00:17:53', '2026-03-14 00:17:53'), (18, 13, 26, 'Fix verified and working as expected.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), (19, 14, 26, 'Closed after successful testing and validation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (20, 14, 18, 'Issue resolved, monitoring for any recurrence.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), (21, 15, 26, 'Issue resolved, monitoring for any recurrence.', '2026-02-17 00:17:53', '2026-03-14 00:17:53'), (22, 16, 18, 'Resolution documented for future reference.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), (23, 16, 26, 'Resolution documented for future reference.', '2026-02-28 00:17:53', '2026-03-14 00:17:53'), (24, 17, 12, 'Additional logs and screenshots requested from reporter.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), (25, 18, 26, 'Initial triage completed, awaiting further details.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), (26, 19, 26, 'Additional logs and screenshots requested from reporter.', '2026-03-12 00:17:53', '2026-03-14 00:17:53'), (27, 19, 12, 'Priority set based on impact assessment.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (28, 20, 12, 'Additional logs and screenshots requested from reporter.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), (29, 20, 12, 'Priority set based on impact assessment.', '2026-03-10 00:17:53', '2026-03-14 00:17:53'), (30, 21, 18, 'Bug reported and needs investigation.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (31, 21, 22, 'Reproducing the issue to understand root cause.', '2026-02-20 00:17:53', '2026-03-14 00:17:53'), (32, 22, 22, 'Initial triage completed, awaiting further details.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), (33, 23, 22, 'Initial triage completed, awaiting further details.', '2026-03-03 00:17:53', '2026-03-14 00:17:53'), (34, 24, 20, 'Initial triage completed, awaiting further details.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), (35, 25, 20, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (36, 25, 10, 'Initial triage completed, awaiting further details.', '2026-03-10 00:17:53', '2026-03-14 00:17:53'), (37, 26, 10, 'Priority set based on impact assessment.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), (38, 26, 10, 'Assigned to development team for analysis.', '2026-03-02 00:17:53', '2026-03-14 00:17:53'), (39, 27, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), (40, 27, 10, 'Additional logs and screenshots requested from reporter.', '2026-03-02 00:17:53', '2026-03-14 00:17:53'), (41, 28, 14, 'Bug reported and needs investigation.', '2026-03-09 00:17:53', '2026-03-14 00:17:53'), (42, 29, 22, 'Priority set based on impact assessment.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), (43, 30, 22, 'Reproducing the issue to understand root cause.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), (44, 30, 26, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (45, 31, 14, 'Reproducing the issue to understand root cause.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), (46, 31, 26, 'Additional logs and screenshots requested from reporter.', '2026-02-26 00:17:53', '2026-03-14 00:17:53'), (47, 32, 22, 'Initial triage completed, awaiting further details.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (48, 33, 18, 'Additional logs and screenshots requested from reporter.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), (49, 33, 18, 'Bug reported and needs investigation.', '2026-02-18 00:17:53', '2026-03-14 00:17:53'), (50, 34, 22, 'Priority set based on impact assessment.', '2026-02-16 00:17:53', '2026-03-14 00:17:53'), (51, 34, 22, 'Additional logs and screenshots requested from reporter.', '2026-03-01 00:17:53', '2026-03-14 00:17:53'), (52, 35, 18, 'Bug reported and needs investigation.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), (53, 36, 14, 'Reproducing the issue to understand root cause.', '2026-03-05 00:17:53', '2026-03-14 00:17:53'), (54, 36, 14, 'Reproducing the issue to understand root cause.', '2026-02-23 00:17:53', '2026-03-14 00:17:53'), (55, 37, 14, 'Assigned to development team for analysis.', '2026-03-04 00:17:53', '2026-03-14 00:17:53'), (56, 38, 14, 'Assigned to development team for analysis.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), (57, 38, 14, 'Assigned to development team for analysis.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (58, 39, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), (59, 40, 22, 'Reproducing the issue to understand root cause.', '2026-03-06 00:17:53', '2026-03-14 00:17:53'), (60, 41, 22, 'Assigned to development team for analysis.', '2026-03-05 00:17:53', '2026-03-14 00:17:53'), (61, 41, 22, 'Bug reported and needs investigation.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (62, 42, 20, 'Additional logs and screenshots requested from reporter.', '2026-02-15 00:17:53', '2026-03-14 00:17:53'), (63, 42, 20, 'Priority set based on impact assessment.', '2026-03-07 00:17:53', '2026-03-14 00:17:53'), (64, 43, 16, 'Additional logs and screenshots requested from reporter.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), (65, 43, 14, 'Initial triage completed, awaiting further details.', '2026-02-14 00:17:53', '2026-03-14 00:17:53'), (66, 44, 14, 'Assigned to development team for analysis.', '2026-02-19 00:17:53', '2026-03-14 00:17:53'), (67, 45, 16, 'Priority set based on impact assessment.', '2026-03-11 00:17:53', '2026-03-14 00:17:53'), (68, 46, 16, 'Bug reported and needs investigation.', '2026-03-01 00:17:53', '2026-03-14 00:17:53'), (69, 46, 14, 'Initial triage completed, awaiting further details.', '2026-03-13 00:17:53', '2026-03-14 00:17:53'), (70, 47, 8, 'Reproducing the issue to understand root cause.', '2026-02-17 00:17:53', '2026-03-14 00:17:53'), (71, 47, 26, 'Bug reported and needs investigation.', '2026-03-06 00:17:53', '2026-03-14 00:17:53'), (72, 48, 8, 'Priority set based on impact assessment.', '2026-03-08 00:17:53', '2026-03-14 00:17:53'), (73, 48, 8, 'Assigned to development team for analysis.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'), (74, 49, 26, 'Additional logs and screenshots requested from reporter.', '2026-02-25 00:17:53', '2026-03-14 00:17:53'), (75, 50, 26, 'Bug reported and needs investigation.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (76, 51, 26, 'Initial triage completed, awaiting further details.', '2026-02-23 00:17:53', '2026-03-14 00:17:53'), (77, 51, 16, 'Priority set based on impact assessment.', '2026-02-21 00:17:53', '2026-03-14 00:17:53'), (78, 52, 16, 'Additional logs and screenshots requested from reporter.', '2026-02-12 00:17:53', '2026-03-14 00:17:53'), (79, 53, 26, 'Assigned to development team for analysis.', '2026-02-24 00:17:53', '2026-03-14 00:17:53'), (80, 53, 26, 'Initial triage completed, awaiting further details.', '2026-02-13 00:17:53', '2026-03-14 00:17:53'); -- -------------------------------------------------------- -- -- Table structure for table `bug_stages` -- CREATE TABLE `bug_stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `color` varchar(255) NOT NULL DEFAULT '#77b6ea', `complete` tinyint(1) NOT NULL, `order` int(11) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `bug_stages` -- INSERT INTO `bug_stages` (`id`, `name`, `color`, `complete`, `order`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Unconfirmed', '#77b6ea', 0, 0, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 'Confirmed', '#6e00ff', 0, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 'In Progress', '#3cb8d9', 0, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 'Resolved', '#37b37e', 0, 3, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 'Verified', '#545454', 1, 4, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `cache` -- CREATE TABLE `cache` ( `key` varchar(255) NOT NULL, `value` mediumtext NOT NULL, `expiration` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `cache_locks` -- CREATE TABLE `cache_locks` ( `key` varchar(255) NOT NULL, `owner` varchar(255) NOT NULL, `expiration` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `certifications` -- CREATE TABLE `certifications` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `issuing_body` varchar(255) DEFAULT NULL, `validity_months` int(11) DEFAULT NULL, `is_required` tinyint(1) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `certification_renewals` -- CREATE TABLE `certification_renewals` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_certification_id` bigint(20) UNSIGNED NOT NULL, `previous_expiry_date` date NOT NULL, `new_expiry_date` date NOT NULL, `renewed_date` date NOT NULL, `renewed_by` bigint(20) UNSIGNED NOT NULL, `document_path` varchar(255) DEFAULT NULL, `notes` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chart_of_accounts` -- CREATE TABLE `chart_of_accounts` ( `id` bigint(20) UNSIGNED NOT NULL, `account_code` varchar(255) NOT NULL, `account_name` varchar(255) NOT NULL, `account_type_id` bigint(20) UNSIGNED NOT NULL, `parent_account_id` bigint(20) UNSIGNED DEFAULT NULL, `level` int(11) NOT NULL DEFAULT 1, `normal_balance` enum('debit','credit') NOT NULL, `opening_balance` decimal(15,2) NOT NULL DEFAULT 0.00, `current_balance` decimal(15,2) NOT NULL DEFAULT 0.00, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_system_account` tinyint(1) NOT NULL DEFAULT 0, `description` text DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `chart_of_accounts` -- INSERT INTO `chart_of_accounts` (`id`, `account_code`, `account_name`, `account_type_id`, `parent_account_id`, `level`, `normal_balance`, `opening_balance`, `current_balance`, `is_active`, `is_system_account`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, '1000', 'Cash', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Physical cash in office', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, '1005', 'Petty Cash', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Small cash for minor expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, '1010', 'Bank Account - Main', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Primary bank checking account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, '1020', 'Bank Account - Savings', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business savings account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, '1030', 'Bank Account - Payroll', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dedicated payroll account', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, '1040', 'Cash in Transit', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Cash being transferred between accounts', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, '1100', 'Accounts Receivable', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Money owed by customers', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, '1200', 'Inventory', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Goods held for sale', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, '1300', 'Prepaid Expenses', 1, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Expenses paid in advance', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, '1400', 'Deposits', 3, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Security deposits paid', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, '1500', 'Tax Receivable (VAT/GST Input)', 3, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Tax refunds due', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, '1600', 'Equipment', 2, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office and business equipment', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, '1610', 'Accumulated Depreciation - Equipment', 2, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on equipment', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, '1700', 'Buildings', 2, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Building assets', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, '1710', 'Accumulated Depreciation - Buildings', 2, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on buildings', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (16, '2000', 'Accounts Payable', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Money owed to suppliers', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (17, '2100', 'Accrued Expenses', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Expenses incurred but not yet paid', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (18, '2200', 'Tax Payable (Income Tax)', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Taxes owed', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (19, '2210', 'VAT Payable (Sales Tax Output)', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'VAT owed to government', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (20, '2220', 'GST Payable', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'GST owed to government', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (21, '2300', 'Short-term Loans', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Loans due within one year', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (22, '2350', 'Customer Deposits', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Advance payments from customers for future services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (23, '2400', 'Payroll Liabilities', 4, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Unpaid employee salaries and benefits', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (24, '2500', 'Long-term Debt', 5, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Debts due after one year', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (25, '3100', 'Share Capital', 6, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Owner\'s investment in business', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (26, '3200', 'Retained Earnings', 7, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated business profits', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (27, '4100', 'Sales Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (28, '4010', 'Product Sales', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (29, '4200', 'Service Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from services provided', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (30, '4030', 'Consulting Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from consulting services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (31, '4040', 'Subscription Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from subscription services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (32, '4110', 'Commission Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from commissions', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (33, '4120', 'Rental Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from rental properties', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (34, '4130', 'Maintenance Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from maintenance services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (35, '4140', 'Training Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from training services', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (36, '4300', 'Other Income', 9, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Miscellaneous income', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (37, '4400', 'Project Revenue', 8, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from project-based work', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (38, '5100', 'Cost of Goods Sold', 10, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Direct cost of products sold', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (39, '5200', 'Salaries Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee salaries', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (40, '5210', 'Employee Benefits', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee benefits and insurance', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (41, '5220', 'Sales Commission Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Commission paid to sales agents', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (42, '5300', 'Rent Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office rent payments', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (43, '5305', 'Dairy Cattle Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dairy cattle related expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (44, '5306', 'Catering Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Catering related expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (45, '5310', 'Office Supplies', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'General office supplies', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (46, '5320', 'Marketing Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Marketing and advertising costs', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (47, '5330', 'Travel Expense', 11, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business travel expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (48, '5400', 'Utilities Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Electricity, water, internet', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (49, '5410', 'Insurance Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business insurance premiums', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (50, '5420', 'Professional Fees', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Legal and accounting fees', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (51, '5430', 'Depreciation Expense', 12, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Depreciation on fixed assets', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (52, '5500', 'Interest Expense', 13, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Interest on loans and debt', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (53, '5510', 'Bank Charges', 13, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Bank fees and charges', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (54, '5600', 'Tax Expense', 14, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Income tax expense', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (55, '5700', 'Bad Debt Expense', 15, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Uncollectible accounts expense', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (56, '5800', 'Miscellaneous Expense', 15, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Other miscellaneous expenses', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (57, '1000', 'Cash', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Physical cash in office', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (58, '1005', 'Petty Cash', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Small cash for minor expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (59, '1010', 'Bank Account - Main', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Primary bank checking account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (60, '1020', 'Bank Account - Savings', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business savings account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (61, '1030', 'Bank Account - Payroll', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dedicated payroll account', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (62, '1040', 'Cash in Transit', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Cash being transferred between accounts', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (63, '1100', 'Accounts Receivable', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Money owed by customers', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (64, '1200', 'Inventory', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Goods held for sale', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (65, '1300', 'Prepaid Expenses', 16, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Expenses paid in advance', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (66, '1400', 'Deposits', 18, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Security deposits paid', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (67, '1500', 'Tax Receivable (VAT/GST Input)', 18, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Tax refunds due', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (68, '1600', 'Equipment', 17, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office and business equipment', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (69, '1610', 'Accumulated Depreciation - Equipment', 17, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on equipment', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (70, '1700', 'Buildings', 17, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Building assets', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (71, '1710', 'Accumulated Depreciation - Buildings', 17, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated depreciation on buildings', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (72, '2000', 'Accounts Payable', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Money owed to suppliers', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (73, '2100', 'Accrued Expenses', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Expenses incurred but not yet paid', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (74, '2200', 'Tax Payable (Income Tax)', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Taxes owed', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (75, '2210', 'VAT Payable (Sales Tax Output)', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'VAT owed to government', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (76, '2220', 'GST Payable', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'GST owed to government', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (77, '2300', 'Short-term Loans', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Loans due within one year', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (78, '2350', 'Customer Deposits', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Advance payments from customers for future services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (79, '2400', 'Payroll Liabilities', 19, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Unpaid employee salaries and benefits', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (80, '2500', 'Long-term Debt', 20, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Debts due after one year', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (81, '3100', 'Share Capital', 21, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Owner\'s investment in business', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (82, '3200', 'Retained Earnings', 22, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Accumulated business profits', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (83, '4100', 'Sales Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (84, '4010', 'Product Sales', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from product sales', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (85, '4200', 'Service Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from services provided', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (86, '4030', 'Consulting Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from consulting services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (87, '4040', 'Subscription Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from subscription services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (88, '4110', 'Commission Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from commissions', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (89, '4120', 'Rental Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from rental properties', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (90, '4130', 'Maintenance Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from maintenance services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (91, '4140', 'Training Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Income from training services', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (92, '4300', 'Other Income', 24, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Miscellaneous income', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (93, '4400', 'Project Revenue', 23, NULL, 1, 'credit', 0.00, 0.00, 1, 1, 'Revenue from project-based work', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (94, '5100', 'Cost of Goods Sold', 25, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Direct cost of products sold', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (95, '5200', 'Salaries Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee salaries', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (96, '5210', 'Employee Benefits', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Employee benefits and insurance', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (97, '5220', 'Sales Commission Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Commission paid to sales agents', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (98, '5300', 'Rent Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Office rent payments', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (99, '5305', 'Dairy Cattle Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Dairy cattle related expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (100, '5306', 'Catering Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Catering related expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (101, '5310', 'Office Supplies', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'General office supplies', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (102, '5320', 'Marketing Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Marketing and advertising costs', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (103, '5330', 'Travel Expense', 26, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business travel expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (104, '5400', 'Utilities Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Electricity, water, internet', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (105, '5410', 'Insurance Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Business insurance premiums', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (106, '5420', 'Professional Fees', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Legal and accounting fees', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (107, '5430', 'Depreciation Expense', 27, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Depreciation on fixed assets', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (108, '5500', 'Interest Expense', 28, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Interest on loans and debt', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (109, '5510', 'Bank Charges', 28, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Bank fees and charges', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (110, '5600', 'Tax Expense', 29, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Income tax expense', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (111, '5700', 'Bad Debt Expense', 30, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Uncollectible accounts expense', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'), (112, '5800', 'Miscellaneous Expense', 30, NULL, 1, 'debit', 0.00, 0.00, 1, 1, 'Other miscellaneous expenses', 58, 58, '2026-03-25 08:46:08', '2026-03-25 08:46:08'); -- -------------------------------------------------------- -- -- Table structure for table `ch_favorites` -- CREATE TABLE `ch_favorites` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) NOT NULL, `favorite_id` bigint(20) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ch_favorites` -- INSERT INTO `ch_favorites` (`id`, `user_id`, `favorite_id`, `created_at`, `updated_at`) VALUES (1, 8, 17, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 9, 14, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 10, 8, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 10, 13, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `ch_messages` -- CREATE TABLE `ch_messages` ( `id` bigint(20) UNSIGNED NOT NULL, `from_id` bigint(20) NOT NULL, `to_id` bigint(20) NOT NULL, `body` varchar(5000) DEFAULT NULL, `attachment` varchar(255) DEFAULT NULL, `seen` tinyint(1) NOT NULL DEFAULT 0, `deleted_by_sender` tinyint(1) NOT NULL DEFAULT 0, `deleted_by_receiver` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ch_messages` -- INSERT INTO `ch_messages` (`id`, `from_id`, `to_id`, `body`, `attachment`, `seen`, `deleted_by_sender`, `deleted_by_receiver`, `created_at`, `updated_at`) VALUES (1, 2, 8, 'Hi there! How\'s your day going?', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 8, 2, 'Hey! Pretty good, thanks for asking. How about you?', NULL, 1, 0, 0, '2026-03-14 00:19:48', '2026-03-14 00:17:48'), (3, 2, 8, 'Not bad at all. Just working on the quarterly report.', NULL, 1, 0, 0, '2026-03-14 00:45:48', '2026-03-14 00:17:48'), (4, 8, 2, 'Oh nice! Need any help with that?', NULL, 1, 0, 0, '2026-03-14 00:32:48', '2026-03-14 00:17:48'), (5, 2, 8, 'Actually, yes. Could you review the financial section?', NULL, 1, 0, 0, '2026-03-14 00:25:48', '2026-03-14 00:17:48'), (6, 8, 2, 'Of course! Send it over and I\'ll take a look.', NULL, 1, 0, 0, '2026-03-14 01:12:48', '2026-03-14 00:17:48'), (7, 2, 8, 'Perfect, sending it now. Thanks!', NULL, 1, 0, 0, '2026-03-14 01:35:48', '2026-03-14 00:17:48'), (8, 8, 2, 'No problem, happy to help 😊', NULL, 1, 0, 0, '2026-03-14 01:34:48', '2026-03-14 00:17:48'), (9, 2, 9, 'Good morning! Ready for today\'s meeting?', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 9, 2, 'Morning! Yes, I\'ve prepared all the materials.', NULL, 1, 0, 0, '2026-03-14 00:25:48', '2026-03-14 00:17:48'), (11, 2, 9, 'Great! What time should we start?', NULL, 1, 0, 0, '2026-03-14 00:31:48', '2026-03-14 00:17:48'), (12, 9, 2, 'How about 10 AM? That works for everyone.', NULL, 1, 0, 0, '2026-03-14 00:41:48', '2026-03-14 00:17:48'), (13, 2, 9, 'Perfect. I\'ll send the calendar invite.', NULL, 1, 0, 0, '2026-03-14 00:29:48', '2026-03-14 00:17:48'), (14, 9, 2, 'Sounds good. See you then!', NULL, 1, 0, 0, '2026-03-14 01:27:48', '2026-03-14 00:17:48'), (15, 2, 10, 'The client loved the presentation!', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), (16, 10, 2, 'Really? That\'s fantastic news!', NULL, 1, 0, 0, '2026-03-08 00:32:48', '2026-03-14 00:17:48'), (17, 2, 10, 'Yes, they want to move forward with the project.', NULL, 1, 0, 0, '2026-03-08 00:35:48', '2026-03-14 00:17:48'), (18, 10, 2, 'Excellent work! This calls for a celebration 🎉', NULL, 1, 0, 0, '2026-03-08 00:29:48', '2026-03-14 00:17:48'), (19, 2, 10, 'Definitely! Drinks after work?', NULL, 1, 0, 0, '2026-03-08 00:49:48', '2026-03-14 00:17:48'), (20, 10, 2, 'Count me in!', NULL, 0, 0, 0, '2026-03-08 01:12:48', '2026-03-14 00:17:48'), (21, 2, 11, 'Quick question about the budget', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), (22, 11, 2, 'Sure, what\'s up?', NULL, 1, 0, 0, '2026-03-08 00:28:48', '2026-03-14 00:17:48'), (23, 2, 11, 'Do we have approval for the additional resources?', NULL, 1, 0, 0, '2026-03-08 00:43:48', '2026-03-14 00:17:48'), (24, 11, 2, 'Let me check with management and get back to you.', NULL, 1, 0, 0, '2026-03-08 00:53:48', '2026-03-14 00:17:48'), (25, 2, 11, 'Thanks, no rush but would be good to know soon.', NULL, 1, 0, 0, '2026-03-08 01:13:48', '2026-03-14 00:17:48'), (26, 11, 2, 'I\'ll follow up by end of day.', NULL, 1, 0, 0, '2026-03-08 00:27:48', '2026-03-14 00:17:48'), (27, 2, 11, 'Perfect, appreciate it!', NULL, 1, 0, 0, '2026-03-08 00:47:48', '2026-03-14 00:17:48'), (28, 2, 12, 'Hey, are you free for a quick call?', NULL, 1, 0, 0, '2026-03-12 00:17:48', '2026-03-14 00:17:48'), (29, 12, 2, 'Sure! What\'s it about?', NULL, 1, 0, 0, '2026-03-12 00:27:48', '2026-03-14 00:17:48'), (30, 2, 12, 'Need to discuss the timeline for the new feature.', NULL, 1, 0, 0, '2026-03-12 00:43:48', '2026-03-14 00:17:48'), (31, 12, 2, 'Ah yes, I was thinking about that too.', NULL, 1, 0, 0, '2026-03-12 00:23:48', '2026-03-14 00:17:48'), (32, 2, 12, 'Great minds think alike! 😄', NULL, 1, 0, 0, '2026-03-12 01:17:48', '2026-03-14 00:17:48'), (33, 12, 2, 'Haha exactly! Give me 5 minutes?', NULL, 1, 0, 0, '2026-03-12 01:17:48', '2026-03-14 00:17:48'), (34, 2, 12, 'Perfect, I\'ll call you then.', NULL, 0, 0, 0, '2026-03-12 00:41:48', '2026-03-14 00:17:48'), (35, 2, 13, 'Hi there! How\'s your day going?', NULL, 1, 0, 0, '2026-03-08 00:17:48', '2026-03-14 00:17:48'), (36, 13, 2, 'Hey! Pretty good, thanks for asking. How about you?', NULL, 1, 0, 0, '2026-03-08 00:26:48', '2026-03-14 00:17:48'), (37, 2, 13, 'Not bad at all. Just working on the quarterly report.', NULL, 1, 0, 0, '2026-03-08 00:31:48', '2026-03-14 00:17:48'), (38, 13, 2, 'Oh nice! Need any help with that?', NULL, 1, 0, 0, '2026-03-08 01:02:48', '2026-03-14 00:17:48'), (39, 2, 13, 'Actually, yes. Could you review the financial section?', NULL, 1, 0, 0, '2026-03-08 00:29:48', '2026-03-14 00:17:48'), (40, 13, 2, 'Of course! Send it over and I\'ll take a look.', NULL, 1, 0, 0, '2026-03-08 00:27:48', '2026-03-14 00:17:48'), (41, 2, 13, 'Perfect, sending it now. Thanks!', NULL, 1, 0, 0, '2026-03-08 00:47:48', '2026-03-14 00:17:48'), (42, 13, 2, 'No problem, happy to help 😊', NULL, 0, 0, 0, '2026-03-08 00:38:48', '2026-03-14 00:17:48'), (43, 2, 14, 'Good morning! Ready for today\'s meeting?', NULL, 1, 0, 0, '2026-03-07 00:17:48', '2026-03-14 00:17:48'), (44, 14, 2, 'Morning! Yes, I\'ve prepared all the materials.', NULL, 1, 0, 0, '2026-03-07 00:26:48', '2026-03-14 00:17:48'), (45, 2, 14, 'Great! What time should we start?', NULL, 1, 0, 0, '2026-03-07 00:45:48', '2026-03-14 00:17:48'), (46, 14, 2, 'How about 10 AM? That works for everyone.', NULL, 1, 0, 0, '2026-03-07 00:53:48', '2026-03-14 00:17:48'), (47, 2, 14, 'Perfect. I\'ll send the calendar invite.', NULL, 0, 0, 0, '2026-03-07 00:37:48', '2026-03-14 00:17:48'), (48, 14, 2, 'Sounds good. See you then!', NULL, 1, 0, 0, '2026-03-07 00:42:48', '2026-03-14 00:17:48'), (49, 2, 15, 'The client loved the presentation!', NULL, 1, 0, 0, '2026-03-11 00:17:48', '2026-03-14 00:17:48'), (50, 15, 2, 'Really? That\'s fantastic news!', NULL, 1, 0, 0, '2026-03-11 00:22:48', '2026-03-14 00:17:48'), (51, 2, 15, 'Yes, they want to move forward with the project.', NULL, 1, 0, 0, '2026-03-11 00:39:48', '2026-03-14 00:17:48'), (52, 15, 2, 'Excellent work! This calls for a celebration 🎉', NULL, 1, 0, 0, '2026-03-11 00:44:48', '2026-03-14 00:17:48'), (53, 2, 15, 'Definitely! Drinks after work?', NULL, 0, 0, 0, '2026-03-11 00:41:48', '2026-03-14 00:17:48'), (54, 15, 2, 'Count me in!', NULL, 1, 0, 0, '2026-03-11 01:32:48', '2026-04-08 10:17:15'), (55, 2, 16, 'Quick question about the budget', NULL, 1, 0, 0, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (56, 16, 2, 'Sure, what\'s up?', NULL, 1, 0, 0, '2026-03-14 00:27:48', '2026-03-14 00:17:48'), (57, 2, 16, 'Do we have approval for the additional resources?', NULL, 1, 0, 0, '2026-03-14 00:41:48', '2026-03-14 00:17:48'), (58, 16, 2, 'Let me check with management and get back to you.', NULL, 1, 0, 0, '2026-03-14 00:35:48', '2026-03-14 00:17:48'), (59, 2, 16, 'Thanks, no rush but would be good to know soon.', NULL, 1, 0, 0, '2026-03-14 01:13:48', '2026-03-14 00:17:48'), (60, 16, 2, 'I\'ll follow up by end of day.', NULL, 1, 0, 0, '2026-03-14 01:02:48', '2026-03-16 14:56:33'), (61, 2, 16, 'Perfect, appreciate it!', NULL, 1, 0, 0, '2026-03-14 01:35:48', '2026-03-14 00:17:48'), (62, 2, 17, 'Hey, are you free for a quick call?', NULL, 1, 0, 0, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), (63, 17, 2, 'Sure! What\'s it about?', NULL, 1, 0, 0, '2026-03-09 00:32:48', '2026-03-14 00:17:48'), (64, 2, 17, 'Need to discuss the timeline for the new feature.', NULL, 1, 0, 0, '2026-03-09 00:33:48', '2026-03-14 00:17:48'), (65, 17, 2, 'Ah yes, I was thinking about that too.', NULL, 1, 0, 0, '2026-03-09 00:53:48', '2026-03-14 00:17:48'), (66, 2, 17, 'Great minds think alike! 😄', NULL, 1, 0, 0, '2026-03-09 00:57:48', '2026-03-14 00:17:48'), (67, 17, 2, 'Haha exactly! Give me 5 minutes?', NULL, 1, 0, 0, '2026-03-09 00:27:48', '2026-03-14 00:17:48'), (68, 2, 17, 'Perfect, I\'ll call you then.', NULL, 0, 0, 0, '2026-03-09 01:11:48', '2026-03-14 00:17:48'), (69, 8, 9, 'Hey, got a minute?', NULL, 1, 0, 0, '2026-03-10 00:17:48', '2026-03-14 00:17:48'), (70, 9, 8, 'Sure! What\'s up?', NULL, 1, 0, 0, '2026-03-10 00:21:48', '2026-03-14 00:17:48'), (71, 8, 9, 'Can you help me with this task?', NULL, 1, 0, 0, '2026-03-10 00:23:48', '2026-03-14 00:17:48'), (72, 9, 8, 'Of course! What do you need?', NULL, 1, 0, 0, '2026-03-10 00:41:48', '2026-03-14 00:17:48'), (73, 9, 10, 'Thanks for yesterday\'s help!', NULL, 1, 0, 0, '2026-03-12 00:17:48', '2026-03-14 00:17:48'), (74, 10, 9, 'No problem at all!', NULL, 1, 0, 0, '2026-03-12 00:25:48', '2026-03-14 00:17:48'), (75, 9, 10, 'Really saved me a lot of time.', NULL, 1, 0, 0, '2026-03-12 00:27:48', '2026-03-14 00:17:48'), (76, 10, 9, 'Glad I could help! 😊', NULL, 1, 0, 0, '2026-03-12 00:44:48', '2026-03-14 00:17:48'), (77, 10, 11, 'Are you joining the team lunch?', NULL, 1, 0, 0, '2026-03-09 00:17:48', '2026-03-14 00:17:48'), (78, 11, 10, 'Definitely! What time?', NULL, 1, 0, 0, '2026-03-09 00:22:48', '2026-03-14 00:17:48'), (79, 10, 11, '12:30 at the usual place', NULL, 1, 0, 0, '2026-03-09 00:35:48', '2026-03-14 00:17:48'), (80, 11, 10, 'Perfect, see you there!', NULL, 0, 0, 0, '2026-03-09 00:38:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `ch_pinned` -- CREATE TABLE `ch_pinned` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `pinned_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `ch_pinned` -- INSERT INTO `ch_pinned` (`id`, `user_id`, `pinned_id`, `created_at`, `updated_at`) VALUES (1, 8, 10, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 9, 14, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 9, 15, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 10, 11, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 10, 17, '2026-03-14 00:17:48', '2026-03-14 00:17:48'); -- -------------------------------------------------------- -- -- Table structure for table `client_deals` -- CREATE TABLE `client_deals` ( `id` bigint(20) UNSIGNED NOT NULL, `client_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `client_deals` -- INSERT INTO `client_deals` (`id`, `client_id`, `deal_id`, `created_at`, `updated_at`) VALUES (1, 44, 1, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 11, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 17, 3, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 54, 4, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 47, 5, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 51, 6, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 27, 11, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 21, 12, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 13, 13, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 55, 14, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 43, 15, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 56, 16, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `client_permissions` -- CREATE TABLE `client_permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `client_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `permissions` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`permissions`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `complaints` -- CREATE TABLE `complaints` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `against_employee_id` bigint(20) UNSIGNED DEFAULT NULL, `complaint_type_id` bigint(20) UNSIGNED DEFAULT NULL, `subject` varchar(255) NOT NULL, `description` longtext NOT NULL, `complaint_date` date NOT NULL, `status` enum('pending','in review','assigned','in progress','resolved') NOT NULL DEFAULT 'pending', `document` varchar(255) DEFAULT NULL, `resolved_by` bigint(20) UNSIGNED DEFAULT NULL, `resolution_date` date DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `complaints` -- INSERT INTO `complaints` (`id`, `employee_id`, `against_employee_id`, `complaint_type_id`, `subject`, `description`, `complaint_date`, `status`, `document`, `resolved_by`, `resolution_date`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 8, 14, 1, 'Workplace Harassment - Inappropriate Comments and Behavior', 'Employee experiencing inappropriate comments and unwelcome behavior from colleagues creating hostile work environment affecting productivity.', '2025-09-20', 'resolved', 'complaint1.png', 33, '2025-10-14', 2, 2, '2025-09-21 11:15:49', '2025-09-21 16:49:49'), (2, 10, 26, 2, 'Discrimination Based on Gender and Age Factors', 'Discrimination complaints regarding unfair treatment based on gender and age factors affecting career advancement opportunities.', '2025-09-25', 'assigned', NULL, NULL, NULL, 2, 2, '2025-09-26 08:59:49', '2025-09-26 16:33:49'), (3, 12, 22, 3, 'Bullying and Intimidation by Senior Colleagues', 'Bullying and intimidation tactics used by senior colleagues creating psychological stress and affecting work performance.', '2025-09-30', 'assigned', 'complaint4.png', NULL, NULL, 2, 2, '2025-10-01 12:12:49', '2025-10-01 14:56:49'), (4, 14, 8, 4, 'Unfair Treatment in Performance Evaluation Process', 'Unfair treatment during performance evaluation process with biased assessment and lack of objective criteria application.', '2025-10-05', 'pending', NULL, NULL, NULL, 2, 2, '2025-10-06 08:49:49', '2025-10-06 09:24:49'), (5, 16, 8, 5, 'Hostile Work Environment - Verbal Abuse', 'Hostile work environment characterized by verbal abuse and unprofessional language affecting employee mental health.', '2025-10-10', 'resolved', 'complaint3.png', 32, '2025-11-09', 2, 2, '2025-10-11 18:03:49', '2025-10-11 10:46:49'), (6, 18, 10, 6, 'Sexual Harassment - Unwanted Advances and Comments', 'Sexual harassment incidents involving unwanted advances and inappropriate comments creating uncomfortable workplace atmosphere.', '2025-10-15', 'resolved', NULL, 9, '2025-10-27', 2, 2, '2025-10-16 17:10:49', '2025-10-16 12:22:49'), (7, 20, 14, 7, 'Racial Discrimination in Promotion Opportunities', 'Racial discrimination in promotion opportunities with qualified candidates overlooked based on ethnic background considerations.', '2025-10-20', 'in progress', 'complaint2.png', NULL, NULL, 2, 2, '2025-10-21 16:36:49', '2025-10-21 08:26:49'), (8, 22, 14, 8, 'Retaliation for Whistleblowing Activities', 'Retaliation activities following whistleblowing reports including isolation and negative performance reviews affecting career progression.', '2025-10-25', 'resolved', NULL, 57, '2025-11-22', 2, 2, '2025-10-26 15:10:49', '2025-10-26 08:23:49'), (9, 24, 8, 9, 'Unsafe Working Conditions - Equipment Malfunction', 'Unsafe working conditions due to equipment malfunction and inadequate maintenance creating potential safety hazards.', '2025-10-30', 'in review', 'complaint3.png', NULL, NULL, 2, 2, '2025-10-31 12:28:49', '2025-10-31 10:24:49'), (10, 26, 8, 10, 'Wage and Hour Violations - Overtime Issues', 'Wage and hour violations including unpaid overtime and incorrect calculation of compensation affecting financial stability.', '2025-11-04', 'in progress', NULL, NULL, NULL, 2, 2, '2025-11-05 11:55:49', '2025-11-05 09:05:49'), (11, 8, 20, 11, 'Privacy Violation - Personal Information Misuse', 'Privacy violation through misuse of personal information and unauthorized access to confidential employee data.', '2025-11-09', 'in review', 'complaint3.png', NULL, NULL, 2, 2, '2025-11-10 11:44:49', '2025-11-10 10:53:49'), (12, 10, 18, 12, 'Favoritism in Task Assignment and Recognition', 'Favoritism in task assignment and recognition programs creating unequal opportunities and affecting team morale.', '2025-11-14', 'assigned', NULL, NULL, NULL, 2, 2, '2025-11-15 12:34:49', '2025-11-15 17:07:49'), (13, 12, 24, 13, 'Breach of Confidentiality Agreement Terms', 'Breach of confidentiality agreement terms through unauthorized disclosure of sensitive company information to competitors.', '2025-11-19', 'resolved', 'complaint4.png', 57, '2025-12-17', 2, 2, '2025-11-20 17:30:49', '2025-11-20 11:18:49'), (14, 14, 20, 14, 'Unprofessional Conduct by Management Personnel', 'Unprofessional conduct by management personnel including inappropriate behavior and failure to maintain professional standards.', '2025-11-24', 'in review', NULL, NULL, NULL, 2, 2, '2025-11-25 13:20:49', '2025-11-25 09:13:49'), (15, 16, 8, 15, 'Workplace Violence - Threats and Aggressive Behavior', 'Workplace violence incidents involving threats and aggressive behavior creating fear and unsafe working environment.', '2025-11-29', 'resolved', 'complaint3.png', 20, '2025-12-11', 2, 2, '2025-11-30 16:54:49', '2025-11-30 13:47:49'), (16, 18, 26, 16, 'Disability Discrimination - Accommodation Denial', 'Disability discrimination through denial of reasonable accommodation requests affecting ability to perform job functions.', '2025-12-04', 'in progress', NULL, NULL, NULL, 2, 2, '2025-12-05 16:32:49', '2025-12-05 11:55:49'), (17, 20, 12, 17, 'Religious Discrimination - Prayer Time Restrictions', 'Religious discrimination including restrictions on prayer time and religious observance affecting spiritual well-being.', '2025-12-09', 'in progress', 'complaint4.png', NULL, NULL, 2, 2, '2025-12-10 15:27:49', '2025-12-10 17:20:49'), (18, 22, 16, 18, 'Age Discrimination in Training Opportunities', 'Age discrimination in training opportunities with younger employees receiving preferential treatment in professional development.', '2025-12-14', 'assigned', NULL, NULL, NULL, 2, 2, '2025-12-15 11:03:49', '2025-12-15 15:58:49'), (19, 24, 22, 19, 'Wrongful Termination Threat and Intimidation', 'Wrongful termination threats and intimidation tactics used to suppress legitimate complaints and concerns.', '2025-12-19', 'resolved', 'complaint3.png', 10, '2025-12-31', 2, 2, '2025-12-20 13:02:49', '2025-12-20 12:54:49'), (20, 26, 16, 20, 'Health and Safety Protocol Violations', 'Health and safety protocol violations including failure to provide protective equipment and safety training.', '2025-12-24', 'resolved', NULL, 36, '2026-01-22', 2, 2, '2025-12-25 15:48:49', '2025-12-25 13:08:49'), (21, 8, 22, 21, 'Theft of Personal Property from Workspace', 'Theft of personal property from workspace including electronic devices and personal belongings affecting security.', '2025-12-29', 'resolved', 'complaint1.png', 51, '2026-01-16', 2, 2, '2025-12-30 08:22:49', '2025-12-30 14:30:49'), (22, 10, 12, 22, 'Misuse of Company Resources and Equipment', 'Misuse of company resources and equipment for personal purposes violating organizational policies and procedures.', '2026-01-03', 'in progress', NULL, NULL, NULL, 2, 2, '2026-01-04 15:40:49', '2026-01-04 17:34:49'), (23, 12, 8, 23, 'Conflict of Interest - Undisclosed Relationships', 'Conflict of interest situations involving undisclosed relationships affecting business decisions and fairness.', '2026-01-08', 'resolved', 'complaint4.png', 28, '2026-01-30', 2, 2, '2026-01-09 16:06:49', '2026-01-09 17:06:49'), (24, 14, 16, 24, 'Substance Abuse in Workplace Environment', 'Substance abuse incidents in workplace environment creating safety concerns and affecting professional atmosphere.', '2026-01-13', 'resolved', NULL, 22, '2026-02-01', 2, 2, '2026-01-14 16:08:49', '2026-01-14 14:23:49'), (25, 16, 18, 25, 'Data Security Breach - Unauthorized Access', 'Data security breach through unauthorized access to confidential information affecting company and client privacy.', '2026-01-18', 'resolved', 'complaint3.png', 56, '2026-02-06', 2, 2, '2026-01-19 11:19:49', '2026-01-19 09:38:49'), (26, 18, 20, 26, 'Environmental Health Hazards - Chemical Exposure', 'Environmental health hazards including chemical exposure and inadequate ventilation affecting employee health and safety.', '2026-01-23', 'in progress', NULL, NULL, NULL, 2, 2, '2026-01-24 18:04:49', '2026-01-24 12:50:49'), (27, 20, 16, 27, 'Ergonomic Issues - Repetitive Strain Injuries', 'Ergonomic issues causing repetitive strain injuries due to inadequate workspace design and equipment configuration.', '2026-01-28', 'in progress', 'complaint4.png', NULL, NULL, 2, 2, '2026-01-29 08:31:49', '2026-01-29 15:39:49'), (28, 22, 24, 28, 'Noise Pollution - Excessive Workplace Disturbance', 'Noise pollution from excessive workplace disturbance affecting concentration and productivity during work hours.', '2026-02-02', 'assigned', NULL, NULL, NULL, 2, 2, '2026-02-03 10:14:49', '2026-02-03 17:39:49'), (29, 24, 8, 29, 'Temperature Control - Uncomfortable Working Conditions', 'Temperature control issues creating uncomfortable working conditions affecting employee comfort and performance.', '2026-02-07', 'pending', 'complaint2.png', NULL, NULL, 2, 2, '2026-02-08 13:18:49', '2026-02-08 14:56:49'), (30, 26, 14, 30, 'Parking and Transportation Issues Resolution', 'Parking and transportation issues requiring resolution to improve employee accessibility and convenience.', '2026-02-12', 'in progress', NULL, NULL, NULL, 2, 2, '2026-02-13 13:20:49', '2026-02-13 09:28:49'); -- -------------------------------------------------------- -- -- Table structure for table `complaint_types` -- CREATE TABLE `complaint_types` ( `id` bigint(20) UNSIGNED NOT NULL, `complaint_type` varchar(255) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `complaint_types` -- INSERT INTO `complaint_types` (`id`, `complaint_type`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Workplace Harassment', 2, 2, '2025-09-15 09:17:49', '2025-09-15 09:17:49'), (2, 'Discrimination & Bias', 2, 2, '2025-09-17 10:47:49', '2025-09-17 10:47:49'), (3, 'Workplace Safety Violations', 2, 2, '2025-09-20 11:32:49', '2025-09-20 11:32:49'), (4, 'Policy & Procedure Violations', 2, 2, '2025-09-23 15:02:49', '2025-09-23 15:02:49'), (5, 'Unfair Treatment & Favoritism', 2, 2, '2025-09-25 13:37:49', '2025-09-25 13:37:49'), (6, 'Workplace Environment Issues', 2, 2, '2025-09-27 15:27:49', '2025-09-27 15:27:49'), (7, 'Compensation & Benefits Disputes', 2, 2, '2025-09-30 12:17:49', '2025-09-30 12:17:49'), (8, 'Performance Management Issues', 2, 2, '2025-10-03 16:47:49', '2025-10-03 16:47:49'), (9, 'Communication & Interpersonal Conflicts', 2, 2, '2025-10-05 11:02:49', '2025-10-05 11:02:49'), (10, 'Work Schedule & Time Management', 2, 2, '2025-10-07 14:32:49', '2025-10-07 14:32:49'), (11, 'Technology & System Issues', 2, 2, '2025-10-10 08:47:49', '2025-10-10 08:47:49'), (12, 'Training & Development Concerns', 2, 2, '2025-10-13 09:17:49', '2025-10-13 09:17:49'), (13, 'Resource & Equipment Shortages', 2, 2, '2025-10-15 11:37:49', '2025-10-15 11:37:49'), (14, 'Ethical & Compliance Violations', 2, 2, '2025-10-17 14:02:49', '2025-10-17 14:02:49'), (15, 'Workplace Bullying & Intimidation', 2, 2, '2025-10-20 15:42:49', '2025-10-20 15:42:49'), (16, 'Privacy & Confidentiality Breaches', 2, 2, '2025-10-23 12:27:49', '2025-10-23 12:27:49'), (17, 'Leave & Attendance Disputes', 2, 2, '2025-10-25 14:52:49', '2025-10-25 14:52:49'), (18, 'Facility & Infrastructure Problems', 2, 2, '2025-10-27 16:17:49', '2025-10-27 16:17:49'), (19, 'Health & Wellness Concerns', 2, 2, '2025-10-30 11:07:49', '2025-10-30 11:07:49'), (20, 'Career Development & Promotion Issues', 2, 2, '2025-11-02 13:32:49', '2025-11-02 13:32:49'), (21, 'Vendor & External Relations', 2, 2, '2025-11-04 11:57:49', '2025-11-04 11:57:49'), (22, 'Quality & Process Improvement', 2, 2, '2025-11-06 15:22:49', '2025-11-06 15:22:49'), (23, 'Customer Service & Relations', 2, 2, '2025-11-09 09:42:49', '2025-11-09 09:42:49'), (24, 'Financial & Budget Concerns', 2, 2, '2025-11-12 13:12:49', '2025-11-12 13:12:49'), (25, 'Environmental & Sustainability Issues', 2, 2, '2025-11-14 14:37:49', '2025-11-14 14:37:49'), (26, 'Security & Access Control', 2, 2, '2025-11-16 17:02:49', '2025-11-16 17:02:49'), (27, 'Remote Work & Flexibility Issues', 2, 2, '2025-11-19 08:27:49', '2025-11-19 08:27:49'), (28, 'Diversity & Inclusion Concerns', 2, 2, '2025-11-22 10:52:49', '2025-11-22 10:52:49'), (29, 'Legal & Regulatory Compliance', 2, 2, '2025-11-24 13:17:49', '2025-11-24 13:17:49'), (30, 'General Administrative Issues', 2, 2, '2025-11-26 15:47:49', '2025-11-26 15:47:49'); -- -------------------------------------------------------- -- -- Table structure for table `cost_rates` -- CREATE TABLE `cost_rates` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `hourly_cost` decimal(10,2) NOT NULL DEFAULT 0.00, `billing_rate` decimal(10,2) DEFAULT NULL, `effective_date` date NOT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupons` -- CREATE TABLE `coupons` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` text DEFAULT NULL, `code` varchar(255) NOT NULL, `discount` decimal(10,2) NOT NULL, `limit` int(11) DEFAULT NULL, `type` enum('percentage','flat','fixed') NOT NULL, `minimum_spend` decimal(10,2) DEFAULT NULL, `maximum_spend` decimal(10,2) DEFAULT NULL, `limit_per_user` int(11) DEFAULT NULL, `expiry_date` timestamp NULL DEFAULT NULL, `included_module` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`included_module`)), `excluded_module` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`excluded_module`)), `status` tinyint(1) NOT NULL DEFAULT 1, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `coupons` -- INSERT INTO `coupons` (`id`, `name`, `description`, `code`, `discount`, `limit`, `type`, `minimum_spend`, `maximum_spend`, `limit_per_user`, `expiry_date`, `included_module`, `excluded_module`, `status`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Welcome Discount', 'Welcome discount for new customers', 'WELCOME10', 10.00, 100, 'percentage', 50.00, NULL, 1, '2026-06-14 00:17:35', NULL, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (2, 'Flat Discount', 'Flat $20 off on orders', 'FLAT20', 20.00, 50, 'flat', 100.00, NULL, 2, '2026-09-14 00:17:35', NULL, NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (3, 'Premium Plan Fixed', 'Fixed price for premium plan', 'PREMIUM99', 99.00, 25, 'fixed', NULL, NULL, 1, '2027-03-14 00:17:35', '[\"premium\"]', NULL, 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'); -- -------------------------------------------------------- -- -- Table structure for table `credit_notes` -- CREATE TABLE `credit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `credit_note_number` varchar(255) NOT NULL, `credit_note_date` date NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `invoice_id` bigint(20) UNSIGNED DEFAULT NULL, `return_id` bigint(20) UNSIGNED DEFAULT NULL, `reason` varchar(255) NOT NULL, `status` enum('draft','approved','partial','applied','cancelled') NOT NULL DEFAULT 'draft', `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `applied_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `notes` text DEFAULT NULL, `approved_by` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `credit_notes` -- INSERT INTO `credit_notes` (`id`, `credit_note_number`, `credit_note_date`, `customer_id`, `invoice_id`, `return_id`, `reason`, `status`, `subtotal`, `tax_amount`, `discount_amount`, `total_amount`, `applied_amount`, `balance_amount`, `notes`, `approved_by`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'CN-2026-04-001', '2026-04-09', 17, 5, 5, 'Sales return - other', 'draft', 2811.91, 337.43, 0.00, 3149.34, 0.00, 3149.34, NULL, NULL, 2, 2, '2026-04-09 09:53:21', '2026-04-09 09:53:21'); -- -------------------------------------------------------- -- -- Table structure for table `credit_note_applications` -- CREATE TABLE `credit_note_applications` ( `id` bigint(20) UNSIGNED NOT NULL, `credit_note_id` bigint(20) UNSIGNED NOT NULL, `payment_id` bigint(20) UNSIGNED DEFAULT NULL, `applied_amount` decimal(15,2) NOT NULL, `application_date` date NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `credit_note_items` -- CREATE TABLE `credit_note_items` ( `id` bigint(20) UNSIGNED NOT NULL, `credit_note_id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `quantity` int(11) NOT NULL, `unit_price` decimal(15,2) NOT NULL, `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `credit_note_items` -- INSERT INTO `credit_note_items` (`id`, `credit_note_id`, `product_id`, `quantity`, `unit_price`, `discount_percentage`, `discount_amount`, `tax_percentage`, `tax_amount`, `total_amount`, `created_at`, `updated_at`) VALUES (1, 1, 8, 4, 699.99, 6.00, 168.00, 12.00, 315.84, 2947.80, '2026-04-09 09:53:21', '2026-04-09 09:53:21'), (2, 1, 18, 5, 35.99, 0.00, 0.00, 12.00, 21.59, 201.54, '2026-04-09 09:53:21', '2026-04-09 09:53:21'); -- -------------------------------------------------------- -- -- Table structure for table `credit_note_item_taxes` -- CREATE TABLE `credit_note_item_taxes` ( `id` bigint(20) UNSIGNED NOT NULL, `item_id` bigint(20) UNSIGNED NOT NULL, `tax_name` varchar(255) NOT NULL, `tax_rate` decimal(5,2) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customers` -- CREATE TABLE `customers` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `customer_code` varchar(255) NOT NULL, `company_name` varchar(255) NOT NULL, `contact_person_name` varchar(255) NOT NULL, `contact_person_email` varchar(255) NOT NULL, `contact_person_mobile` varchar(255) DEFAULT NULL, `tax_number` varchar(255) DEFAULT NULL, `payment_terms` varchar(255) DEFAULT NULL, `billing_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`billing_address`)), `shipping_address` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`shipping_address`)), `same_as_billing` tinyint(1) NOT NULL DEFAULT 0, `notes` text DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `customers` -- INSERT INTO `customers` (`id`, `user_id`, `customer_code`, `company_name`, `contact_person_name`, `contact_person_email`, `contact_person_mobile`, `tax_number`, `payment_terms`, `billing_address`, `shipping_address`, `same_as_billing`, `notes`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 9, 'CUST-0001', 'Swaniawski-King', 'Nolan Johnson', 'lockman.caleb@dibbert.org', '+9790410925577', 'TAX-15496709', 'Net 30', '{\"name\":\"Miss Janae Kovacek DDS\",\"address_line_1\":\"99357 Stone Valleys Suite 059\",\"address_line_2\":null,\"city\":\"Lempibury\",\"state\":\"Connecticut\",\"country\":\"Saint Pierre and Miquelon\",\"zip_code\":\"05347\"}', '{\"name\":\"Garett Weber\",\"address_line_1\":\"4232 Schinner Wells\",\"address_line_2\":null,\"city\":\"West Leifshire\",\"state\":\"Hawaii\",\"country\":\"Pakistan\",\"zip_code\":\"65730\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 11, 'CUST-0002', 'Douglas-Moen', 'Prof. Ethyl Altenwerth Sr.', 'garth.rutherford@becker.com', '+4265926621540', 'TAX-96403329', 'COD', '{\"name\":\"Nina Graham\",\"address_line_1\":\"4567 Kyle Passage Apt. 577\",\"address_line_2\":null,\"city\":\"South Haydenmouth\",\"state\":\"Hawaii\",\"country\":\"Paraguay\",\"zip_code\":\"25454\"}', '{\"name\":\"Dorothea Daniel\",\"address_line_1\":\"864 Rogahn Summit Apt. 915\",\"address_line_2\":\"Apt. 083\",\"city\":\"Kylemouth\",\"state\":\"Texas\",\"country\":\"Jamaica\",\"zip_code\":\"74366\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 13, 'CUST-0003', 'Hodkiewicz Inc', 'Cullen Welch', 'alva45@nicolas.com', '+5596751046696', 'TAX-50411031', 'COD', '{\"name\":\"Brant Dach\",\"address_line_1\":\"66800 Glenna Trafficway Apt. 935\",\"address_line_2\":\"Suite 731\",\"city\":\"West Connerfurt\",\"state\":\"Maryland\",\"country\":\"British Indian Ocean Territory (Chagos Archipelago)\",\"zip_code\":\"59512-4349\"}', '{\"name\":\"Orrin Kemmer\",\"address_line_1\":\"228 Turner Fork\",\"address_line_2\":null,\"city\":\"Nolanmouth\",\"state\":\"Arkansas\",\"country\":\"Algeria\",\"zip_code\":\"30106\"}', 0, 'Quasi sit at quia sed quia voluptas sapiente ut.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 15, 'CUST-0004', 'McLaughlin, Rutherford and Cummerata', 'Felicita Dickinson PhD', 'myundt@prosacco.com', '+9374515541326', 'TAX-16695113', 'Net 30', '{\"name\":\"Maria Glover\",\"address_line_1\":\"1676 Bauch Place\",\"address_line_2\":null,\"city\":\"West Revamouth\",\"state\":\"Iowa\",\"country\":\"Saudi Arabia\",\"zip_code\":\"58554\"}', '{\"name\":\"Maximus Ledner\",\"address_line_1\":\"29009 Angelo Shore\",\"address_line_2\":null,\"city\":\"Port Marielafurt\",\"state\":\"Alabama\",\"country\":\"Reunion\",\"zip_code\":\"77572-0999\"}', 0, 'Repellat laboriosam et illo quaerat.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 17, 'CUST-0005', 'Price PLC', 'Teresa Schroeder', 'casandra64@rath.com', '+6737078968448', 'TAX-77663729', 'COD', '{\"name\":\"Francesca Bauch\",\"address_line_1\":\"526 Powlowski Stravenue Suite 898\",\"address_line_2\":null,\"city\":\"Stiedemannfort\",\"state\":\"North Carolina\",\"country\":\"Nicaragua\",\"zip_code\":\"96296-7637\"}', '{\"name\":\"Austyn Skiles\",\"address_line_1\":\"65208 Heidenreich Islands Suite 804\",\"address_line_2\":null,\"city\":\"Port Denaville\",\"state\":\"Oklahoma\",\"country\":\"Cayman Islands\",\"zip_code\":\"33050\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 19, 'CUST-0006', 'Crona Group', 'Jaydon Sporer', 'mortimer.smith@franecki.com', '+1282201479194', 'TAX-97767070', 'COD', '{\"name\":\"Darrick Toy\",\"address_line_1\":\"811 Gerda Causeway Apt. 425\",\"address_line_2\":null,\"city\":\"Port Mathew\",\"state\":\"California\",\"country\":\"Tanzania\",\"zip_code\":\"95557\"}', '{\"name\":\"Eda Schoen\",\"address_line_1\":\"732 Mitchell Club Suite 166\",\"address_line_2\":\"Suite 154\",\"city\":\"North Lia\",\"state\":\"Utah\",\"country\":\"Romania\",\"zip_code\":\"59028-5521\"}', 0, 'Ducimus non molestiae beatae iste sed.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 21, 'CUST-0007', 'Herman-Schumm', 'Nannie Klocko PhD', 'genoveva.will@cole.com', '+7860030177733', 'TAX-43258883', 'Net 60', '{\"name\":\"Mr. Joaquin Ondricka\",\"address_line_1\":\"37292 Erin Terrace Apt. 673\",\"address_line_2\":null,\"city\":\"Fadelburgh\",\"state\":\"Arizona\",\"country\":\"Vanuatu\",\"zip_code\":\"76460-2452\"}', '{\"name\":\"Trinity Funk\",\"address_line_1\":\"50158 Vladimir Fort Suite 404\",\"address_line_2\":\"Apt. 702\",\"city\":\"Cristton\",\"state\":\"Kentucky\",\"country\":\"Chad\",\"zip_code\":\"00330\"}', 0, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 23, 'CUST-0008', 'Wunsch-Ledner', 'Dorian Lynch', 'hickle.ezequiel@hane.org', '+8913415595053', 'TAX-58202747', 'Net 15', '{\"name\":\"Kayleigh Cummerata PhD\",\"address_line_1\":\"46842 Haylee Flats Suite 750\",\"address_line_2\":\"Apt. 864\",\"city\":\"New Cecelia\",\"state\":\"North Dakota\",\"country\":\"Slovakia (Slovak Republic)\",\"zip_code\":\"29872-2938\"}', '{\"name\":\"Dr. Gracie Wintheiser\",\"address_line_1\":\"14390 Verla Manor Suite 427\",\"address_line_2\":null,\"city\":\"Lake Donnell\",\"state\":\"Mississippi\",\"country\":\"Nigeria\",\"zip_code\":\"52173-1197\"}', 0, 'Dolorem at corrupti perspiciatis et nihil culpa rem.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 25, 'CUST-0009', 'Koelpin-Stokes', 'Korey Kuhic', 'jacobi.earline@lynch.com', '+1556018551438', 'TAX-87531952', 'Net 15', '{\"name\":\"Maurice Abbott\",\"address_line_1\":\"286 Cruickshank Pike Apt. 516\",\"address_line_2\":\"Apt. 471\",\"city\":\"Pearlinefurt\",\"state\":\"Washington\",\"country\":\"United States of America\",\"zip_code\":\"53367-4234\"}', '{\"name\":\"Robert Reilly\",\"address_line_1\":\"6577 Koelpin Forest Apt. 361\",\"address_line_2\":null,\"city\":\"Port Babyfort\",\"state\":\"Iowa\",\"country\":\"Turks and Caicos Islands\",\"zip_code\":\"68195-3657\"}', 1, 'Iusto ea sunt officiis enim sit enim occaecati blanditiis.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 27, 'CUST-0010', 'Kilback-Mitchell', 'Dr. Lois Mohr', 'jada97@gaylord.com', '+4551652047397', 'TAX-35925793', 'Net 60', '{\"name\":\"Ardella Oberbrunner\",\"address_line_1\":\"191 Max Dale Suite 352\",\"address_line_2\":\"Suite 812\",\"city\":\"Schinnerfort\",\"state\":\"Maine\",\"country\":\"United Arab Emirates\",\"zip_code\":\"86941-2707\"}', '{\"name\":\"Carol Becker V\",\"address_line_1\":\"334 Zechariah Squares Apt. 008\",\"address_line_2\":\"Suite 825\",\"city\":\"New Janiya\",\"state\":\"Arkansas\",\"country\":\"Netherlands Antilles\",\"zip_code\":\"43081-3789\"}', 1, 'Enim laudantium ex suscipit molestias distinctio fuga fugiat.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 43, 'CUST-0011', 'Muller-Murazik', 'Lavina Tillman', 'schamberger.clement@ferry.com', '+1630256232340', 'TAX-14982525', 'Net 60', '{\"name\":\"Prof. Erich O\'Keefe Jr.\",\"address_line_1\":\"668 McKenzie Circles Suite 919\",\"address_line_2\":null,\"city\":\"Letashire\",\"state\":\"Maryland\",\"country\":\"Austria\",\"zip_code\":\"53439-6973\"}', '{\"name\":\"Mr. Dejuan Price Sr.\",\"address_line_1\":\"61895 Schuppe Walks\",\"address_line_2\":null,\"city\":\"North Keyonstad\",\"state\":\"Wyoming\",\"country\":\"Western Sahara\",\"zip_code\":\"23123\"}', 0, 'Voluptatem dolorem mollitia qui debitis magni.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 44, 'CUST-0012', 'Brekke-Lindgren', 'Josie Swaniawski', 'jhyatt@schmeler.com', '+9876015280528', 'TAX-48479901', 'Net 60', '{\"name\":\"Merl Bartell\",\"address_line_1\":\"38510 Zora Mountain\",\"address_line_2\":null,\"city\":\"Carloview\",\"state\":\"North Carolina\",\"country\":\"Bermuda\",\"zip_code\":\"46495\"}', '{\"name\":\"Rhea Deckow II\",\"address_line_1\":\"1771 Quitzon Knoll\",\"address_line_2\":\"Apt. 750\",\"city\":\"Cassinport\",\"state\":\"Alaska\",\"country\":\"Wallis and Futuna\",\"zip_code\":\"08645\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 45, 'CUST-0013', 'Brown-Turner', 'Ms. Bailee Hessel V', 'collier.unique@boyle.com', '+2306117605410', 'TAX-45916072', 'Net 15', '{\"name\":\"Sean Treutel\",\"address_line_1\":\"181 Osinski Island Suite 793\",\"address_line_2\":null,\"city\":\"Lake Chance\",\"state\":\"Wyoming\",\"country\":\"Norway\",\"zip_code\":\"12366-7869\"}', '{\"name\":\"Gust Kessler\",\"address_line_1\":\"9503 Labadie Centers\",\"address_line_2\":\"Suite 560\",\"city\":\"Port Horacio\",\"state\":\"Arkansas\",\"country\":\"Kazakhstan\",\"zip_code\":\"11567-8516\"}', 1, 'Assumenda sunt nihil illo eligendi voluptatum.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 46, 'CUST-0014', 'Rodriguez-Strosin', 'Clair Schamberger', 'cecilia07@walter.com', '+5887084048046', 'TAX-05577638', 'Net 60', '{\"name\":\"Mr. Trenton Christiansen Jr.\",\"address_line_1\":\"9499 West Dale Apt. 293\",\"address_line_2\":null,\"city\":\"Moenchester\",\"state\":\"Nebraska\",\"country\":\"Lesotho\",\"zip_code\":\"16791-5491\"}', '{\"name\":\"Kyler Connelly\",\"address_line_1\":\"8195 Feeney Shoal\",\"address_line_2\":\"Apt. 801\",\"city\":\"Littelland\",\"state\":\"Alabama\",\"country\":\"Bahamas\",\"zip_code\":\"99677\"}', 1, NULL, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 47, 'CUST-0015', 'McDermott, Jenkins and Johnston', 'Heidi Grant', 'saul.langworth@prohaska.com', '+4691475964155', 'TAX-26673206', 'Net 30', '{\"name\":\"Maximo Zemlak\",\"address_line_1\":\"4211 Cristobal Glen Apt. 023\",\"address_line_2\":\"Suite 516\",\"city\":\"East Toney\",\"state\":\"Ohio\",\"country\":\"Poland\",\"zip_code\":\"65368-2819\"}', '{\"name\":\"Ashton Kovacek\",\"address_line_1\":\"76906 Etha Stravenue\",\"address_line_2\":\"Suite 461\",\"city\":\"Port Antonemouth\",\"state\":\"Missouri\",\"country\":\"Saint Martin\",\"zip_code\":\"97842\"}', 1, 'Est odit esse a impedit est libero fugit.', 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (16, 90, 'C-1ZEFC', 'Ullrich-Adams Clinic', 'Percy Conroy', 'audrey.upton@example.net', NULL, NULL, NULL, '{\"name\":\"Percy Conroy\",\"address_line_1\":\"63A\\/37 Ebert Shore\",\"city\":\"Vigan\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"4856\"}', '{\"name\":\"Percy Conroy\",\"address_line_1\":\"79 Crist Passage\",\"city\":\"Samal\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"5215\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), (17, 91, 'C-DX2AZ', 'Stehr, Schuster and Ernser Clinic', 'Felix Simonis', 'teagan.christiansen@example.net', NULL, NULL, NULL, '{\"name\":\"Felix Simonis\",\"address_line_1\":\"16 Luettgen Run Suite 970\",\"city\":\"Tacloban\",\"state\":\"MI\",\"country\":\"Philippines\",\"zip_code\":\"7556\"}', '{\"name\":\"Felix Simonis\",\"address_line_1\":\"84\\/68 Schmidt Vista Suite 301\",\"city\":\"Antipolo\",\"state\":\"SD\",\"country\":\"Philippines\",\"zip_code\":\"5457\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), (18, 92, 'C-GYQ6Y', 'Upton-Cremin Clinic', 'Vivianne Eichmann', 'oberbrunner.jaquelin@example.com', NULL, NULL, NULL, '{\"name\":\"Vivianne Eichmann\",\"address_line_1\":\"22\\/53 Davis Mews\",\"city\":\"Sipalay\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"3184\"}', '{\"name\":\"Vivianne Eichmann\",\"address_line_1\":\"22A\\/64 Hill Valleys\",\"city\":\"Dumaguete\",\"state\":\"UT\",\"country\":\"Philippines\",\"zip_code\":\"1765\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), (19, 93, 'C-ROGZ9', 'Casper-Botsford Clinic', 'Miss Charlene Borer', 'veum.bernita@example.com', NULL, NULL, NULL, '{\"name\":\"Miss Charlene Borer\",\"address_line_1\":\"85 Strosin Via Apt. 671\",\"city\":\"Bacolod\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"8218\"}', '{\"name\":\"Miss Charlene Borer\",\"address_line_1\":\"96A Waelchi Harbor\",\"city\":\"San Fernando\",\"state\":\"PA\",\"country\":\"Philippines\",\"zip_code\":\"5570\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), (20, 94, 'C-WCMDL', 'Marquardt-Murphy Clinic', 'Prof. Heloise Yundt Sr.', 'turner.ashleigh@example.org', NULL, NULL, NULL, '{\"name\":\"Prof. Heloise Yundt Sr.\",\"address_line_1\":\"30A\\/90 Dach Plaza Suite 446\",\"city\":\"Cabadbaran\",\"state\":\"DC\",\"country\":\"Philippines\",\"zip_code\":\"6669\"}', '{\"name\":\"Prof. Heloise Yundt Sr.\",\"address_line_1\":\"04A Jast Glens Apt. 749\",\"city\":\"Pasay\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"3340\"}', 1, NULL, 2, 2, '2026-05-01 21:40:36', '2026-05-01 21:40:36'), (21, 100, 'C-I5INP', 'Wuckert and Sons Clinic', 'Lacey Dickens', 'dariana27@example.org', NULL, NULL, NULL, '{\"name\":\"Lacey Dickens\",\"address_line_1\":\"89\\/11 Lesch Harbors\",\"city\":\"San Jose\",\"state\":\"AK\",\"country\":\"Philippines\",\"zip_code\":\"7408\"}', '{\"name\":\"Lacey Dickens\",\"address_line_1\":\"26 Prohaska Plaza Apt. 165\",\"city\":\"Mu\\u00f1oz\",\"state\":\"CA\",\"country\":\"Philippines\",\"zip_code\":\"5817\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), (22, 101, 'C-UXCSF', 'Price, Ruecker and Friesen Clinic', 'Sterling Douglas DVM', 'gusikowski.stanford@example.net', NULL, NULL, NULL, '{\"name\":\"Sterling Douglas DVM\",\"address_line_1\":\"82A Kub Squares\",\"city\":\"Tangub\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"7640\"}', '{\"name\":\"Sterling Douglas DVM\",\"address_line_1\":\"12\\/79 Collins Unions\",\"city\":\"Calapan\",\"state\":\"LA\",\"country\":\"Philippines\",\"zip_code\":\"9958\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), (23, 102, 'C-RYSLT', 'Hirthe, Bartell and Doyle Clinic', 'Miss Destany Armstrong', 'esta50@example.net', NULL, NULL, NULL, '{\"name\":\"Miss Destany Armstrong\",\"address_line_1\":\"09A Homenick Hollow\",\"city\":\"Victorias\",\"state\":\"FL\",\"country\":\"Philippines\",\"zip_code\":\"7519\"}', '{\"name\":\"Miss Destany Armstrong\",\"address_line_1\":\"57\\/95 Beatty Stravenue Suite 123\",\"city\":\"Passi\",\"state\":\"KY\",\"country\":\"Philippines\",\"zip_code\":\"4654\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), (24, 103, 'C-JEOCH', 'Kling Group Clinic', 'Dr. Garrick Reichert Jr.', 'barry.green@example.org', NULL, NULL, NULL, '{\"name\":\"Dr. Garrick Reichert Jr.\",\"address_line_1\":\"85\\/27 Weimann Rapid\",\"city\":\"Cadiz\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"7460\"}', '{\"name\":\"Dr. Garrick Reichert Jr.\",\"address_line_1\":\"72 Hyatt Circles Suite 329\",\"city\":\"Malolos\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"3989\"}', 1, NULL, 2, 2, '2026-05-01 21:45:28', '2026-05-01 21:45:28'), (25, 104, 'C-QCJA6', 'Schmeler-Stoltenberg Clinic', 'Mr. Norris Wehner Sr.', 'sdouglas@example.net', NULL, NULL, NULL, '{\"name\":\"Mr. Norris Wehner Sr.\",\"address_line_1\":\"93\\/59 Schaden Junction Suite 935\",\"city\":\"Malabon\",\"state\":\"WY\",\"country\":\"Philippines\",\"zip_code\":\"6986\"}', '{\"name\":\"Mr. Norris Wehner Sr.\",\"address_line_1\":\"58\\/70 Tromp Vista\",\"city\":\"Meycauayan\",\"state\":\"MD\",\"country\":\"Philippines\",\"zip_code\":\"3109\"}', 1, NULL, 2, 2, '2026-05-01 21:45:29', '2026-05-01 21:45:29'), (26, 110, 'C-6PM7Z', 'Mosciski-Koch Clinic', 'Jackie Farrell V', 'lloyd.thiel@example.com', NULL, NULL, NULL, '{\"name\":\"Jackie Farrell V\",\"address_line_1\":\"22 Kemmer Greens\",\"city\":\"Vigan\",\"state\":\"NH\",\"country\":\"Philippines\",\"zip_code\":\"2938\"}', '{\"name\":\"Jackie Farrell V\",\"address_line_1\":\"50A\\/94 Schneider Islands\",\"city\":\"Mu\\u00f1oz\",\"state\":\"VA\",\"country\":\"Philippines\",\"zip_code\":\"6859\"}', 1, NULL, 2, 2, '2026-05-01 21:47:55', '2026-05-01 21:47:55'), (27, 111, 'C-NX828', 'Denesik-Dickens Clinic', 'Dr. Odie Gleichner', 'pouros.vernie@example.com', NULL, NULL, NULL, '{\"name\":\"Dr. Odie Gleichner\",\"address_line_1\":\"92 Durgan Prairie\",\"city\":\"San Carlos\",\"state\":\"IL\",\"country\":\"Philippines\",\"zip_code\":\"6961\"}', '{\"name\":\"Dr. Odie Gleichner\",\"address_line_1\":\"75\\/25 Dare Knolls\",\"city\":\"Borongan\",\"state\":\"FL\",\"country\":\"Philippines\",\"zip_code\":\"9285\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), (28, 112, 'C-APQXS', 'Kemmer, Orn and O\'Reilly Clinic', 'Ms. Mariela Leannon PhD', 'wisozk.herman@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Mariela Leannon PhD\",\"address_line_1\":\"28\\/61 Hahn Loaf Suite 845\",\"city\":\"Quezon City\",\"state\":\"NM\",\"country\":\"Philippines\",\"zip_code\":\"1053\"}', '{\"name\":\"Ms. Mariela Leannon PhD\",\"address_line_1\":\"25A\\/96 Morar Village Suite 185\",\"city\":\"Marawi\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"1024\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), (29, 113, 'C-3XITP', 'Greenfelder PLC Clinic', 'Warren Ward', 'feil.susana@example.com', NULL, NULL, NULL, '{\"name\":\"Warren Ward\",\"address_line_1\":\"90 Oberbrunner Circle Suite 254\",\"city\":\"Sagay\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"7596\"}', '{\"name\":\"Warren Ward\",\"address_line_1\":\"22 Kovacek Gardens Suite 930\",\"city\":\"Gingoog\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"5329\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), (30, 114, 'C-WLEBZ', 'Kuvalis-Wunsch Clinic', 'Ms. Nichole Gleichner', 'francesca37@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Nichole Gleichner\",\"address_line_1\":\"09A Casper Trail Apt. 485\",\"city\":\"Cebu City\",\"state\":\"UT\",\"country\":\"Philippines\",\"zip_code\":\"8676\"}', '{\"name\":\"Ms. Nichole Gleichner\",\"address_line_1\":\"48\\/34 Schinner Fields Suite 440\",\"city\":\"Himamaylan\",\"state\":\"WV\",\"country\":\"Philippines\",\"zip_code\":\"0396\"}', 1, NULL, 2, 2, '2026-05-01 21:47:56', '2026-05-01 21:47:56'), (31, 120, 'C-C65PV', 'Goodwin, Dicki and Lockman Clinic', 'Ms. Lenna Jakubowski', 'antonia.simonis@example.org', NULL, NULL, NULL, '{\"name\":\"Ms. Lenna Jakubowski\",\"address_line_1\":\"49 Hamill Plain\",\"city\":\"Dumaguete\",\"state\":\"OH\",\"country\":\"Philippines\",\"zip_code\":\"7585\"}', '{\"name\":\"Ms. Lenna Jakubowski\",\"address_line_1\":\"73A\\/53 Kshlerin Throughway\",\"city\":\"Cabuyao\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"7261\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), (32, 121, 'C-5PKOX', 'Kutch-Brown Clinic', 'Ms. Aryanna Murazik IV', 'kuhlman.margaretta@example.net', NULL, NULL, NULL, '{\"name\":\"Ms. Aryanna Murazik IV\",\"address_line_1\":\"61A Bechtelar Isle Apt. 422\",\"city\":\"Caloocan\",\"state\":\"GA\",\"country\":\"Philippines\",\"zip_code\":\"8074\"}', '{\"name\":\"Ms. Aryanna Murazik IV\",\"address_line_1\":\"47A Greenfelder Station Apt. 446\",\"city\":\"Ligao\",\"state\":\"CT\",\"country\":\"Philippines\",\"zip_code\":\"7205\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), (33, 122, 'C-5LIBE', 'Homenick Ltd Clinic', 'Berneice Collier', 'oswaldo.dickinson@example.org', NULL, NULL, NULL, '{\"name\":\"Berneice Collier\",\"address_line_1\":\"23 Gusikowski Land Suite 915\",\"city\":\"Tagum\",\"state\":\"CA\",\"country\":\"Philippines\",\"zip_code\":\"3618\"}', '{\"name\":\"Berneice Collier\",\"address_line_1\":\"80A Romaguera Rue Suite 573\",\"city\":\"Santiago\",\"state\":\"NE\",\"country\":\"Philippines\",\"zip_code\":\"0432\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), (34, 123, 'C-J5B8X', 'Stehr-Emard Clinic', 'Tony Gorczany', 'sigmund.kuhic@example.org', NULL, NULL, NULL, '{\"name\":\"Tony Gorczany\",\"address_line_1\":\"40\\/68 Hammes Prairie Suite 635\",\"city\":\"Bacolod\",\"state\":\"NY\",\"country\":\"Philippines\",\"zip_code\":\"1986\"}', '{\"name\":\"Tony Gorczany\",\"address_line_1\":\"68\\/55 Feest Mount Apt. 250\",\"city\":\"Mati\",\"state\":\"CO\",\"country\":\"Philippines\",\"zip_code\":\"0209\"}', 1, NULL, 2, 2, '2026-05-01 21:48:47', '2026-05-01 21:48:47'), (35, 124, 'C-CTA72', 'Bahringer PLC Clinic', 'Timothy Brakus', 'yziemann@example.com', NULL, NULL, NULL, '{\"name\":\"Timothy Brakus\",\"address_line_1\":\"41 Jacobi Heights Apt. 733\",\"city\":\"Tagaytay\",\"state\":\"ID\",\"country\":\"Philippines\",\"zip_code\":\"1845\"}', '{\"name\":\"Timothy Brakus\",\"address_line_1\":\"90A\\/39 Turner Forks Suite 074\",\"city\":\"Danao\",\"state\":\"NJ\",\"country\":\"Philippines\",\"zip_code\":\"3983\"}', 1, NULL, 2, 2, '2026-05-01 21:48:48', '2026-05-01 21:48:48'), (36, 130, 'C-PSSDT', 'Hills Group Clinic', 'Arno Schmitt', 'luettgen.declan@example.org', NULL, NULL, NULL, '{\"name\":\"Arno Schmitt\",\"address_line_1\":\"94A\\/38 Cremin Mountain Apt. 822\",\"city\":\"Cauayan\",\"state\":\"MA\",\"country\":\"Philippines\",\"zip_code\":\"3136\"}', '{\"name\":\"Arno Schmitt\",\"address_line_1\":\"45 Conn Place\",\"city\":\"Talisay\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"6007\"}', 1, NULL, 2, 2, '2026-05-01 21:49:37', '2026-05-01 21:49:37'), (37, 131, 'C-ZTQIR', 'Hill, Medhurst and Boehm Clinic', 'Prof. Georgiana Pfeffer II', 'renner.julian@example.net', NULL, NULL, NULL, '{\"name\":\"Prof. Georgiana Pfeffer II\",\"address_line_1\":\"70 Bartoletti Springs\",\"city\":\"Cavite City\",\"state\":\"RI\",\"country\":\"Philippines\",\"zip_code\":\"4427\"}', '{\"name\":\"Prof. Georgiana Pfeffer II\",\"address_line_1\":\"91A\\/35 Hegmann Key\",\"city\":\"Bayawan\",\"state\":\"AZ\",\"country\":\"Philippines\",\"zip_code\":\"0611\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (38, 132, 'C-NL6VF', 'Lakin-Larkin Clinic', 'Rhiannon Dickinson', 'wilderman.roxanne@example.com', NULL, NULL, NULL, '{\"name\":\"Rhiannon Dickinson\",\"address_line_1\":\"72A\\/51 Douglas Camp\",\"city\":\"Marikina\",\"state\":\"WI\",\"country\":\"Philippines\",\"zip_code\":\"1452\"}', '{\"name\":\"Rhiannon Dickinson\",\"address_line_1\":\"25\\/52 Rippin Course Suite 933\",\"city\":\"Borongan\",\"state\":\"DE\",\"country\":\"Philippines\",\"zip_code\":\"5129\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (39, 133, 'C-BM3NR', 'Schinner LLC Clinic', 'Deon Ratke', 'prince48@example.com', NULL, NULL, NULL, '{\"name\":\"Deon Ratke\",\"address_line_1\":\"91\\/23 Ebert Coves\",\"city\":\"Baguio\",\"state\":\"WY\",\"country\":\"Philippines\",\"zip_code\":\"8857\"}', '{\"name\":\"Deon Ratke\",\"address_line_1\":\"31\\/39 Ullrich Curve\",\"city\":\"San Carlos\",\"state\":\"ME\",\"country\":\"Philippines\",\"zip_code\":\"2843\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'), (40, 134, 'C-XMKHW', 'Herzog-Roberts Clinic', 'Mr. Ryann Dach', 'okeefe.domenick@example.net', NULL, NULL, NULL, '{\"name\":\"Mr. Ryann Dach\",\"address_line_1\":\"39 Ernser Shore\",\"city\":\"Panabo\",\"state\":\"VT\",\"country\":\"Philippines\",\"zip_code\":\"8271\"}', '{\"name\":\"Mr. Ryann Dach\",\"address_line_1\":\"89A\\/05 Hermann Motorway\",\"city\":\"Bogo\",\"state\":\"ND\",\"country\":\"Philippines\",\"zip_code\":\"2545\"}', 1, NULL, 2, 2, '2026-05-01 21:49:38', '2026-05-01 21:49:38'); -- -------------------------------------------------------- -- -- Table structure for table `customer_payments` -- CREATE TABLE `customer_payments` ( `id` bigint(20) UNSIGNED NOT NULL, `payment_number` varchar(50) NOT NULL, `payment_date` date NOT NULL, `customer_id` bigint(20) UNSIGNED NOT NULL, `bank_account_id` bigint(20) UNSIGNED NOT NULL, `reference_number` varchar(100) DEFAULT NULL, `payment_amount` decimal(15,2) NOT NULL, `status` enum('pending','cleared','cancelled') NOT NULL DEFAULT 'pending', `notes` text DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `customer_payment_allocations` -- CREATE TABLE `customer_payment_allocations` ( `id` bigint(20) UNSIGNED NOT NULL, `payment_id` bigint(20) UNSIGNED NOT NULL, `invoice_id` bigint(20) UNSIGNED NOT NULL, `allocated_amount` decimal(15,2) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_fields` -- CREATE TABLE `custom_fields` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `type` varchar(255) NOT NULL, `module` varchar(255) NOT NULL, `is_required` varchar(255) NOT NULL DEFAULT '0', `sub_module` varchar(255) NOT NULL, `created_by` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_fields_module_list` -- CREATE TABLE `custom_fields_module_list` ( `id` bigint(20) UNSIGNED NOT NULL, `module` varchar(255) DEFAULT NULL, `sub_module` varchar(255) DEFAULT NULL, `status` varchar(255) NOT NULL DEFAULT 'active', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_field_values` -- CREATE TABLE `custom_field_values` ( `id` bigint(20) UNSIGNED NOT NULL, `record_id` bigint(20) UNSIGNED NOT NULL, `field_id` bigint(20) UNSIGNED NOT NULL, `value` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `custom_pages` -- CREATE TABLE `custom_pages` ( `id` bigint(20) UNSIGNED NOT NULL, `title` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `content` longtext NOT NULL, `meta_title` varchar(255) DEFAULT NULL, `meta_description` text DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 1, `is_disabled` tinyint(1) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deals` -- CREATE TABLE `deals` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `price` decimal(10,2) DEFAULT NULL, `pipeline_id` bigint(20) UNSIGNED NOT NULL, `stage_id` bigint(20) UNSIGNED NOT NULL, `sources` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`sources`)), `products` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`products`)), `notes` longtext DEFAULT NULL, `labels` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`labels`)), `status` varchar(255) NOT NULL DEFAULT '0', `order` int(11) DEFAULT 0, `phone` varchar(20) DEFAULT NULL, `is_active` tinyint(1) NOT NULL DEFAULT 0, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deals` -- INSERT INTO `deals` (`id`, `name`, `price`, `pipeline_id`, `stage_id`, `sources`, `products`, `notes`, `labels`, `status`, `order`, `phone`, `is_active`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Product Demo Request - From Lead', 35000.00, 1, 1, '[\"14,3\"]', NULL, 'Initial contact established through multiple touchpoints with strong interest demonstrated. Follow-up meeting scheduled to discuss specific requirements and next steps.', '\"4,5\"', 'Active', 0, '+861035911179', 1, 2, 2, '2025-09-15 23:49:20', '2026-03-14 00:17:52'), (2, 'Partnership Inquiry - From Lead', 45000.00, 1, 1, '[\"12,11\"]', NULL, 'Productive discussion completed with key decision makers present. Budget parameters confirmed and approval process timeline established for moving forward with evaluation.', '\"3\"', 'Active', 0, '+338064392654', 1, 2, 2, '2025-09-22 12:50:48', '2026-03-14 00:17:52'), (3, 'Pricing Information - From Lead', 65000.00, 1, 1, '[\"13,12\"]', NULL, 'Detailed information package sent including pricing structure and implementation timeline. Client team currently reviewing materials and will provide feedback within one week.', '\"1,2,3\"', 'Active', 0, '+817506878434', 1, 2, 2, '2025-10-01 03:45:08', '2026-03-14 00:17:52'), (4, 'Solution Consultation - From Lead', 25000.00, 1, 1, '[\"4,8\"]', NULL, 'Comprehensive presentation delivered covering all requested topics and use cases. Positive reception received with several technical questions answered during the session.', '\"2,4\"', 'Active', 0, '+911449682485', 1, 2, 2, '2025-10-04 15:21:45', '2026-03-14 00:17:52'), (5, 'Service Integration - From Lead', 35000.00, 1, 2, '[\"11,6,14\"]', NULL, 'Requirements gathering session completed with thorough documentation of current processes. Gap analysis shows significant opportunities for improvement and efficiency gains.', '\"2,3,4\"', 'Active', 0, '+394742789724', 1, 2, 2, '2025-10-09 16:56:36', '2026-03-14 00:17:52'), (6, 'Custom Development - From Lead', 28000.00, 1, 2, '[\"3\"]', NULL, 'Technical evaluation meeting scheduled with IT team to assess compatibility requirements. Infrastructure review and integration planning discussion will be primary focus.', '\"2\"', 'Active', 0, '+73099331965', 1, 2, 2, '2025-10-19 08:57:14', '2026-03-14 00:17:52'), (7, 'Email Marketing Automation', 22000.00, 1, 2, '[15,14,6,10,3,5,11]', NULL, 'Executive presentation delivered to senior leadership team highlighting strategic benefits and competitive advantages. Management approval secured for proceeding with full-scale deployment.', '\"1,2,4\"', 'Won', 0, '+912740910933', 0, 2, 2, '2025-10-22 02:37:11', '2026-03-14 06:00:19'), (8, 'Video Production Services', 55000.00, 1, 3, '[8,1,12,6,13,7]', NULL, 'Technical architecture review completed with systems integration requirements documented. API specifications and data migration strategy approved by client IT department and security team.', '\"1,2,3\"', 'Won', 0, '+919046805727', 0, 2, 2, '2025-10-28 12:36:39', '2026-03-14 06:00:19'), (9, 'Marketing Analytics Platform', 42000.00, 1, 3, '[8,3,5,1,2,11,13]', NULL, 'Vendor evaluation process concluded with our solution selected as preferred choice. Reference customer calls completed successfully and due diligence phase finalized with positive outcome.', '\"2,3\"', 'Won', 0, '+448870810643', 0, 2, 2, '2025-11-03 07:03:03', '2026-03-14 06:00:19'), (10, 'Lead Generation Campaign', 38000.00, 1, 4, '[5,7,15,8,11,12,9]', NULL, 'Budget approval obtained from finance committee with investment justification accepted. Purchase order processing initiated and contract execution scheduled for next business week.', '\"5\"', 'Loss', 0, '+619320803287', 0, 2, 2, '2025-11-09 02:30:26', '2026-03-14 06:00:19'), (11, 'Cloud Migration - From Lead', 48000.00, 2, 6, '[\"3,5,15\"]', NULL, 'Security and compliance review completed with all requirements thoroughly addressed. Documentation provided covering data protection, access controls, and audit trail capabilities.', '\"7,9\"', 'Active', 0, '+273436354376', 1, 2, 2, '2025-11-18 15:22:06', '2026-03-14 00:17:52'), (12, 'Data Analysis Tools - From Lead', 32000.00, 2, 6, '[\"11,13\"]', NULL, 'Budget approval process initiated with finance committee reviewing investment proposal. Cost-benefit analysis demonstrates strong return on investment within reasonable timeframe.', '\"9\"', 'Active', 0, '+77216721645', 1, 2, 2, '2025-11-24 08:52:30', '2026-03-14 00:17:52'), (13, 'Mobile App Development - From Lead', 28000.00, 2, 6, '[\"7,1\"]', NULL, 'Executive briefing delivered to senior leadership team covering strategic benefits. Management support confirmed for proceeding with detailed evaluation and selection process.', '\"6,9\"', 'Active', 0, '+551952040203', 1, 2, 2, '2025-11-30 00:37:56', '2026-03-14 00:17:52'), (14, 'Security Assessment - From Lead', 35000.00, 2, 7, '[\"11,8\"]', NULL, 'Technical architecture review completed with systems integration requirements documented. API capabilities and data flow requirements assessed for seamless connectivity.', '\"10\"', 'Active', 0, '+824076321779', 1, 2, 2, '2025-12-02 20:32:48', '2026-03-14 00:17:52'), (15, 'E-commerce Platform - From Lead', 25000.00, 2, 7, '[\"4,11\"]', NULL, 'Vendor comparison analysis provided highlighting key differentiators and competitive advantages. Evaluation criteria matrix completed showing strong alignment with organizational needs.', '\"8,9,10\"', 'Active', 0, '+343301003144', 1, 2, 2, '2025-12-11 16:14:37', '2026-03-14 00:17:52'), (16, 'Payment Gateway - From Lead', 45000.00, 2, 7, '[\"10,5\"]', NULL, 'Proof of concept development approved with specific success criteria established. Limited scope pilot will demonstrate core functionality using real organizational data.', '\"8,10\"', 'Active', 0, '+446942871979', 1, 2, 2, '2025-12-18 06:32:05', '2026-03-14 00:17:52'), (17, 'Marketing Technology Stack', 65000.00, 2, 8, '[14,6,2,13,9,12]', NULL, 'Risk assessment and mitigation strategies developed for potential implementation challenges. Contingency plans established and escalation procedures defined for smooth project execution.', '\"10\"', 'Won', 0, '+336100784475', 0, 2, 2, '2025-12-20 22:06:14', '2026-03-14 06:00:19'), (18, 'Customer Segmentation Analysis', 32000.00, 2, 8, '[1,5,12,13,6]', NULL, 'Change management strategy implemented with comprehensive communication plan and stakeholder engagement. User adoption metrics tracked and training effectiveness measured throughout deployment.', '\"7\"', 'Won', 0, '+12524628857', 0, 2, 2, '2025-12-24 13:47:39', '2026-03-14 06:00:19'), (19, 'Conversion Rate Optimization', 38000.00, 2, 9, '[3,7,11,8,10]', NULL, 'Quality assurance framework established with testing protocols and performance benchmarks. Continuous improvement process defined for ongoing optimization and feature enhancement.', '\"7,9,10\"', 'Won', 0, '+397018158256', 0, 2, 2, '2025-12-30 14:30:05', '2026-03-14 06:00:08'), (20, 'Marketing Automation Setup', 42000.00, 2, 9, '[15,1,2,13,4]', NULL, 'Service level agreements finalized with response time commitments and availability guarantees. Support structure established with dedicated account management and technical assistance.', '\"6,8,9\"', 'Loss', 0, '+278681377569', 0, 2, 2, '2026-01-05 02:04:42', '2026-03-14 06:00:09'); -- -------------------------------------------------------- -- -- Table structure for table `deal_activity_logs` -- CREATE TABLE `deal_activity_logs` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `log_type` varchar(255) NOT NULL, `remark` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_activity_logs` -- INSERT INTO `deal_activity_logs` (`id`, `user_id`, `deal_id`, `log_type`, `remark`, `created_at`, `updated_at`) VALUES (1, 2, 1, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 2, 1, 'Create Deal Email', '{\"title\":\"Exclusive Industry Insights\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 1, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 2, 1, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 2, 1, 'Move', '{\"title\":\"Product Demo Request - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 2, 2, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 2, 2, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 2, 2, 'Move', '{\"title\":\"Partnership Inquiry - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 2, 3, 'Create Deal Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 2, 4, 'Create Deal Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 2, 5, 'Create Task', '{\"title\":\"Schedule product demonstration session\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 2, 5, 'Create Task', '{\"title\":\"Prepare technical specifications document\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 2, 5, 'Create Task', '{\"title\":\"Conduct stakeholder presentation meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (18, 2, 6, 'Create Task', '{\"title\":\"Send pricing quotation details\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (19, 2, 7, 'Upload File', '{\"file_name\":\"deal_file_7.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (20, 2, 7, 'Move', '{\"title\":\"Email Marketing Automation\",\"old_status\":\"Lead Generation\",\"new_status\":\"Lead Generation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (21, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (22, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (23, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (24, 2, 9, 'Move', '{\"title\":\"Marketing Analytics Platform\",\"old_status\":\"Handoff\",\"new_status\":\"Nurturing\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (25, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (26, 2, 10, 'Create Deal Email', '{\"title\":\"Sales Handoff Preparation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (27, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (28, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (29, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (30, 2, 11, 'Move', '{\"title\":\"Cloud Migration - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (31, 2, 12, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (32, 2, 12, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (33, 2, 12, 'Upload File', '{\"file_name\":\"deal_file_12.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (34, 2, 13, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (35, 2, 13, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (36, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (37, 2, 13, 'Upload File', '{\"file_name\":\"deal_file_13.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (38, 2, 14, 'Create Deal Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (39, 2, 14, 'Create Deal Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (40, 2, 14, 'Move', '{\"title\":\"Security Assessment - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (41, 2, 15, 'Create Deal Call', '{\"title\":\"Progress Assessment Call\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (42, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (43, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (44, 2, 16, 'Move', '{\"title\":\"Payment Gateway - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (45, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (46, 2, 17, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (47, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (48, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (49, 2, 18, 'Upload File', '{\"file_name\":\"deal_file_18.pdf\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (50, 2, 19, 'Move', '{\"title\":\"Conversion Rate Optimization\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (51, 2, 20, 'Move', '{\"title\":\"Marketing Automation Setup\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (52, 2, 1, 'Create Task', '{\"title\":\"Initial contact call with prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (53, 2, 1, 'Upload File', '{\"file_name\":\"deal_file_1.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (54, 2, 2, 'Move', '{\"title\":\"Partnership Inquiry - From Lead\",\"old_status\":\"Lead Generation\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (55, 2, 3, 'Create Task', '{\"title\":\"Prepare customized presentation materials\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (56, 2, 3, 'Create Task', '{\"title\":\"Conduct needs assessment interview\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (57, 2, 3, 'Create Task', '{\"title\":\"Send detailed proposal document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (58, 2, 3, 'Upload File', '{\"file_name\":\"deal_file_3.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (59, 2, 4, 'Create Deal Call', '{\"title\":\"Interest Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (60, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (61, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (62, 2, 6, 'Upload File', '{\"file_name\":\"deal_file_6.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (63, 2, 6, 'Move', '{\"title\":\"Custom Development - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (64, 2, 7, 'Move', '{\"title\":\"Email Marketing Automation\",\"old_status\":\"Campaign Launch\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (65, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (66, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (67, 2, 8, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (68, 2, 8, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (69, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (70, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (71, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (72, 2, 9, 'Move', '{\"title\":\"Marketing Analytics Platform\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (73, 2, 11, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (74, 2, 11, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (75, 2, 11, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (76, 2, 11, 'Create Deal Email', '{\"title\":\"Discovery Call Scheduled\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (77, 2, 11, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (78, 2, 11, 'Create Deal Email', '{\"title\":\"Discovery Call Scheduled\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (79, 2, 12, 'Create Deal Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (80, 2, 12, 'Create Deal Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (81, 2, 12, 'Create Task', '{\"title\":\"Send welcome and next steps\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (82, 2, 12, 'Create Task', '{\"title\":\"Schedule implementation planning session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (83, 2, 12, 'Create Task', '{\"title\":\"Prepare project timeline document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (84, 2, 13, 'Create Deal Call', '{\"title\":\"Basic Qualification Check\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (85, 2, 13, 'Create Deal Email', '{\"title\":\"Thank You for Your Interest\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (86, 2, 13, 'Create Deal Email', '{\"title\":\"Alternative Solutions\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (87, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (88, 2, 13, 'Create Deal Email', '{\"title\":\"Initial Contact Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (89, 2, 14, 'Upload File', '{\"file_name\":\"deal_file_14.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (90, 2, 14, 'Move', '{\"title\":\"Security Assessment - From Lead\",\"old_status\":\"Initial Contact\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (91, 2, 15, 'Upload File', '{\"file_name\":\"deal_file_15.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (92, 2, 16, 'Create Deal Email', '{\"title\":\"Qualification Approved\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (93, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (94, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (95, 2, 16, 'Create Task', '{\"title\":\"Send testing results summary\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (96, 2, 16, 'Create Task', '{\"title\":\"Schedule final approval meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (97, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (98, 2, 17, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (99, 2, 17, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (100, 2, 18, 'Upload File', '{\"file_name\":\"deal_file_18.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (101, 2, 19, 'Move', '{\"title\":\"Conversion Rate Optimization\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (102, 2, 1, 'Create Task', '{\"title\":\"Initial contact call with prospect\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (103, 2, 1, 'Upload File', '{\"file_name\":\"deal_file_1.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (104, 2, 2, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (105, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (106, 2, 2, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (107, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (108, 2, 2, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (109, 2, 3, 'Create Deal Call', '{\"title\":\"Prospect Evaluation Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (110, 2, 3, 'Move', '{\"title\":\"Pricing Information - From Lead\",\"old_status\":\"Handoff\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (111, 2, 4, 'Create Deal Email', '{\"title\":\"Welcome to Our Newsletter\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (112, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (113, 2, 4, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (114, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (115, 2, 4, 'Create Deal Email', '{\"title\":\"Creative Assets Approval\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (116, 2, 4, 'Create Deal Email', '{\"title\":\"Campaign Launch Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (117, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (118, 2, 5, 'Create Deal Call', '{\"title\":\"Educational Resource Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (119, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (120, 2, 6, 'Create Deal Call', '{\"title\":\"Resource Discussion Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (121, 2, 6, 'Create Deal Call', '{\"title\":\"Value Assessment Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (122, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (123, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (124, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (125, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (126, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (127, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (128, 2, 8, 'Upload File', '{\"file_name\":\"deal_file_8.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (129, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Nurturing\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (130, 2, 11, 'Create Task', '{\"title\":\"Schedule contract signing appointment\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (131, 2, 11, 'Create Task', '{\"title\":\"Prepare onboarding documentation package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (132, 2, 11, 'Create Task', '{\"title\":\"Conduct project kickoff meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (133, 2, 12, 'Create Task', '{\"title\":\"Send welcome and next steps\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (134, 2, 12, 'Create Task', '{\"title\":\"Schedule implementation planning session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (135, 2, 12, 'Create Task', '{\"title\":\"Prepare project timeline document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (136, 2, 12, 'Move', '{\"title\":\"Data Analysis Tools - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (137, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (138, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (139, 2, 14, 'Create Deal Call', '{\"title\":\"Criteria Review Discussion\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (140, 2, 14, 'Create Deal Call', '{\"title\":\"Status Follow-up Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (141, 2, 15, 'Create Task', '{\"title\":\"Prepare go-live checklist document\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (142, 2, 15, 'Create Task', '{\"title\":\"Conduct system testing session\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (143, 2, 15, 'Upload File', '{\"file_name\":\"deal_file_15.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (144, 2, 16, 'Create Deal Call', '{\"title\":\"Confirmation Follow-up Call\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (145, 2, 17, 'Upload File', '{\"file_name\":\"deal_file_17.pdf\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (146, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (147, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (148, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (149, 2, 18, 'Create Deal Email', '{\"title\":\"Solution Demonstration\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (150, 2, 18, 'Create Deal Email', '{\"title\":\"Technical Architecture Review\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (151, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (152, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (153, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Delivery Confirmation\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (154, 2, 20, 'Create Deal Email', '{\"title\":\"Proposal Review Meeting\"}', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (155, 2, 1, 'Move', '{\"title\":\"Product Demo Request - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (156, 2, 2, 'Create Task', '{\"title\":\"Send introduction email and company overview\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (157, 2, 2, 'Create Task', '{\"title\":\"Schedule discovery meeting appointment\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (158, 2, 2, 'Create Task', '{\"title\":\"Research prospect business requirements thoroughly\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (159, 2, 3, 'Upload File', '{\"file_name\":\"deal_file_3.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (160, 2, 3, 'Move', '{\"title\":\"Pricing Information - From Lead\",\"old_status\":\"Nurturing\",\"new_status\":\"Campaign Launch\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (161, 2, 4, 'Create Task', '{\"title\":\"Follow up on proposal feedback\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (162, 2, 4, 'Upload File', '{\"file_name\":\"deal_file_4.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (163, 2, 5, 'Upload File', '{\"file_name\":\"deal_file_5.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (164, 2, 5, 'Move', '{\"title\":\"Service Integration - From Lead\",\"old_status\":\"Qualification\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (165, 2, 6, 'Create Deal Email', '{\"title\":\"Follow-up on Your Inquiry\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (166, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (167, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (168, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (169, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (170, 2, 6, 'Create Deal Email', '{\"title\":\"Performance Metrics Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (171, 2, 6, 'Create Deal Email', '{\"title\":\"Lead Generation Results\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (172, 2, 6, 'Move', '{\"title\":\"Custom Development - From Lead\",\"old_status\":\"Campaign Launch\",\"new_status\":\"Lead Generation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (173, 2, 7, 'Upload File', '{\"file_name\":\"deal_file_7.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (174, 2, 8, 'Move', '{\"title\":\"Video Production Services\",\"old_status\":\"Qualification\",\"new_status\":\"Nurturing\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (175, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (176, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (177, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (178, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (179, 2, 9, 'Create Deal Email', '{\"title\":\"Lead Nurturing Progress\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (180, 2, 9, 'Create Deal Email', '{\"title\":\"Content Performance Report\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (181, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (182, 2, 10, 'Create Deal Email', '{\"title\":\"Sales Handoff Preparation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (183, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (184, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (185, 2, 10, 'Create Deal Email', '{\"title\":\"Lead Qualification Update\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (186, 2, 11, 'Create Deal Call', '{\"title\":\"Preliminary Evaluation Session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (187, 2, 12, 'Create Deal Call', '{\"title\":\"Assessment Review Meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (188, 2, 12, 'Create Deal Call', '{\"title\":\"Evaluation Planning Session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (189, 2, 12, 'Upload File', '{\"file_name\":\"deal_file_12.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (190, 2, 13, 'Create Task', '{\"title\":\"Conduct team introduction meeting\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (191, 2, 13, 'Create Task', '{\"title\":\"Send training materials package\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (192, 2, 13, 'Move', '{\"title\":\"Mobile App Development - From Lead\",\"old_status\":\"Needs Assessment\",\"new_status\":\"Initial Contact\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (193, 2, 14, 'Create Deal Email', '{\"title\":\"Application Under Review\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (194, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (195, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (196, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (197, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (198, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (199, 2, 14, 'Create Deal Email', '{\"title\":\"Requirements Documentation\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (200, 2, 14, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (201, 2, 15, 'Create Deal Call', '{\"title\":\"Progress Assessment Call\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (202, 2, 15, 'Create Task', '{\"title\":\"Prepare go-live checklist document\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (203, 2, 15, 'Create Task', '{\"title\":\"Conduct system testing session\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (204, 2, 16, 'Create Deal Email', '{\"title\":\"Qualification Approved\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (205, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (206, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (207, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (208, 2, 16, 'Create Deal Email', '{\"title\":\"Needs Assessment Summary\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (209, 2, 16, 'Move', '{\"title\":\"Payment Gateway - From Lead\",\"old_status\":\"Solution Fit\",\"new_status\":\"Needs Assessment\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (210, 2, 17, 'Move', '{\"title\":\"Marketing Technology Stack\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Solution Fit\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (211, 2, 18, 'Move', '{\"title\":\"Customer Segmentation Analysis\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Solution Fit\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (212, 2, 19, 'Upload File', '{\"file_name\":\"deal_file_19.pdf\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (213, 2, 20, 'Move', '{\"title\":\"Marketing Automation Setup\",\"old_status\":\"Proposal Sent\",\"new_status\":\"Proposal Sent\"}', '2026-03-14 06:00:19', '2026-03-14 06:00:19'); -- -------------------------------------------------------- -- -- Table structure for table `deal_calls` -- CREATE TABLE `deal_calls` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `subject` varchar(255) NOT NULL, `call_type` varchar(255) NOT NULL, `duration` varchar(255) NOT NULL, `user_id` bigint(20) UNSIGNED DEFAULT NULL, `description` longtext DEFAULT NULL, `call_result` text DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_calls` -- INSERT INTO `deal_calls` (`id`, `deal_id`, `subject`, `call_type`, `duration`, `user_id`, `description`, `call_result`, `created_at`, `updated_at`) VALUES (1, 1, 'Qualification Assessment Call', 'Outbound', '00:04:20', 38, 'Analyzed prospect profile and established qualification criteria for marketing solution and platform evaluation.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 1, 'Interest Assessment Meeting', 'Inbound', '00:00:54', 38, 'Established communication preferences and confirmed follow-up schedule for engagement and relationship development.', 'No answer received, will try alternative contact methods and reschedule appointment for this week.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 'Engagement Analysis Discussion', 'Inbound', '00:18:11', 31, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Valuable discussion with decision maker who provided feedback and approved continuation of evaluation process.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 3, 'Prospect Evaluation Call', 'Outbound', '00:02:57', 37, 'Reviewed prospect qualifications and established interest level for marketing automation and lead generation.', 'Unable to reach during scheduled window, proposing alternative times for connection and confirming timeline.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 4, 'Interest Assessment Meeting', 'Inbound', '00:02:17', 12, 'Coordinated prospect assessment and confirmed company profile alignment with marketing solution capabilities.', 'Unable to complete full discussion due to time constraints, rescheduled for extended session with team.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 5, 'Educational Resource Review', 'Inbound', '00:02:21', 32, 'Reviewed content marketing strategy and confirmed interest in educational resources and lead nurturing programs.', 'Interrupted by urgent matter, prospect requested reschedule for uninterrupted conversation time about budget.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 6, 'Resource Discussion Call', 'Inbound', '00:02:38', 35, 'Follow-up call to discuss marketing automation benefits and comprehensive implementation approach for business.', 'No response received despite multiple connection attempts during scheduled call window, will try alternative methods.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 6, 'Value Assessment Meeting', 'Outbound', '00:01:38', 35, 'Coordinated follow-up discussion and reviewed marketing automation benefits for lead generation and nurturing.', 'Detailed message provided with next steps and requested response regarding continued engagement and criteria.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 11, 'Preliminary Evaluation Session', 'Outbound', '00:02:12', 36, 'Conducted initial assessment call to evaluate basic qualification criteria and company fit for solution.', 'No response to call, sending calendar invitation for rescheduled meeting this week with agenda.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 12, 'Assessment Review Meeting', 'Outbound', '00:01:31', 33, 'Discussed preliminary requirements and confirmed evaluation criteria for qualification and assessment process.', 'Voicemail delivered with specific agenda items and requested confirmation of continued interest in timeline.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 12, 'Evaluation Planning Session', 'Inbound', '00:04:35', 33, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Brief interaction due to competing priorities, established new time for comprehensive discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 13, 'Basic Qualification Check', 'Outbound', '00:45:15', 22, 'Analyzed qualification factors and confirmed approach for future assessment and qualification process improvement.', 'Productive discussion completed with positive feedback and confirmed interest in moving forward with proposed solution implementation.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 14, 'Criteria Review Discussion', 'Inbound', '00:01:10', 39, 'Reviewed assessment progress and confirmed evaluation methodology for qualification and decision making process.', 'Left comprehensive voicemail with key discussion points and requested callback within two days for review.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 14, 'Status Follow-up Meeting', 'Outbound', '00:01:45', 34, 'Reviewed qualification progress and confirmed evaluation methodology for assessment and decision making process.', 'Left informative message summarizing previous discussion and outlining next steps for consideration by team.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 15, 'Progress Assessment Call', 'Inbound', '00:17:18', 34, 'Discussed review status and established timeline for qualification assessment and decision making process.', 'Positive interaction with engaged prospect who requested additional information and follow-up meeting with stakeholders.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 16, 'Confirmation Follow-up Call', 'Outbound', '00:04:32', 16, 'Analyzed qualification results and prepared handoff documentation for team coordination and next steps.', 'Prospect unavailable due to conflicting priority, confirmed alternative time for detailed discussion about requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `deal_discussions` -- CREATE TABLE `deal_discussions` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `comment` longtext NOT NULL, `creator_id` bigint(20) UNSIGNED NOT NULL, `created_by` bigint(20) UNSIGNED NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_discussions` -- INSERT INTO `deal_discussions` (`id`, `deal_id`, `comment`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 1, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 2, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 37, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 'Downloaded our whitepaper on digital marketing trends. Appears to be researching solutions for their growing business and evaluating different platforms for implementation.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 3, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 24, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 4, 'Initial contact established through website form submission. Lead shows interest in our marketing automation platform and requested information about pricing and features.', 35, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 5, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 12, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 6, 'First phone call completed successfully. Lead confirmed they are evaluating marketing automation solutions for Q2 implementation and have allocated budget for investment.', 41, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 6, 'Email exchange initiated with marketing director. Lead provided details about their current marketing challenges and team size for solution sizing and customization.', 22, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 11, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 10, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 12, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 42, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 13, 'Initial assessment completed thoroughly. Lead does not meet our minimum requirements for enterprise solution due to company size and budget constraints for implementation.', 14, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 13, 'Budget constraints identified during qualification. Lead cannot meet our minimum investment threshold at this time but expressed interest for future consideration when budget allows.', 38, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 14, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 41, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 15, 'Application submitted and under review by qualification team. Initial assessment shows potential fit based on company size, budget, and technical requirements for solution.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 15, 'Documentation review in progress with evaluation team. Lead provided comprehensive information about their requirements, current systems, and implementation timeline for assessment.', 28, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 16, 'Qualification approved based on budget, authority, need, and timeline criteria. Moving to sales process with dedicated account manager for detailed solution presentation and proposal.', 16, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 29, 2, '2025-09-22 16:49:20', '2026-03-14 00:17:52'), (18, 1, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 42, 2, '2025-10-06 12:49:20', '2026-03-14 00:17:52'), (19, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 42, 2, '2025-10-11 03:50:48', '2026-03-14 00:17:52'), (20, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 36, 2, '2025-10-12 15:45:08', '2026-03-14 00:17:52'), (21, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 41, 2, '2025-10-07 20:45:08', '2026-03-14 00:17:52'), (22, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 33, 2, '2025-10-20 08:21:45', '2026-03-14 00:17:52'), (23, 4, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 36, 2, '2025-10-17 19:21:45', '2026-03-14 00:17:52'), (24, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 30, 2, '2025-10-13 21:56:36', '2026-03-14 00:17:52'), (25, 5, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 32, 2, '2025-10-13 05:56:36', '2026-03-14 00:17:52'), (26, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 20, 2, '2025-11-09 16:57:14', '2026-03-14 00:17:52'), (27, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 39, 2, '2025-10-24 14:57:14', '2026-03-14 00:17:52'), (28, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 31, 2, '2025-11-03 00:37:11', '2026-03-14 00:17:52'), (29, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 8, 2, '2025-11-05 05:36:39', '2026-03-14 00:17:52'), (30, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 32, 2, '2025-11-22 13:03:03', '2026-03-14 00:17:52'), (31, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 26, 2, '2025-11-20 22:03:03', '2026-03-14 00:17:52'), (32, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 42, 2, '2025-11-13 04:30:26', '2026-03-14 00:17:52'), (33, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 40, 2, '2025-11-27 09:30:26', '2026-03-14 00:17:52'), (34, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 36, 2, '2025-11-26 11:22:06', '2026-03-14 00:17:52'), (35, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 24, 2, '2025-12-05 03:52:30', '2026-03-14 00:17:52'), (36, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 42, 2, '2025-12-02 11:52:30', '2026-03-14 00:17:52'), (37, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 40, 2, '2025-12-03 03:37:56', '2026-03-14 00:17:52'), (38, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 14, 2, '2025-12-10 11:32:48', '2026-03-14 00:17:52'), (39, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 34, 2, '2025-12-24 14:14:37', '2026-03-14 00:17:52'), (40, 15, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 42, 2, '2026-01-02 13:14:37', '2026-03-14 00:17:52'), (41, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 37, 2, '2025-12-30 13:32:05', '2026-03-14 00:17:52'), (42, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 39, 2, '2026-01-04 15:06:14', '2026-03-14 00:17:52'), (43, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 29, 2, '2025-12-30 14:47:39', '2026-03-14 00:17:52'), (44, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 24, 2, '2026-01-12 05:30:05', '2026-03-14 00:17:52'), (45, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 20, 2, '2026-01-18 16:30:05', '2026-03-14 00:17:52'), (46, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 29, 2, '2026-01-21 00:04:42', '2026-03-14 00:17:52'), (47, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 34, 2, '2025-09-28 14:49:20', '2026-03-14 06:00:09'), (48, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 37, 2, '2025-10-09 16:50:48', '2026-03-14 06:00:09'), (49, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 36, 2, '2025-10-11 20:45:08', '2026-03-14 06:00:09'), (50, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 40, 2, '2025-10-04 18:45:08', '2026-03-14 06:00:09'), (51, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 18, 2, '2025-10-21 00:21:45', '2026-03-14 06:00:09'), (52, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 12, 2, '2025-10-27 01:56:36', '2026-03-14 06:00:09'), (53, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 16, 2, '2025-10-27 14:57:14', '2026-03-14 06:00:09'), (54, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 18, 2, '2025-11-06 12:57:14', '2026-03-14 06:00:09'), (55, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 30, 2, '2025-10-30 09:37:11', '2026-03-14 06:00:09'), (56, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 35, 2, '2025-11-03 05:37:11', '2026-03-14 06:00:09'), (57, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 31, 2, '2025-11-16 13:36:39', '2026-03-14 06:00:09'), (58, 8, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 26, 2, '2025-11-02 04:36:39', '2026-03-14 06:00:09'), (59, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 18, 2, '2025-11-14 06:03:03', '2026-03-14 06:00:09'), (60, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 10, 2, '2025-11-11 11:03:03', '2026-03-14 06:00:09'), (61, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 8, 2, '2025-11-12 13:30:26', '2026-03-14 06:00:09'), (62, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 8, 2, '2025-12-01 00:30:26', '2026-03-14 06:00:09'), (63, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 41, 2, '2025-11-21 20:22:06', '2026-03-14 06:00:09'), (64, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 24, 2, '2025-12-06 14:52:30', '2026-03-14 06:00:09'), (65, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 32, 2, '2025-12-13 21:37:56', '2026-03-14 06:00:09'), (66, 13, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 40, 2, '2025-12-03 17:37:56', '2026-03-14 06:00:09'), (67, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 39, 2, '2025-12-12 11:32:48', '2026-03-14 06:00:09'), (68, 14, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 32, 2, '2025-12-15 02:32:48', '2026-03-14 06:00:09'), (69, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 42, 2, '2025-12-27 18:14:37', '2026-03-14 06:00:09'), (70, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 8, 2, '2026-01-04 13:32:05', '2026-03-14 06:00:09'), (71, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 26, 2, '2026-01-08 01:06:14', '2026-03-14 06:00:09'), (72, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 40, 2, '2026-01-11 20:06:14', '2026-03-14 06:00:09'), (73, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 20, 2, '2025-12-30 18:47:39', '2026-03-14 06:00:09'), (74, 18, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 32, 2, '2026-01-06 12:47:39', '2026-03-14 06:00:09'), (75, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 18, 2, '2026-01-03 00:30:05', '2026-03-14 06:00:09'), (76, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 35, 2, '2026-01-13 11:30:05', '2026-03-14 06:00:09'), (77, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 42, 2, '2026-01-17 11:04:42', '2026-03-14 06:00:09'), (78, 20, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 34, 2, '2026-01-12 13:04:42', '2026-03-14 06:00:09'), (79, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 41, 2, '2025-09-26 03:49:20', '2026-03-14 06:00:09'), (80, 1, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 28, 2, '2025-10-03 18:49:20', '2026-03-14 06:00:09'), (81, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 26, 2, '2025-10-13 07:50:48', '2026-03-14 06:00:09'), (82, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 32, 2, '2025-10-07 11:45:08', '2026-03-14 06:00:09'), (83, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 37, 2, '2025-10-22 08:45:08', '2026-03-14 06:00:09'), (84, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 30, 2, '2025-10-21 02:21:45', '2026-03-14 06:00:09'), (85, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 20, 2, '2025-10-14 13:56:36', '2026-03-14 06:00:09'), (86, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 14, 2, '2025-11-09 14:57:14', '2026-03-14 06:00:09'), (87, 6, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 28, 2, '2025-10-26 11:57:14', '2026-03-14 06:00:09'), (88, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 8, 2, '2025-10-28 08:37:11', '2026-03-14 06:00:09'), (89, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 34, 2, '2025-10-28 04:37:11', '2026-03-14 06:00:09'), (90, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 35, 2, '2025-11-17 22:36:39', '2026-03-14 06:00:09'), (91, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 24, 2, '2025-11-12 22:03:03', '2026-03-14 06:00:09'), (92, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 30, 2, '2025-11-15 10:30:26', '2026-03-14 06:00:09'), (93, 10, 'Sales handoff preparation completed with detailed lead intelligence. Each qualified lead includes engagement history, interests, and recommended approach for sales team.', 40, 2, '2025-11-12 17:30:26', '2026-03-14 06:00:09'), (94, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 32, 2, '2025-11-25 23:22:06', '2026-03-14 06:00:09'), (95, 11, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 26, 2, '2025-11-25 19:22:06', '2026-03-14 06:00:09'), (96, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-03 09:52:30', '2026-03-14 06:00:09'), (97, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 38, 2, '2025-12-06 23:52:30', '2026-03-14 06:00:09'), (98, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-10 12:37:56', '2026-03-14 06:00:09'), (99, 13, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 22, 2, '2025-12-05 03:37:56', '2026-03-14 06:00:09'), (100, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 33, 2, '2025-12-11 01:32:48', '2026-03-14 06:00:09'), (101, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 32, 2, '2025-12-28 06:14:37', '2026-03-14 06:00:09'), (102, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 33, 2, '2026-01-01 07:32:05', '2026-03-14 06:00:09'), (103, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 8, 2, '2026-01-05 05:06:14', '2026-03-14 06:00:09'), (104, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 10, 2, '2025-12-27 07:06:14', '2026-03-14 06:00:09'), (105, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 18, 2, '2025-12-31 10:47:39', '2026-03-14 06:00:09'), (106, 18, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 26, 2, '2025-12-30 18:47:39', '2026-03-14 06:00:09'), (107, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 35, 2, '2026-01-13 05:30:05', '2026-03-14 06:00:09'), (108, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 29, 2, '2026-01-18 13:30:05', '2026-03-14 06:00:09'), (109, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 12, 2, '2026-01-10 11:04:42', '2026-03-14 06:00:09'), (110, 1, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 34, 2, '2025-10-05 18:49:20', '2026-03-14 06:00:19'), (111, 2, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 38, 2, '2025-10-03 15:50:48', '2026-03-14 06:00:19'), (112, 2, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 20, 2, '2025-10-02 02:50:48', '2026-03-14 06:00:19'), (113, 3, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 28, 2, '2025-10-06 11:45:08', '2026-03-14 06:00:19'), (114, 3, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 16, 2, '2025-10-07 15:45:08', '2026-03-14 06:00:19'), (115, 4, 'Campaign strategy finalized with client approval. Creative assets are ready and media buy is confirmed. Launch checklist completed and tracking systems configured for monitoring.', 20, 2, '2025-10-12 06:21:45', '2026-03-14 06:00:19'), (116, 4, 'Launch checklist completed successfully. All tracking pixels installed and analytics dashboards configured. Campaign went live this morning across all channels with positive initial response.', 42, 2, '2025-10-08 18:21:45', '2026-03-14 06:00:19'), (117, 5, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 39, 2, '2025-10-28 06:56:36', '2026-03-14 06:00:19'), (118, 6, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 22, 2, '2025-10-31 04:57:14', '2026-03-14 06:00:19'), (119, 7, 'Lead generation metrics exceed expectations significantly. Cost per lead is 20% below target with higher quality scores. A/B testing results show improvement in conversion rates.', 24, 2, '2025-11-04 14:37:11', '2026-03-14 06:00:19'), (120, 7, 'A/B testing results show significant improvement in conversion rates with new landing page design. Lead scoring model is working effectively for qualification and prioritization.', 39, 2, '2025-11-07 01:37:11', '2026-03-14 06:00:19'), (121, 8, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 24, 2, '2025-11-04 18:36:39', '2026-03-14 06:00:19'), (122, 9, 'Lead nurturing sequences performing exceptionally well. Email open rates are 45% above industry average with strong click-through and engagement metrics.', 36, 2, '2025-11-13 03:03:03', '2026-03-14 06:00:19'), (123, 9, 'Content performance analysis shows educational materials driving highest engagement. Webinar invitations and case studies generate most qualified lead progression.', 22, 2, '2025-11-12 08:03:03', '2026-03-14 06:00:19'), (124, 10, 'Lead qualification process identifies 60 high-value prospects ready for immediate sales engagement. Scoring model accuracy validated through sales team feedback.', 36, 2, '2025-11-20 11:30:26', '2026-03-14 06:00:19'), (125, 11, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 41, 2, '2025-11-27 14:22:06', '2026-03-14 06:00:19'), (126, 11, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 29, 2, '2025-11-24 12:22:06', '2026-03-14 06:00:19'), (127, 12, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 18, 2, '2025-12-05 04:52:30', '2026-03-14 06:00:19'), (128, 12, 'Prospect responded positively to outreach. They are actively evaluating solutions for Q2 implementation. Initial qualification criteria met including budget authority and confirmed timeline.', 34, 2, '2025-12-05 18:52:30', '2026-03-14 06:00:19'), (129, 13, 'Initial contact established with key stakeholder. Initial interest confirmed and discovery call scheduled. Prospect responded positively to outreach and confirmed evaluation timeline.', 12, 2, '2025-12-04 09:37:56', '2026-03-14 06:00:19'), (130, 14, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 8, 2, '2025-12-09 06:32:48', '2026-03-14 06:00:19'), (131, 15, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 38, 2, '2025-12-20 20:14:37', '2026-03-14 06:00:19'), (132, 15, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 14, 2, '2025-12-20 14:14:37', '2026-03-14 06:00:19'), (133, 16, 'Comprehensive needs assessment completed successfully. Identified five key pain points our solution directly addresses. Stakeholder interviews revealed unanimous support for digital transformation initiative.', 20, 2, '2026-01-04 04:32:05', '2026-03-14 06:00:19'), (134, 16, 'Stakeholder interviews revealed unanimous support for digital transformation initiative. Current state analysis shows significant opportunities for efficiency improvement and cost reduction through automation.', 38, 2, '2026-01-08 15:32:05', '2026-03-14 06:00:19'), (135, 17, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 22, 2, '2025-12-31 00:06:14', '2026-03-14 06:00:19'), (136, 17, 'Technical architecture review completed successfully. Our platform integrates seamlessly with current systems while providing scalability for future growth and expansion.', 22, 2, '2026-01-04 10:06:14', '2026-03-14 06:00:19'), (137, 18, 'Solution demonstration confirmed perfect fit for all use cases. Technical team validated integration approach and confirmed compatibility with existing infrastructure.', 33, 2, '2025-12-29 08:47:39', '2026-03-14 06:00:19'), (138, 19, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 20, 2, '2026-01-06 00:30:05', '2026-03-14 06:00:19'), (139, 19, 'Proposal review meeting scheduled with all stakeholders. Technical specifications and commercial terms will be discussed in detail for final evaluation.', 16, 2, '2026-01-18 18:30:05', '2026-03-14 06:00:19'), (140, 20, 'Detailed proposal delivered with comprehensive solution overview. Executive summary highlights key benefits and investment requirements for leadership team review.', 32, 2, '2026-01-21 10:04:42', '2026-03-14 06:00:19'); -- -------------------------------------------------------- -- -- Table structure for table `deal_emails` -- CREATE TABLE `deal_emails` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `to` varchar(255) NOT NULL, `subject` varchar(255) NOT NULL, `description` text NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_emails` -- INSERT INTO `deal_emails` (`id`, `deal_id`, `to`, `subject`, `description`, `created_at`, `updated_at`) VALUES (1, 1, 'hazel.cox@gmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 1, 'hazel.cox@gmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 'leo.ward@yahoo.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 3, 'violet.richardson@hotmail.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 3, 'violet.richardson@hotmail.com', 'Exclusive Industry Insights', 'We have prepared exclusive industry insights that might be valuable for your business growth and planning.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 4, 'ezra.butler@outlook.com', 'Welcome to Our Newsletter', 'Thank you for subscribing to our newsletter. We will keep you updated with latest industry trends.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 5, 'aurora.simmons@gmail.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 6, 'kai.foster@yahoo.com', 'Follow-up on Your Inquiry', 'Thank you for reaching out to us. We would like to schedule a brief call to understand requirements.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 11, 'paisley.griffin@gmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 11, 'paisley.griffin@gmail.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 12, 'roman.diaz@hotmail.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 13, 'kinsley.hayes@outlook.com', 'Thank You for Your Interest', 'Thank you for your interest in our solutions. While our current offering may not be perfect fit.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 13, 'kinsley.hayes@outlook.com', 'Alternative Solutions', 'Although our enterprise solution might not align with your current needs, we have alternative options available.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 14, 'declan.myers@gmail.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 15, 'nova.ford@yahoo.com', 'Application Under Review', 'Your application is currently under review by our qualification team. We will update you within 48 hours.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 16, 'axel.hamilton@hotmail.com', 'Qualification Approved', 'Congratulations! Your qualification has been approved. Let us discuss the next steps in our process.', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 1, 'hello@futuretech.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-17 00:49:20', '2026-03-14 00:17:52'), (18, 1, 'maria.rodriguez@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-30 03:49:20', '2026-03-14 00:17:52'), (19, 2, 'contact@smartsys.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-07 09:50:48', '2026-03-14 00:17:52'), (20, 2, 'sarah.johnson@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-28 10:50:48', '2026-03-14 00:17:52'), (21, 3, 'contact@innovcorp.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-11 12:45:08', '2026-03-14 00:17:52'), (22, 3, 'sales@globalsol.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-06 01:45:08', '2026-03-14 00:17:52'), (23, 4, 'michelle.hall@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-06 10:21:45', '2026-03-14 00:17:52'), (24, 4, 'info@dynsol.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-13 01:21:45', '2026-03-14 00:17:52'), (25, 5, 'info@xyzind.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-17 01:56:36', '2026-03-14 00:17:52'), (26, 5, 'info@dynsol.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-18 17:56:36', '2026-03-14 00:17:52'), (27, 6, 'hello@stratcon.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-31 10:57:14', '2026-03-14 00:17:52'), (28, 6, 'sales@globalsol.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-11-03 06:57:14', '2026-03-14 00:17:52'), (29, 7, 'sales@globalsol.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 19:37:11', '2026-03-14 00:17:52'), (30, 7, 'maria.rodriguez@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-31 08:37:11', '2026-03-14 00:17:52'), (31, 8, 'support@advsys.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-11 01:36:39', '2026-03-14 00:17:52'), (32, 8, 'hello@techinno.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-12 07:36:39', '2026-03-14 00:17:52'), (33, 9, 'sarah.johnson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-07 00:03:03', '2026-03-14 00:17:52'), (34, 10, 'lisa.anderson@client.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-22 23:30:26', '2026-03-14 00:17:52'), (35, 10, 'info@xyzind.com', 'Sales Handoff Preparation', 'Preparing qualified leads for sales handoff. All leads have been scored and prioritized based on fit criteria.', '2025-11-21 03:30:26', '2026-03-14 00:17:52'), (36, 11, 'jessica.harris@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-28 09:22:06', '2026-03-14 00:17:52'), (37, 11, 'michelle.hall@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-02 10:22:06', '2026-03-14 00:17:52'), (38, 12, 'amanda.white@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-29 05:52:30', '2026-03-14 00:17:52'), (39, 13, 'info@xyzind.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-02 10:37:56', '2026-03-14 00:17:52'), (40, 14, 'contact@smartsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 21:32:48', '2026-03-14 00:17:52'), (41, 14, 'nicole.young@client.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-08 01:32:48', '2026-03-14 00:17:52'), (42, 15, 'contact@smartsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-22 04:14:37', '2026-03-14 00:17:52'), (43, 15, 'jessica.harris@client.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-13 05:14:37', '2026-03-14 00:17:52'), (44, 16, 'contact@innovcorp.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2026-01-01 00:32:05', '2026-03-14 00:17:52'), (45, 17, 'lisa.anderson@client.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-27 14:06:14', '2026-03-14 00:17:52'), (46, 17, 'support@primeserv.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-28 02:06:14', '2026-03-14 00:17:52'), (47, 18, 'sales@qualsol.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2026-01-01 15:47:39', '2026-03-14 00:17:52'), (48, 18, 'sarah.johnson@client.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2026-01-02 03:47:39', '2026-03-14 00:17:52'), (49, 19, 'jennifer.martinez@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-14 02:30:05', '2026-03-14 00:17:52'), (50, 20, 'nicole.young@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-16 08:04:42', '2026-03-14 00:17:52'), (51, 1, 'jessica.harris@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-22 02:49:20', '2026-03-14 06:00:09'), (52, 1, 'hello@techinno.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-09-22 17:49:20', '2026-03-14 06:00:09'), (53, 2, 'sarah.johnson@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-29 13:50:48', '2026-03-14 06:00:09'), (54, 3, 'hello@techinno.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-05 01:45:08', '2026-03-14 06:00:09'), (55, 4, 'nicole.young@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-15 10:21:45', '2026-03-14 06:00:09'), (56, 4, 'lisa.anderson@client.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-06 14:21:45', '2026-03-14 06:00:09'), (57, 5, 'support@primeserv.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-24 02:56:36', '2026-03-14 06:00:09'), (58, 5, 'info@xyzind.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-18 22:56:36', '2026-03-14 06:00:09'), (59, 6, 'contact@innovcorp.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 21:57:14', '2026-03-14 06:00:09'), (60, 7, 'jessica.harris@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-26 05:37:11', '2026-03-14 06:00:09'), (61, 8, 'sarah.johnson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-10-30 09:36:39', '2026-03-14 06:00:09'), (62, 8, 'sales@qualsol.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-06 03:36:39', '2026-03-14 06:00:09'), (63, 9, 'michelle.hall@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-05 12:03:03', '2026-03-14 06:00:09'), (64, 9, 'contact@abccorp.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-11 20:03:03', '2026-03-14 06:00:09'), (65, 10, 'support@advsys.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-13 13:30:26', '2026-03-14 06:00:09'), (66, 11, 'info@xyzind.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-24 16:22:06', '2026-03-14 06:00:09'), (67, 11, 'amanda.white@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-29 17:22:06', '2026-03-14 06:00:09'), (68, 12, 'support@primeserv.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-08 17:52:30', '2026-03-14 06:00:09'), (69, 12, 'nicole.young@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-05 14:52:30', '2026-03-14 06:00:09'), (70, 13, 'lisa.anderson@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-05 08:37:56', '2026-03-14 06:00:09'), (71, 14, 'admin@eliteent.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 09:32:48', '2026-03-14 06:00:09'), (72, 14, 'contact@relpart.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-10 05:32:48', '2026-03-14 06:00:09'), (73, 15, 'admin@eliteent.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-16 13:14:37', '2026-03-14 06:00:09'), (74, 16, 'jessica.harris@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-22 23:32:05', '2026-03-14 06:00:09'), (75, 17, 'info@dynsol.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-30 21:06:14', '2026-03-14 06:00:09'), (76, 18, 'contact@smartsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-25 15:47:39', '2026-03-14 06:00:09'), (77, 19, 'support@advsys.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-07 16:30:05', '2026-03-14 06:00:09'), (78, 19, 'contact@relpart.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-09 04:30:05', '2026-03-14 06:00:09'), (79, 20, 'admin@eliteent.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-06 09:04:42', '2026-03-14 06:00:09'), (80, 1, 'sales@globalsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-17 15:49:20', '2026-03-14 06:00:09'), (81, 2, 'sales@globalsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-05 22:50:48', '2026-03-14 06:00:09'), (82, 3, 'support@advsys.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-08 19:45:08', '2026-03-14 06:00:09'), (83, 4, 'hello@stratcon.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-14 10:21:45', '2026-03-14 06:00:09'), (84, 5, 'contact@innovcorp.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-20 11:56:36', '2026-03-14 06:00:09'), (85, 5, 'ashley.lewis@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-16 09:56:36', '2026-03-14 06:00:09'), (86, 6, 'emily.davis@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-28 18:57:14', '2026-03-14 06:00:09'), (87, 6, 'emily.davis@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-31 22:57:14', '2026-03-14 06:00:09'), (88, 7, 'sarah.johnson@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-26 08:37:11', '2026-03-14 06:00:09'), (89, 7, 'lisa.anderson@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-11-01 06:37:11', '2026-03-14 06:00:09'), (90, 8, 'amanda.white@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-10-30 15:36:39', '2026-03-14 06:00:09'), (91, 9, 'contact@innovcorp.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-15 01:03:03', '2026-03-14 06:00:09'), (92, 10, 'hello@futuretech.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-15 19:30:26', '2026-03-14 06:00:09'), (93, 11, 'support@primeserv.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-02 07:22:06', '2026-03-14 06:00:09'), (94, 11, 'emily.davis@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-25 07:22:06', '2026-03-14 06:00:09'), (95, 12, 'info@dynsol.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-29 17:52:30', '2026-03-14 06:00:09'), (96, 12, 'lisa.anderson@client.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-08 21:52:30', '2026-03-14 06:00:09'), (97, 13, 'nicole.young@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-10 03:37:56', '2026-03-14 06:00:09'), (98, 13, 'contact@abccorp.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-12-03 20:37:56', '2026-03-14 06:00:09'), (99, 14, 'support@advsys.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-05 12:32:48', '2026-03-14 06:00:09'), (100, 14, 'contact@innovcorp.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-07 23:32:48', '2026-03-14 06:00:09'), (101, 15, 'contact@innovcorp.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-14 18:14:37', '2026-03-14 06:00:09'), (102, 16, 'hello@stratcon.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-31 10:32:05', '2026-03-14 06:00:09'), (103, 17, 'contact@smartsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-24 11:06:14', '2026-03-14 06:00:09'), (104, 17, 'support@primeserv.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-25 17:06:14', '2026-03-14 06:00:09'), (105, 18, 'contact@relpart.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-27 05:47:39', '2026-03-14 06:00:09'), (106, 18, 'hello@techinno.com', 'Technical Architecture Review', 'Technical architecture review completed. Our solution integrates seamlessly with your existing systems.', '2025-12-31 06:47:39', '2026-03-14 06:00:09'), (107, 19, 'info@xyzind.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-13 00:30:05', '2026-03-14 06:00:09'), (108, 19, 'admin@eliteent.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-12 20:30:05', '2026-03-14 06:00:09'), (109, 20, 'info@proserv.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-09 19:04:42', '2026-03-14 06:00:09'), (110, 20, 'jennifer.martinez@client.com', 'Proposal Review Meeting', 'Proposal review meeting scheduled for next week to discuss terms, pricing, and implementation approach.', '2026-01-14 07:04:42', '2026-03-14 06:00:09'), (111, 1, 'info@dynsol.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-25 00:49:20', '2026-03-14 06:00:19'), (112, 2, 'contact@abccorp.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-09-28 18:50:48', '2026-03-14 06:00:19'), (113, 3, 'emily.davis@client.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-06 05:45:08', '2026-03-14 06:00:19'), (114, 4, 'contact@relpart.com', 'Campaign Launch Confirmation', 'Your marketing campaign has been successfully launched across all selected channels. Initial metrics look promising.', '2025-10-16 21:21:45', '2026-03-14 06:00:19'), (115, 4, 'contact@innovcorp.com', 'Creative Assets Approval', 'Please review and approve the final creative assets before we proceed with the full campaign rollout.', '2025-10-13 12:21:45', '2026-03-14 06:00:19'), (116, 5, 'amanda.white@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-12 21:56:36', '2026-03-14 06:00:19'), (117, 5, 'michelle.hall@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-15 00:56:36', '2026-03-14 06:00:19'), (118, 6, 'michelle.hall@client.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-23 14:57:14', '2026-03-14 06:00:19'), (119, 7, 'admin@eliteent.com', 'Lead Generation Results', 'Your lead generation campaign has produced 150 qualified leads in the first week. Conversion rate is above target.', '2025-10-29 12:37:11', '2026-03-14 06:00:19'), (120, 7, 'maria.rodriguez@client.com', 'Performance Metrics Update', 'Weekly performance metrics show strong engagement rates. Click-through rate is 25% higher than industry average.', '2025-10-28 09:37:11', '2026-03-14 06:00:19'), (121, 8, 'jennifer.martinez@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-05 00:36:39', '2026-03-14 06:00:19'), (122, 9, 'lisa.anderson@client.com', 'Lead Nurturing Progress', 'Lead nurturing sequences are performing well. 35% of leads have progressed to the next stage in funnel.', '2025-11-07 05:03:03', '2026-03-14 06:00:19'), (123, 9, 'contact@smartsys.com', 'Content Performance Report', 'Content performance report shows high engagement with our educational email series and webinar invitations.', '2025-11-05 01:03:03', '2026-03-14 06:00:19'), (124, 10, 'sarah.johnson@client.com', 'Lead Qualification Update', 'Lead qualification process has identified 45 high-value prospects ready for sales engagement.', '2025-11-15 07:30:26', '2026-03-14 06:00:19'), (125, 11, 'hello@futuretech.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-11-30 02:22:06', '2026-03-14 06:00:19'), (126, 11, 'hello@techinno.com', 'Discovery Call Scheduled', 'Initial contact has been established. Our team is excited to learn more about your business requirements.', '2025-11-27 21:22:06', '2026-03-14 06:00:19'), (127, 12, 'jessica.harris@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-01 21:52:30', '2026-03-14 06:00:19'), (128, 13, 'michelle.hall@client.com', 'Initial Contact Confirmation', 'Thank you for your interest in our enterprise solution. We have scheduled an initial discovery call.', '2025-12-11 06:37:56', '2026-03-14 06:00:19'), (129, 14, 'emily.davis@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-10 19:32:48', '2026-03-14 06:00:19'), (130, 15, 'lisa.anderson@client.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-26 06:14:37', '2026-03-14 06:00:19'), (131, 15, 'sales@globalsol.com', 'Requirements Documentation', 'Requirements documentation has been prepared based on our detailed discussions with your team.', '2025-12-17 21:14:37', '2026-03-14 06:00:19'), (132, 16, 'support@primeserv.com', 'Needs Assessment Summary', 'Needs assessment completed successfully. We have documented your key requirements and pain points.', '2025-12-30 09:32:05', '2026-03-14 06:00:19'), (133, 17, 'michelle.hall@client.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-25 07:06:14', '2026-03-14 06:00:19'), (134, 18, 'support@advsys.com', 'Solution Demonstration', 'Solution demonstration confirmed excellent fit for your use case. Technical team validated all requirements.', '2025-12-26 05:47:39', '2026-03-14 06:00:19'), (135, 19, 'emily.davis@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2025-12-31 22:30:05', '2026-03-14 06:00:19'), (136, 20, 'nicole.young@client.com', 'Proposal Delivery Confirmation', 'Your detailed proposal has been delivered. Please review and let us know if you have questions.', '2026-01-14 21:04:42', '2026-03-14 06:00:19'); -- -------------------------------------------------------- -- -- Table structure for table `deal_files` -- CREATE TABLE `deal_files` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_files` -- INSERT INTO `deal_files` (`id`, `deal_id`, `file_name`, `file_path`, `created_at`, `updated_at`) VALUES (1, 1, 'Training_Requirements_Lead_File.pdf', 'Training_Requirements_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 1, 'Training Requirements_Lead_File.jpg', 'Training Requirements_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 'Budget_Evaluation_Lead_File.docx', 'Budget_Evaluation_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 3, 'Integration_Assessment_Lead_File.jpg', 'Integration_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 4, 'ROI_Assessment_Lead_File.pdf', 'ROI_Assessment_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 4, 'ROI_Assessment_Lead_File.jpg', 'ROI_Assessment_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 5, 'Procurement_Review_Lead_File.docx', 'Procurement_Review_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 6, 'Quality_Control_System_Lead_File.png', 'Quality_Control_System_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 6, 'Quality_Control_System_Lead_File.docx', 'Quality_Control_System_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 11, 'E_commerce_Solution_Purchase_Lead_File.png', 'E_commerce_Solution_Purchase_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 12, 'Multi_Year_Contract_Lead_File.pdf', 'Multi_Year_Contract_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 12, 'Multi_Year_Contract_Lead_File.docx', 'Multi_Year_Contract_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 13, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 13, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 14, 'Payment_Processing_Deal_Lead_File.pdf', 'Payment_Processing_Deal_Lead_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 14, 'Payment_Processing_Deal_Lead_File.jpg', 'Payment_Processing_Deal_Lead_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 15, 'Healthcare_Software_License_Lead_File.docx', 'Healthcare_Software_License_Lead_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (18, 16, 'Corporate_License_Agreement_Lead_File.png', 'Corporate_License_Agreement_Lead_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (19, 1, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (20, 2, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (21, 3, 'Security_Evaluation_Services_Deal_File.docx', 'Security_Evaluation_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (22, 4, 'Budget_Planning_Services_Deal_File.docx', 'Budget_Planning_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (23, 5, 'Vendor_Selection_Consulting_Deal_File.jpg', 'Vendor_Selection_Consulting_Deal_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (24, 5, 'Vendor_Selection_Consulting_Deal_File.pdf', 'Vendor_Selection_Consulting_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (25, 6, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (26, 7, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (27, 8, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (28, 9, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (29, 10, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (30, 11, 'Asset_Tracking_System_Deal_File.pdf', 'Asset_Tracking_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (31, 12, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (32, 13, 'Cloud_Migration_Services_Package_Deal_File.png', 'Cloud_Migration_Services_Package_Deal_File.png', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (33, 14, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (34, 15, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (35, 16, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (36, 17, 'Communication_Platform_Upgrade_Deal_File.docx', 'Communication_Platform_Upgrade_Deal_File.docx', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (37, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (38, 19, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (39, 20, 'E_commerce_Platform_Upgrade_Deal_File.pdf', 'E_commerce_Platform_Upgrade_Deal_File.pdf', '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (40, 1, 'Security_Evaluation_Services_Deal_File.docx', 'Security_Evaluation_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (41, 2, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (42, 3, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (43, 4, 'Vendor_Selection_Consulting_Deal_File.jpg', 'Vendor_Selection_Consulting_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (44, 4, 'Vendor_Selection_Consulting_Deal_File.pdf', 'Vendor_Selection_Consulting_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (45, 5, 'ROI_Assessment_Consulting_Deal_File.pdf', 'ROI_Assessment_Consulting_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (46, 5, 'ROI_Assessment_Consulting_Deal_File.jpg', 'ROI_Assessment_Consulting_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (47, 6, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (48, 7, 'Change_Impact_Analysis_Deal_File.png', 'Change_Impact_Analysis_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (49, 8, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (50, 9, 'Enterprise_Assessment_Consulting_Deal_File.png', 'Enterprise_Assessment_Consulting_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (51, 10, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (52, 10, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (53, 11, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (54, 12, 'Financial_Reporting_Dashboard_Deal_File.png', 'Financial_Reporting_Dashboard_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (55, 13, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (56, 14, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (57, 15, 'Communication_Platform_Upgrade_Deal_File.docx', 'Communication_Platform_Upgrade_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (58, 16, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (59, 16, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (60, 17, 'Annual_Software_License_Renewal_Deal_File.png', 'Annual_Software_License_Renewal_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (61, 17, 'Annual_Software_License_Renewal_Deal_File.pdf', 'Annual_Software_License_Renewal_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (62, 18, 'Business_Process_Automation_Deal_File.pdf', 'Business_Process_Automation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (63, 19, 'Customer_Portal_Development_Deal_File.docx', 'Customer_Portal_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (64, 20, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (65, 1, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (66, 2, 'System_Integration_Evaluation_Deal_File.png', 'System_Integration_Evaluation_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (67, 2, 'System_Integration_Evaluation_Deal_File.pdf', 'System_Integration_Evaluation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (68, 3, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (69, 4, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (70, 4, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (71, 5, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (72, 6, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (73, 7, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (74, 8, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (75, 9, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (76, 10, 'Compliance_Framework_Review_Deal_File.jpg', 'Compliance_Framework_Review_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (77, 11, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (78, 12, 'E_commerce_Platform_Upgrade_Deal_File.pdf', 'E_commerce_Platform_Upgrade_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (79, 13, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (80, 14, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (81, 14, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (82, 15, 'Compliance_Management_System_Deal_File.pdf', 'Compliance_Management_System_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (83, 16, 'Mobile_Application_Development_Deal_File.png', 'Mobile_Application_Development_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (84, 16, 'Mobile_Application_Development_Deal_File.docx', 'Mobile_Application_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (85, 17, 'Financial_Reporting_Dashboard_Deal_File.png', 'Financial_Reporting_Dashboard_Deal_File.png', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (86, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (87, 19, 'Strategic_Consulting_Services_Deal_File.docx', 'Strategic_Consulting_Services_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (88, 20, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:09', '2026-03-14 06:00:09'), (89, 1, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (90, 2, 'Capacity_Assessment_Services_Deal_File.jpg', 'Capacity_Assessment_Services_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (91, 2, 'Capacity_Assessment_Services_Deal_File.pdf', 'Capacity_Assessment_Services_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (92, 3, 'Digital_Transformation_Assessment_Deal_File.jpg', 'Digital_Transformation_Assessment_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (93, 4, 'Business_Intelligence_Review_Deal_File.jpg', 'Business_Intelligence_Review_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (94, 5, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (95, 6, 'Technology_Roadmap_Planning_Deal_File.docx', 'Technology_Roadmap_Planning_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (96, 7, 'Performance_Optimization_Study_Deal_File.pdf', 'Performance_Optimization_Study_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (97, 8, 'Training_Needs_Assessment_Deal_File.pdf', 'Training_Needs_Assessment_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (98, 9, 'Procurement_Process_Review_Deal_File.docx', 'Procurement_Process_Review_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (99, 10, 'Requirements_Analysis_Services_Deal_File.pdf', 'Requirements_Analysis_Services_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (100, 11, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (101, 12, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (102, 13, 'Workflow_Automation_System_Deal_File.png', 'Workflow_Automation_System_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (103, 13, 'Workflow_Automation_System_Deal_File.jpg', 'Workflow_Automation_System_Deal_File.jpg', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (104, 14, 'Customer_Portal_Development_Deal_File.docx', 'Customer_Portal_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (105, 15, 'Business_Process_Automation_Deal_File.pdf', 'Business_Process_Automation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (106, 16, 'Asset_Tracking_System_Deal_File.pdf', 'Asset_Tracking_System_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (107, 17, 'Digital_Transformation_Initiative_Deal_File.png', 'Digital_Transformation_Initiative_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (108, 17, 'Digital_Transformation_Initiative_Deal_File.pdf', 'Digital_Transformation_Initiative_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (109, 18, 'Data_Analytics_Implementation_Deal_File.pdf', 'Data_Analytics_Implementation_Deal_File.pdf', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (110, 19, 'Mobile_Application_Development_Deal_File.png', 'Mobile_Application_Development_Deal_File.png', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (111, 19, 'Mobile_Application_Development_Deal_File.docx', 'Mobile_Application_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'), (112, 20, 'Custom_ERP_Solution_Development_Deal_File.docx', 'Custom_ERP_Solution_Development_Deal_File.docx', '2026-03-14 06:00:19', '2026-03-14 06:00:19'); -- -------------------------------------------------------- -- -- Table structure for table `deal_stages` -- CREATE TABLE `deal_stages` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `order` int(11) DEFAULT NULL, `pipeline_id` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_stages` -- INSERT INTO `deal_stages` (`id`, `name`, `order`, `pipeline_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Campaign Launch', 1, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 'Lead Generation', 2, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 'Nurturing', 3, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 'Qualification', 4, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 'Handoff', 5, 1, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 'Initial Contact', 1, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 'Needs Assessment', 2, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 'Solution Fit', 3, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 'Proposal Sent', 4, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 'Decision', 5, 2, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 'Meeting', 3, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), (12, 'Proposal', 4, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'), (13, 'Close', 5, 3, 2, 2, '2026-03-14 06:02:44', '2026-03-14 06:02:44'); -- -------------------------------------------------------- -- -- Table structure for table `deal_tasks` -- CREATE TABLE `deal_tasks` ( `id` bigint(20) UNSIGNED NOT NULL, `deal_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `date` date NOT NULL, `time` time NOT NULL, `priority` varchar(255) NOT NULL, `status` varchar(255) NOT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deal_tasks` -- INSERT INTO `deal_tasks` (`id`, `deal_id`, `name`, `date`, `time`, `priority`, `status`, `created_by`, `creator_id`, `created_at`, `updated_at`) VALUES (1, 1, 'Initial contact call with prospect', '2025-09-22', '15:52:35', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 2, 'Send introduction email and company overview', '2025-10-14', '05:23:53', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 2, 'Schedule discovery meeting appointment', '2025-10-15', '14:06:31', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 2, 'Research prospect business requirements thoroughly', '2025-10-15', '09:56:36', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 3, 'Prepare customized presentation materials', '2025-11-09', '18:00:17', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 3, 'Conduct needs assessment interview', '2025-11-09', '07:54:52', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 3, 'Send detailed proposal document', '2025-11-11', '22:36:46', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 4, 'Follow up on proposal feedback', '2025-12-17', '15:21:05', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 5, 'Schedule product demonstration session', '2026-01-10', '22:27:39', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 5, 'Prepare technical specifications document', '2026-01-11', '23:31:30', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 5, 'Conduct stakeholder presentation meeting', '2026-01-13', '06:16:08', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 6, 'Send pricing quotation details', '2026-01-25', '13:21:09', 'Medium', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 11, 'Schedule contract signing appointment', '2026-03-10', '10:36:13', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 11, 'Prepare onboarding documentation package', '2026-03-11', '15:42:18', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 11, 'Conduct project kickoff meeting', '2026-03-13', '22:55:15', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 12, 'Send welcome and next steps', '2026-03-12', '08:29:44', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 12, 'Schedule implementation planning session', '2026-03-13', '00:20:28', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (18, 12, 'Prepare project timeline document', '2026-03-14', '00:18:55', 'High', 'Complete', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (19, 13, 'Conduct team introduction meeting', '2026-03-16', '15:37:59', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (20, 13, 'Send training materials package', '2026-03-18', '03:00:20', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (21, 14, 'Schedule training session appointment', '2026-03-19', '07:49:23', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (22, 14, 'Follow up on training completion', '2026-03-21', '20:01:18', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (23, 14, 'Schedule go-live planning meeting', '2026-03-22', '09:42:35', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (24, 15, 'Prepare go-live checklist document', '2026-03-20', '13:47:27', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (25, 15, 'Conduct system testing session', '2026-03-22', '16:54:56', 'Medium', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (26, 16, 'Send testing results summary', '2026-03-23', '23:09:34', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (27, 16, 'Schedule final approval meeting', '2026-03-25', '16:04:37', 'High', 'On Going', 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `debit_notes` -- CREATE TABLE `debit_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `debit_note_number` varchar(255) NOT NULL, `debit_note_date` date NOT NULL, `vendor_id` bigint(20) UNSIGNED NOT NULL, `invoice_id` bigint(20) UNSIGNED DEFAULT NULL, `return_id` bigint(20) UNSIGNED DEFAULT NULL, `reason` varchar(255) NOT NULL, `status` enum('draft','approved','partial','applied') NOT NULL DEFAULT 'draft', `subtotal` decimal(15,2) NOT NULL DEFAULT 0.00, `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `total_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `applied_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `balance_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `notes` text DEFAULT NULL, `approved_by` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `debit_note_applications` -- CREATE TABLE `debit_note_applications` ( `id` bigint(20) UNSIGNED NOT NULL, `debit_note_id` bigint(20) UNSIGNED NOT NULL, `payment_id` bigint(20) UNSIGNED DEFAULT NULL, `applied_amount` decimal(15,2) NOT NULL, `application_date` date NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `debit_note_items` -- CREATE TABLE `debit_note_items` ( `id` bigint(20) UNSIGNED NOT NULL, `debit_note_id` bigint(20) UNSIGNED NOT NULL, `product_id` bigint(20) UNSIGNED NOT NULL, `quantity` decimal(15,2) NOT NULL, `unit_price` decimal(15,2) NOT NULL, `discount_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, `discount_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `tax_percentage` decimal(5,2) NOT NULL DEFAULT 0.00, `tax_amount` decimal(15,2) NOT NULL DEFAULT 0.00, `total_amount` decimal(15,2) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `debit_note_item_taxes` -- CREATE TABLE `debit_note_item_taxes` ( `id` bigint(20) UNSIGNED NOT NULL, `item_id` bigint(20) UNSIGNED NOT NULL, `tax_name` varchar(255) NOT NULL, `tax_rate` decimal(5,2) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `deductions` -- CREATE TABLE `deductions` ( `id` bigint(20) UNSIGNED NOT NULL, `employee_id` bigint(20) UNSIGNED NOT NULL, `deduction_type_id` bigint(20) UNSIGNED NOT NULL, `type` enum('fixed','percentage') NOT NULL, `amount` decimal(10,2) NOT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deductions` -- INSERT INTO `deductions` (`id`, `employee_id`, `deduction_type_id`, `type`, `amount`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 18, 7, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (2, 18, 1, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (3, 18, 10, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (4, 18, 9, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (5, 12, 5, 'percentage', 10.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (6, 12, 8, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (7, 12, 3, 'fixed', 350.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (8, 12, 6, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (9, 14, 8, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (10, 14, 5, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (11, 14, 4, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (12, 14, 7, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (13, 20, 6, 'fixed', 300.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (14, 20, 7, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (15, 20, 4, 'percentage', 3.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (16, 20, 2, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (17, 16, 8, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (18, 16, 9, 'fixed', 100.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (19, 16, 6, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (20, 16, 3, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (21, 26, 5, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (22, 26, 2, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (23, 26, 7, 'fixed', 200.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (24, 26, 10, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (25, 24, 5, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (26, 24, 7, 'fixed', 250.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (27, 24, 10, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (28, 24, 1, 'fixed', 350.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (29, 8, 1, 'fixed', 150.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (30, 8, 2, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (31, 8, 5, 'fixed', 300.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (32, 8, 9, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (33, 22, 9, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (34, 22, 2, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (35, 22, 6, 'percentage', 7.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (36, 22, 5, 'percentage', 2.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (37, 10, 5, 'percentage', 12.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (38, 10, 1, 'fixed', 400.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (39, 10, 2, 'percentage', 5.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'), (40, 10, 4, 'percentage', 6.00, 2, 2, '2026-03-14 00:17:52', '2026-03-14 00:17:52'); -- -------------------------------------------------------- -- -- Table structure for table `deduction_types` -- CREATE TABLE `deduction_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `description` longtext DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `deduction_types` -- INSERT INTO `deduction_types` (`id`, `name`, `description`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Income Tax', 'Tax deducted at source from employee salary as per government regulations.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (2, 'Provident Fund (PF)', 'Employee contribution to provident fund for retirement savings.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (3, 'Employee State Insurance (ESI)', 'Medical insurance contribution deducted from employee salary.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (4, 'Professional Tax', 'State government tax deducted from employee salary.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (5, 'Loan Deduction', 'Monthly installment deduction for employee loans and advances.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (6, 'Late Coming Fine', 'Penalty deduction for late attendance and tardiness.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (7, 'Absence Deduction', 'Salary deduction for unauthorized leaves and absences.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (8, 'Canteen Charges', 'Deduction for employee meal expenses and canteen services.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (9, 'Insurance Premium', 'Employee contribution for health and life insurance premiums.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'), (10, 'Uniform Charges', 'Deduction for company uniform and safety equipment costs.', 2, 2, '2026-03-14 00:17:51', '2026-03-14 00:17:51'); -- -------------------------------------------------------- -- -- Table structure for table `departments` -- CREATE TABLE `departments` ( `id` bigint(20) UNSIGNED NOT NULL, `department_name` varchar(255) NOT NULL, `branch_id` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `departments` -- INSERT INTO `departments` (`id`, `department_name`, `branch_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Sales & Marketing', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 'Operations', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 'Customer Service', 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 'Research & Development', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 'Quality Assurance', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 'Legal & Compliance', 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 'Administration', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 'Production', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 'Procurement', 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 'Human Resources', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 'Information Technology', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 'Finance & Accounting', 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 'Sales & Marketing', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 'Operations', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 'Customer Service', 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (16, 'Research & Development', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (17, 'Quality Assurance', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (18, 'Legal & Compliance', 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (19, 'Administration', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (20, 'Production', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (21, 'Procurement', 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (22, 'Human Resources', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (23, 'Information Technology', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (24, 'Finance & Accounting', 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (25, 'Sales & Marketing', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (26, 'Operations', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (27, 'Customer Service', 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (28, 'Research & Development', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (29, 'Quality Assurance', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (30, 'Legal & Compliance', 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (33, 'Head Office', NULL, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (34, 'Operations', NULL, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'); -- -------------------------------------------------------- -- -- Table structure for table `designations` -- CREATE TABLE `designations` ( `id` bigint(20) UNSIGNED NOT NULL, `designation_name` varchar(255) NOT NULL, `branch_id` bigint(20) UNSIGNED DEFAULT NULL, `department_id` bigint(20) UNSIGNED DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `designations` -- INSERT INTO `designations` (`id`, `designation_name`, `branch_id`, `department_id`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Executive', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (2, 'Senior Analyst', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (3, 'Analyst', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (4, 'Specialist', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (5, 'Coordinator', 1, 1, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (6, 'Supervisor', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (7, 'Officer', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (8, 'Associate', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (9, 'Senior Associate', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (10, 'Junior Executive', 1, 2, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (11, 'Senior Consultant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (12, 'Consultant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (13, 'Administrator', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (14, 'Senior Administrator', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (15, 'Assistant', 1, 3, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (16, 'Director', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (17, 'Manager', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (18, 'Assistant Manager', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (19, 'Team Lead', 2, 4, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (20, 'Executive', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (21, 'Senior Analyst', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (22, 'Analyst', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (23, 'Specialist', 2, 5, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (24, 'Supervisor', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (25, 'Officer', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (26, 'Associate', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (27, 'Senior Associate', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (28, 'Junior Executive', 2, 6, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (29, 'Senior Consultant', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (30, 'Consultant', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (31, 'Administrator', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (32, 'Senior Administrator', 3, 7, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (33, 'Director', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (34, 'Manager', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (35, 'Assistant Manager', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (36, 'Team Lead', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (37, 'Senior Executive', 3, 8, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (38, 'Executive', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (39, 'Senior Analyst', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (40, 'Analyst', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (41, 'Specialist', 3, 9, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (42, 'Supervisor', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (43, 'Officer', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (44, 'Associate', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (45, 'Senior Associate', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (46, 'Junior Executive', 4, 10, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (47, 'Senior Consultant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (48, 'Consultant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (49, 'Administrator', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (50, 'Senior Administrator', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (51, 'Assistant', 4, 11, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (52, 'Director', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (53, 'Manager', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (54, 'Assistant Manager', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (55, 'Team Lead', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (56, 'Senior Executive', 4, 12, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (57, 'Executive', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (58, 'Senior Analyst', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (59, 'Analyst', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (60, 'Specialist', 5, 13, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (61, 'Supervisor', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (62, 'Officer', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (63, 'Associate', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (64, 'Senior Associate', 5, 14, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (65, 'Senior Consultant', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (66, 'Consultant', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (67, 'Administrator', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (68, 'Senior Administrator', 5, 15, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (69, 'Director', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (70, 'Manager', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (71, 'Assistant Manager', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (72, 'Team Lead', 6, 16, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (73, 'Executive', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (74, 'Senior Analyst', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (75, 'Analyst', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (76, 'Specialist', 6, 17, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (77, 'Supervisor', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (78, 'Officer', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (79, 'Associate', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (80, 'Senior Associate', 6, 18, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (81, 'Senior Consultant', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (82, 'Consultant', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (83, 'Administrator', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (84, 'Senior Administrator', 7, 19, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (85, 'Director', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (86, 'Manager', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (87, 'Assistant Manager', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (88, 'Team Lead', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (89, 'Senior Executive', 7, 20, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (90, 'Executive', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (91, 'Senior Analyst', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (92, 'Analyst', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (93, 'Specialist', 7, 21, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (94, 'Supervisor', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (95, 'Officer', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (96, 'Associate', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (97, 'Senior Associate', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (98, 'Junior Executive', 8, 22, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (99, 'Senior Consultant', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (100, 'Consultant', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (101, 'Administrator', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (102, 'Senior Administrator', 8, 23, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (103, 'Director', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (104, 'Manager', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (105, 'Assistant Manager', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (106, 'Team Lead', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (107, 'Senior Executive', 8, 24, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (108, 'Executive', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (109, 'Senior Analyst', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (110, 'Analyst', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (111, 'Specialist', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (112, 'Coordinator', 9, 25, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (113, 'Supervisor', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (114, 'Officer', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (115, 'Associate', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (116, 'Senior Associate', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (117, 'Junior Executive', 9, 26, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (118, 'Senior Consultant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (119, 'Consultant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (120, 'Administrator', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (121, 'Senior Administrator', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (122, 'Assistant', 9, 27, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (123, 'Director', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (124, 'Manager', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (125, 'Assistant Manager', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (126, 'Team Lead', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (127, 'Senior Executive', 10, 28, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (128, 'Executive', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (129, 'Senior Analyst', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (130, 'Analyst', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (131, 'Specialist', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (132, 'Coordinator', 10, 29, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (133, 'Supervisor', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (134, 'Officer', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (135, 'Associate', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (136, 'Senior Associate', 10, 30, 2, 2, '2026-03-14 00:17:48', '2026-03-14 00:17:48'), (145, 'Head of Operations', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (146, 'Restaurant Manager', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (147, 'Assistant Restaurant Manager', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (148, 'Restaurant Supervisor', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (149, 'Kitchen Staff', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (150, 'Dining Staff', NULL, 34, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (151, 'Graphic Artist', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'), (152, 'Cashier', NULL, 33, NULL, 58, '2026-03-25 09:54:18', '2026-03-25 09:54:18'); -- -------------------------------------------------------- -- -- Table structure for table `document` -- CREATE TABLE `document` ( `id` bigint(20) UNSIGNED NOT NULL, `subject` varchar(255) DEFAULT NULL, `user_id` int(11) NOT NULL, `project_id` int(11) DEFAULT NULL, `type` int(11) NOT NULL, `notes` varchar(255) DEFAULT NULL, `status` varchar(255) NOT NULL DEFAULT 'pending', `description` longtext DEFAULT NULL, `additional_description` longtext DEFAULT NULL, `slug` varchar(255) NOT NULL DEFAULT 'document', `document_id` int(11) NOT NULL DEFAULT 0, `template_id` int(11) NOT NULL DEFAULT 0, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `documents_types` -- CREATE TABLE `documents_types` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `document_attechments` -- CREATE TABLE `document_attechments` ( `id` bigint(20) UNSIGNED NOT NULL, `document_id` bigint(20) UNSIGNED NOT NULL, `user_id` varchar(255) NOT NULL, `files` varchar(255) NOT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `document_categories` -- CREATE TABLE `document_categories` ( `id` bigint(20) UNSIGNED NOT NULL, `document_type` varchar(255) NOT NULL, `status` tinyint(1) NOT NULL DEFAULT 1, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `document_categories` -- INSERT INTO `document_categories` (`id`, `document_type`, `status`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'Identity Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (2, 'Educational Certificates', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (3, 'Employment Records', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (4, 'Medical Records', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (5, 'Financial Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (6, 'Legal Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (7, 'Insurance Papers', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (8, 'Tax Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (9, 'Property Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (10, 'Vehicle Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (11, 'Travel Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (12, 'Professional Licenses', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (13, 'Training Certificates', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (14, 'Performance Reviews', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'), (15, 'Contract Documents', 1, 2, 2, '2026-03-14 00:17:49', '2026-03-14 00:17:49'); -- -------------------------------------------------------- -- -- Table structure for table `document_comments` -- CREATE TABLE `document_comments` ( `id` bigint(20) UNSIGNED NOT NULL, `document_id` bigint(20) UNSIGNED NOT NULL, `user_id` varchar(255) NOT NULL, `comment` longtext NOT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `document_notes` -- CREATE TABLE `document_notes` ( `id` bigint(20) UNSIGNED NOT NULL, `document_id` bigint(20) UNSIGNED NOT NULL, `user_id` varchar(255) NOT NULL, `note` longtext NOT NULL, `workspace_id` int(11) NOT NULL DEFAULT 0, `created_by` int(11) NOT NULL DEFAULT 0, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `drivers` -- CREATE TABLE `drivers` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `select_driver_type` varchar(255) DEFAULT NULL, `password` varchar(255) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `email` varchar(255) DEFAULT NULL, `phone` varchar(255) DEFAULT NULL, `lincese_number` varchar(255) DEFAULT NULL, `lincese_type` int(11) DEFAULT NULL, `expiry_date` date DEFAULT NULL, `join_date` date DEFAULT NULL, `address` varchar(255) DEFAULT NULL, `dob` date DEFAULT NULL, `Working_time` varchar(255) DEFAULT NULL, `driver_status` varchar(255) DEFAULT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `driver_attechments` -- CREATE TABLE `driver_attechments` ( `id` bigint(20) UNSIGNED NOT NULL, `driver_id` varchar(255) NOT NULL, `file_name` varchar(255) NOT NULL, `file_path` varchar(255) NOT NULL, `file_size` varchar(255) NOT NULL, `file_status` varchar(255) NOT NULL, `workspace` int(11) DEFAULT NULL, `created_by` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `email_templates` -- CREATE TABLE `email_templates` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) DEFAULT NULL, `from` varchar(255) DEFAULT NULL, `module_name` varchar(255) DEFAULT NULL, `creator_id` bigint(20) UNSIGNED DEFAULT NULL, `created_by` bigint(20) UNSIGNED DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `email_templates` -- INSERT INTO `email_templates` (`id`, `name`, `from`, `module_name`, `creator_id`, `created_by`, `created_at`, `updated_at`) VALUES (1, 'New User', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (2, 'Customer Invoice Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (3, 'Payment Reminder', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (4, 'Invoice Payment Create', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (5, 'Proposal Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (6, 'New Helpdesk Ticket', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (7, 'New Helpdesk Ticket Reply', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (8, 'Purchase Send', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (9, 'Purchase Payment Create', 'SAP', 'general', 1, 1, '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (10, 'Deal Assigned', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (11, 'Deal Moved', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (12, 'New Task', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (13, 'Lead Assigned', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (14, 'Lead Moved', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (15, 'Lead Emails', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'), (16, 'Deal Emails', 'SAP', 'Lead', 2, 2, '2026-03-14 06:00:08', '2026-03-14 06:00:08'); -- -------------------------------------------------------- -- -- Table structure for table `email_template_langs` -- CREATE TABLE `email_template_langs` ( `id` bigint(20) UNSIGNED NOT NULL, `parent_id` int(11) NOT NULL DEFAULT 0, `lang` varchar(255) DEFAULT NULL, `subject` varchar(255) DEFAULT NULL, `content` text DEFAULT NULL, `module_name` varchar(255) DEFAULT NULL, `variables` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin DEFAULT NULL CHECK (json_valid(`variables`)), `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `email_template_langs` -- INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (1, 1, 'ar', 'Login Detail', '
مرحبا،
مرحبا بك في {app_name}.
البريد الإلكتروني : {email}
كلمه السر : {password}
{app_url}
شكر،
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (2, 1, 'da', 'Login Detail', 'Hej,
Velkommen til {app_name}.
E-mail : {email}
Adgangskode : {password}
{app_url}
Tak,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (3, 1, 'de', 'Login Detail', 'Hallo,
Willkommen zu {app_name}.
Email : {email}
Passwort : {password}
{app_url}
Vielen Dank,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (4, 1, 'en', 'Login Detail', 'Hello,
Welcome to {app_name}
Email : {email}
Password : {password}
{app_url}
\nThanks,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (5, 1, 'es', 'Login Detail', 'Hola,
Bienvenido a {app_name}.
Correo electrónico : {email}
Contraseña : {password}
{app_url}
Gracias,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (6, 1, 'fr', 'Login Detail', 'Bonjour,
Bienvenue à {app_name}.
Email : {email}
Mot de passe : {password}
{app_url}
Merci,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (7, 1, 'it', 'Login Detail', 'Ciao,
Benvenuto a {app_name}.
E-mail : {email}
Parola d\'ordine : {password}
{app_url}
Grazie,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (8, 1, 'ja', 'Login Detail', 'こんにちは、
へようこそ {app_name}.
Eメール : {email}
パスワード : {password}
{app_url}
おかげで、
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (9, 1, 'nl', 'Login Detail', 'Hallo,
Welkom bij {app_name}.
E-mail : {email}
Wachtwoord : {password}
{app_url}
Bedankt,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (10, 1, 'pl', 'Login Detail', 'Witaj,
Witamy w {app_name}.
E-mail : {email}
Hasło : {password}
{app_url}
Dzięki,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (11, 1, 'pt', 'Login Detail', 'Olá, Bem-vindo a {app_name}.
\nE-mail: {email}
\nSenha: {password}
\n{app_url}
\n\n
Obrigado,
\n{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (12, 1, 'pt-BR', 'Login Detail', 'Olá, Bem-vindo a {app_name}.
\nE-mail: {email}
\nSenha: {password}
\n{app_url}
\n\n
Obrigado,
\n{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (13, 1, 'ru', 'Login Detail', 'Привет,
Добро пожаловать в {app_name}.
Электронная почта : {email}
Пароль : {password}
{app_url}
Спасибо,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (14, 1, 'he', 'Login Detail', 'שלום,
ברוך הבא אל {app_name}
אימייל : {email}
סיסמה : {password}
{app_url}
תודה,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (15, 1, 'tr', 'Login Detail', 'Merhaba,
{app_name} uygulamasına hoş geldiniz
E-posta : {email}
Şifre : {password}
{app_url}
Teşekkürler,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (16, 1, 'zh', 'Login Detail', '您好,
欢迎使用 {app_name}
邮箱 : {email}
密码 : {password}
{app_url}
谢谢,
{company_name}
{app_name}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Name\\\": \\\"name\\\",\\n \\\"Email\\\": \\\"email\\\",\\n \\\"Password\\\": \\\"password\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (17, 2, 'ar', 'Customer Invoice Send', 'مرحبا ، {invoice_name}
\nمرحبا بك في {app_name}
\nأتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الفاتورة الملحقة {invoice_number} للخدمة / الخدمة.
\nببساطة اضغط على الاختيار بأسفل.
\n \n \nإشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.
\nشكرا لك
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (18, 2, 'da', 'Customer Invoice Send', 'Hej, {invoice_name}
\nVelkommen til {app_name}
\nHåber denne e-mail finder dig godt! Se vedlagte fakturanummer {invoice_number} for product/service.
\nKlik på knappen nedenfor.
\n \n \nDu er velkommen til at række ud, hvis du har nogen spørgsmål.
\nTak.
\n\n
Med venlig hilsen
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (19, 2, 'de', 'Customer Invoice Send', 'Hi, {invoice_name}
\nWillkommen bei {app_name}
\nHoffe, diese E-Mail findet dich gut! Bitte beachten Sie die beigefügte Rechnungsnummer {invoice_number} für Produkt/Service.
\nKlicken Sie einfach auf den Button unten.
\n \n \nFühlen Sie sich frei, wenn Sie Fragen haben.
\nVielen Dank,
\n\n
Betrachtet,
\n{company_name}
\n{app_url}
\n ', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (20, 2, 'en', 'Customer Invoice Send', 'Hi, {invoice_name}
\nWelcome to {app_name}
\nHope this email finds you well! Please see attached invoice number {invoice_number} for product/service.
\nSimply click on the button below.
\n \n \nFeel free to reach out if you have any questions.
\nThank You,
\nRegards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (21, 2, 'es', 'Customer Invoice Send', 'Hi, {invoice_name}
\n\n
Bienvenido a {app_name}
+\n\n
¡Espero que este email le encuentre bien! Consulte el número de factura adjunto {invoice_number} para el producto/servicio.
\n\n
Simplemente haga clic en el botón de abajo.
\n\n \n
\n \n
\n
Siéntase libre de llegar si usted tiene alguna pregunta.
\n\n
Gracias,
\n\n
Considerando,
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (22, 2, 'fr', 'Customer Invoice Send', 'Bonjour, {invoice_name}
\n\n
Bienvenue dans {app_name}
\n\n
Jespère que ce courriel vous trouve bien ! Voir le numéro de facture {invoice_number} pour le produit/service.
\n\n
Cliquez simplement sur le bouton ci-dessous.
\n\n \n
\n \n
\n
Nhésitez pas à nous contacter si vous avez des questions.
\n\n
Merci,
\n\n
Regards,
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (23, 2, 'it', 'Customer Invoice Send', 'Ciao, {invoice_name}
\n\n
Benvenuti in {app_name}
\n\n
Spero che questa email ti trovi bene! Si prega di consultare il numero di fattura collegato {invoice_number} per il prodotto/servizio.
\n\n
Semplicemente clicca sul pulsante sottostante.
\n\n \n
\n \n
\n
Sentiti libero di raggiungere se hai domande.
\n\n
Grazie,
\n\n
Riguardo,
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (24, 2, 'ja', 'Customer Invoice Send', 'こんにちは、 {invoice_name}
\n\n
{app_name} へようこそ
\n\n
この E メールでよくご確認ください。 製品 / サービスについては、添付された請求書番号 {invoice_number} を参照してください。
\n\n
以下のボタンをクリックしてください。
\n\n \n
\n \n
\n
質問がある場合は、自由に連絡してください。
\n\n
ありがとうございます
\n\n
よろしく
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (25, 2, 'nl', 'Customer Invoice Send', 'Hallo, {invoice_name}
\nWelkom bij {app_name}
\nHoop dat deze e-mail je goed vindt! Zie bijgevoegde factuurnummer {invoice_number} voor product/service.
\nKlik gewoon op de knop hieronder.
\n \n \nVoel je vrij om uit te reiken als je vragen hebt.
\nDank U,
\nBetreft:
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (26, 2, 'pl', 'Customer Invoice Send', 'Witaj, {invoice_name}
\n\n
Witamy w aplikacji {app_name }
\n\n
Mam nadzieję, że ta wiadomość znajdzie Cię dobrze! Sprawdź załączoną fakturę numer {invoice_number} dla produktu/usługi.
\n\n
Wystarczy kliknąć na przycisk poniżej.
\n\n \n
\n \n
\n
Czuj się swobodnie, jeśli masz jakieś pytania.
\n\n
Dziękuję,
\n\n
W odniesieniu do
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (27, 2, 'ru', 'Customer Invoice Send', 'Привет, {invoice_name}
\n\n
Вас приветствует {app_name}
\n\n
Надеюсь, это электронное письмо найдет вас хорошо! См. вложенный номер счета-фактуры {invoice_number} для производства/услуги.
\n\n
Просто нажмите на кнопку внизу.
\n\n \n
\n \n
\n
Не стеснитесь, если у вас есть вопросы.
\n\n
Спасибо.
\n\n
С уважением,
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (28, 2, 'pt', 'Customer Invoice Send', 'Oi, {invoice_name}
\n\n
Bem-vindo a {app_name}
\n\n
Espero que este e-mail encontre você bem! Por favor, consulte o número da fatura anexa {invoice_number} para produto/serviço.
\n\n
Basta clicar no botão abaixo.
\n\n \n
\n \n
\n
Sinta-se à vontade para alcançar fora se você tiver alguma dúvida.
\n\n
Obrigado,
\n\n
Considera,
\n\n
{company_name}
\n\n
{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (29, 2, 'pt-BR', 'Customer Invoice Send', 'Olá, {invoice_name}
\nBem-vindo(a) ao {app_name}
\nEspero que este e-mail o(a) encontre bem! Em anexo, você encontrará a fatura número {invoice_number} referente ao produto/serviço.
\nBasta clicar no botão abaixo.
\n \n \nSe tiver alguma dúvida, não hesite em entrar em contato.
\nObrigado,
\nAtenciosamente,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (30, 2, 'he', 'Customer Invoice Send', 'שלום, {invoice_name}
\nברוך הבא ל-{app_name}
\nאני מקווה שהאימייל הזה מוצא אותך בטוב! מצורפת חשבונית מספר {invoice_number} עבור המוצר/השירות.
\nפשוט לחץ על הכפתור למטה.
\n \n \nאל תהסס לפנות אם יש לך שאלות.
\nתודה,
\nבברכה,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (31, 2, 'tr', 'Customer Invoice Send', 'Merhaba, {invoice_name}
\n{app_name}’e hoş geldiniz
\nUmarım bu e-posta sizi iyi bulur! {invoice_number} numaralı fatura ürün/hizmet için ektedir.
\nAşağıdaki butona tıklamanız yeterlidir.
\n \n \nHerhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin.
\nTeşekkürler,
\nSaygılarımızla,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (32, 2, 'zh', 'Customer Invoice Send', '您好,{invoice_name}
\n欢迎使用 {app_name}
\n希望您一切安好!随信附上编号为 {invoice_number} 的发票(产品/服务)。
\n请点击下面的按钮。
\n \n \n如有任何问题,请随时联系我们。
\n谢谢!
\n此致敬礼,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Invoice Name\\\": \\\"invoice_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Download Invoice \\\": \\\"invoice_url\\\",\\n \\\"Pay Invoice\\\" : \\\"pay_invoice_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (33, 3, 'ar', 'Payment Reminder', 'عزيزي ، {payment_name}
\nآمل أن تكون بخير. هذا مجرد تذكير بأن الدفع على الفاتورة {invoice_number} الاجمالي {payment_dueAmount} ، والتي قمنا بارسالها على {payment_date} مستحق اليوم.
\nيمكنك دفع مبلغ لحساب البنك المحدد على الفاتورة.
\nأنا متأكد أنت مشغول ، لكني أقدر إذا أنت يمكن أن تأخذ a لحظة ونظرة على الفاتورة عندما تحصل على فرصة.
\nإذا كان لديك أي سؤال مهما يكن ، يرجى الرد وسأكون سعيدا لتوضيحها.
\n\n
شكرا
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (34, 3, 'da', 'Payment Reminder', '
Kære, {payment_name}
\nDette er blot en påmindelse om, at betaling på faktura {invoice_number} i alt {payment_dueAmount}, som vi sendte til {payment_date}, er forfalden i dag.
\nDu kan foretage betalinger til den bankkonto, der er angivet på fakturaen.
\nJeg er sikker på du har travlt, men jeg ville sætte pris på, hvis du kunne tage et øjeblik og se på fakturaen, når du får en chance.
\nHvis De har nogen spørgsmål, så svar venligst, og jeg vil med glæde tydeliggøre dem.
\n\n
Tak.
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (35, 3, 'de', 'Payment Reminder', '
Sehr geehrte/r, {payment_name}
\nIch hoffe, Sie sind gut. Dies ist nur eine Erinnerung, dass die Zahlung auf Rechnung {invoice_number} total {payment_dueAmount}, die wir gesendet am {payment_date} ist heute fällig.
\nSie können die Zahlung auf das auf der Rechnung angegebene Bankkonto vornehmen.
\nIch bin sicher, Sie sind beschäftigt, aber ich würde es begrüßen, wenn Sie einen Moment nehmen und über die Rechnung schauen könnten, wenn Sie eine Chance bekommen.
\nWenn Sie irgendwelche Fragen haben, antworten Sie bitte und ich würde mich freuen, sie zu klären.
\n\n
Danke,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (36, 3, 'en', 'Payment Reminder', '
Dear, {payment_name}
\nI hope you’re well.This is just a reminder that payment on invoice {invoice_number} total dueAmount {payment_dueAmount} , which we sent on {payment_date} is due today.
\nYou can make payment to the bank account specified on the invoice.
\nI’m sure you’re busy, but I’d appreciate if you could take a moment and look over the invoice when you get a chance.
\nIf you have any questions whatever, please reply and I’d be happy to clarify them.
\n\n
Thanks,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (37, 3, 'es', 'Payment Reminder', '
Estimado, {payment_name}
\nEspero que estés bien. Esto es sólo un recordatorio de que el pago en la factura {invoice_number} total {payment_dueAmount}, que enviamos en {payment_date} se vence hoy.
\nPuede realizar el pago a la cuenta bancaria especificada en la factura.
\nEstoy seguro de que estás ocupado, pero agradecería si podrías tomar un momento y mirar sobre la factura cuando tienes una oportunidad.
\nSi tiene alguna pregunta, por favor responda y me gustaría aclararlas.
\n\n
Gracias,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (38, 3, 'fr', 'Payment Reminder', '
Cher, {payment_name}
\nJespère que vous êtes bien, ce nest quun rappel que le paiement sur facture {invoice_number}total {payment_dueAmount}, que nous avons envoyé le {payment_date} est dû aujourdhui.
\nVous pouvez effectuer le paiement sur le compte bancaire indiqué sur la facture.
\nJe suis sûr que vous êtes occupé, mais je vous serais reconnaissant de prendre un moment et de regarder la facture quand vous aurez une chance.
\nSi vous avez des questions, veuillez répondre et je serais heureux de les clarifier.
\n\n
Merci,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (39, 3, 'it', 'Payment Reminder', '
Caro, {payment_name}
\nSpero che tu stia bene, questo è solo un promemoria che il pagamento sulla fattura {invoice_number} totale {payment_dueAmount}, che abbiamo inviato su {payment_date} è dovuto oggi.
\nÈ possibile effettuare il pagamento al conto bancario specificato sulla fattura.
\nSono sicuro che sei impegnato, ma apprezzerei se potessi prenderti un momento e guardare la fattura quando avrai una chance.
\nSe avete domande qualunque, vi prego di rispondere e sarei felice di chiarirle.
\n\n
Grazie,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (40, 3, 'ja', 'Payment Reminder', '
ID、 {payment_name}
\nこれは、 {payment_dueAmount} の合計 {payment_dueAmount} に対する支払いが今日予定されていることを思い出させていただきたいと思います。
\n請求書に記載されている銀行口座に対して支払いを行うことができます。
\nお忙しいのは確かですが、機会があれば、少し時間をかけてインボイスを見渡すことができればありがたいのですが。
\n何か聞きたいことがあるなら、お返事をお願いしますが、喜んでお答えします。
\n\n
ありがとう。
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (41, 3, 'nl', 'Payment Reminder', '
Geachte, {payment_name}
\nIk hoop dat u goed bent. Dit is gewoon een herinnering dat betaling op factuur {invoice_number} totaal {payment_dueAmount}, die we verzonden op {payment_date} is vandaag verschuldigd.
\nU kunt betaling doen aan de bankrekening op de factuur.
\nIk weet zeker dat je het druk hebt, maar ik zou het op prijs stellen als je even over de factuur kon kijken als je een kans krijgt.
\nAls u vragen hebt, beantwoord dan uw antwoord en ik wil ze graag verduidelijken.
\n\n
Bedankt.
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (42, 3, 'pl', 'Payment Reminder', '
Drogi, {payment_name}
\nMam nadzieję, że jesteś dobrze. To jest tylko przypomnienie, że płatność na fakturze {invoice_number} total {payment_dueAmount}, które wysłaliśmy na {payment_date} jest dzisiaj.
\nPłatność można dokonać na rachunek bankowy podany na fakturze.
\nJestem pewien, że jesteś zajęty, ale byłbym wdzięczny, gdybyś mógł wziąć chwilę i spojrzeć na fakturę, kiedy masz szansę.
\nJeśli masz jakieś pytania, proszę o odpowiedź, a ja chętnie je wyjaśniam.
\n\n
Dziękuję,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (43, 3, 'ru', 'Payment Reminder', '
Уважаемый, {payment_name}
\nЯ надеюсь, что вы хорошо. Это просто напоминание о том, что оплата по счету {invoice_number} всего {payment_dueAmount}, которое мы отправили в {payment_date}, сегодня.
\nВы можете произвести платеж на банковский счет, указанный в счете-фактуре.
\nЯ уверена, что ты занята, но я была бы признательна, если бы ты смог бы поглядеться на счет, когда у тебя появится шанс.
\nЕсли у вас есть вопросы, пожалуйста, ответьте, и я буду рад их прояснить.
\n\n
Спасибо.
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (44, 3, 'pt', 'Payment Reminder', '
Querido, {payment_name}
\nEspero que você esteja bem. Este é apenas um lembrete de que o pagamento na fatura {invoice_number} total {payment_dueAmount}, que enviamos em {payment_date} é devido hoje.
\nVocê pode fazer o pagamento à conta bancária especificada na fatura.
\nEu tenho certeza que você está ocupado, mas eu agradeceria se você pudesse tirar um momento e olhar sobre a fatura quando tiver uma chance.
\nSe você tiver alguma dúvida o que for, por favor, responda e eu ficaria feliz em esclarecê-las.
\n\n
Obrigado,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (45, 3, 'pt-BR', 'Payment Reminder', '
Prezado(a), {payment_name}
\nEspero que esteja bem. Este é apenas um lembrete de que o pagamento da fatura {invoice_number}, no valor total de {payment_dueAmount}, que enviamos em {payment_date}, vence hoje.
\nVocê pode efetuar o pagamento na conta bancária especificada na fatura.
\nTenho certeza de que você está ocupado(a), mas agradeceria se pudesse reservar um momento para revisar a fatura assim que tiver oportunidade.
\nSe tiver alguma dúvida, por favor responda a este e-mail e terei prazer em esclarecê-las.
\n\n
Obrigado,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (46, 3, 'he', 'Payment Reminder', '
יקר/ה, {payment_name}
\nאני מקווה שהכול בסדר אצלך. זהו רק תזכורת שהתשלום על חשבונית {invoice_number}, בסכום כולל של {payment_dueAmount}, שנשלחה בתאריך {payment_date}, חל היום.
\nבאפשרותך לבצע את התשלום לחשבון הבנק המצוין בחשבונית.
\nאני בטוח/ה שאתה עסוק/ה, אבל אעריך אם תוכל/י להקדיש רגע ולעיין בחשבונית כשיתאפשר לך.
\nאם יש לך שאלות כלשהן, אנא השב/י למייל ואשמח להבהיר אותן.
\n\n
תודה,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (47, 3, 'tr', 'Payment Reminder', '
Sayın {payment_name},
\nUmarım iyisinizdir. Bu yalnızca bir hatırlatmadır: {payment_date} tarihinde gönderdiğimiz {invoice_number} numaralı faturanın toplam tutarı {payment_dueAmount} olup, bugün vadesi dolmaktadır.
\nÖdemeyi faturada belirtilen banka hesabına yapabilirsiniz.
\nYoğun olduğunuzu biliyorum, ancak fırsat bulduğunuzda faturayı gözden geçirmenizi çok takdir ederim.
\nHerhangi bir sorunuz olursa, lütfen bu e-postayı yanıtlayın; memnuniyetle açıklık getireceğim.
\n\n
Teşekkürler,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (48, 3, 'zh', 'Payment Reminder', '
尊敬的 {payment_name},
\n希望您一切顺利。这只是一个提醒:我们于 {payment_date} 发送的编号为 {invoice_number} 的发票,总金额 {payment_dueAmount},今天到期。
\n您可以将付款转至发票中指定的银行账户。
\n我理解您可能很忙,但如果您有时间,请抽空查看一下发票。
\n如果您有任何问题,请随时回复邮件,我将很乐意为您解答。
\n\n
谢谢,
\n{company_name}
\n{app_url}
\n', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Due Amount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (49, 4, 'ar', 'Invoice Payment Create', '
مرحبا
\nمرحبا بك في {app_name}
\nعزيزي {payment_name}
\nلقد قمت باستلام المبلغ الخاص بك {payment_amount} لبرنامج {invoice_number} الذي تم تقديمه في التاريخ {payment_date}
\nمقدار الاستحقاق {invoice_number} الخاص بك هو {payment_dueAmount}
\nونحن نقدر الدفع الفوري لكم ونتطلع إلى استمرار العمل معكم في المستقبل.
\n\n
شكرا جزيلا لكم ويوم جيد ! !
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (50, 4, 'da', 'Invoice Payment Create', 'Hej.
\nVelkommen til {app_name}
\nKære {payment_name}
\nVi har modtaget din mængde {payment_amount} betaling for {invoice_number} undert.d. på dato {payment_date}
\nDit {invoice_number} Forfaldsbeløb er {payment_dueAmount}
\nVi sætter pris på din hurtige betaling og ser frem til fortsatte forretninger med dig i fremtiden.
\nMange tak, og ha en god dag!
\n\n
Med venlig hilsen
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (51, 4, 'de', 'Invoice Payment Create', 'Hi,
\nWillkommen bei {app_name}
\nSehr geehrter {payment_name}
\nWir haben Ihre Zahlung {payment_amount} für {invoice_number}, die am Datum {payment_date} übergeben wurde, erhalten.
\nIhr {invoice_number} -fälliger Betrag ist {payment_dueAmount}
\nWir freuen uns über Ihre prompte Bezahlung und freuen uns auf das weitere Geschäft mit Ihnen in der Zukunft.
\nVielen Dank und habe einen guten Tag!!
\n\n
Betrachtet,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (52, 4, 'en', 'Invoice Payment Create', 'Hi,
\nWelcome to {app_name}
\nDear {payment_name}
\nWe have recieved your amount {payment_amount} payment for {invoice_number} submited on date {payment_date}
\nYour {invoice_number} Due amount is {payment_dueAmount}
\nWe appreciate your prompt payment and look forward to continued business with you in the future.
\nThank you very much and have a good day!!
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (53, 4, 'es', 'Invoice Payment Create', 'Hola,
\nBienvenido a {app_name}
\nEstimado {payment_name}
\nHemos recibido su importe {payment_amount} pago para {invoice_number} submitado en la fecha {payment_date}
\nEl importe de {invoice_number} Due es {payment_dueAmount}
\nAgradecemos su pronto pago y esperamos continuar con sus negocios con usted en el futuro.
\nMuchas gracias y que tengan un buen día!!
\n\n
Considerando,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (54, 4, 'fr', 'Invoice Payment Create', 'Salut,
\nBienvenue dans {app_name}
\nCher {payment_name}
\nNous avons reçu votre montant {payment_amount} de paiement pour {invoice_number} soumis le {payment_date}
\nVotre {invoice_number} Montant dû est {payment_dueAmount}
\nNous apprécions votre rapidité de paiement et nous attendons avec impatience de poursuivre vos activités avec vous à lavenir.
\nMerci beaucoup et avez une bonne journée ! !
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (55, 4, 'it', 'Invoice Payment Create', 'Ciao,
\nBenvenuti in {app_name}
\nCaro {payment_name}
\nAbbiamo ricevuto la tua quantità {payment_amount} pagamento per {invoice_number} subita alla data {payment_date}
\nIl tuo {invoice_number} A somma cifra è {payment_dueAmount}
\nApprezziamo il tuo tempestoso pagamento e non vedo lora di continuare a fare affari con te in futuro.
\nGrazie mille e buona giornata!!
\n\n
Riguardo,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (56, 4, 'ja', 'Invoice Payment Create', 'こんにちは。
\n{app_name} へようこそ
\n{ payment_name} に出れます
\n{ payment_date} 日付で提出された {請求書番号} の支払金額 } の金額を回収しました。 }
\nお客様の {請求書番号} 予定額は {payment_dueAmount} です
\nお客様の迅速な支払いを評価し、今後も継続してビジネスを継続することを期待しています。
\nありがとうございます。良い日をお願いします。
\n\n
よろしく
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (57, 4, 'nl', 'Invoice Payment Create', 'Hallo,
\nWelkom bij {app_name}
\nBeste {payment_name}
\nWe hebben uw bedrag ontvangen {payment_amount} betaling voor {invoice_number} ingediend op datum {payment_date}
\nUw {invoice_number} verschuldigde bedrag is {payment_dueAmount}
\nWij waarderen uw snelle betaling en kijken uit naar verdere zaken met u in de toekomst.
\nHartelijk dank en hebben een goede dag!!
\n\n
Betreft:
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (58, 4, 'pl', 'Invoice Payment Create', 'Witam,
\nWitamy w aplikacji {app_name }
\nDroga {payment_name}
\nOdebrano kwotę {payment_amount } płatności za {invoice_number} w dniu {payment_date}, który został zastąpiony przez użytkownika.
\n{invoice_number} Kwota należna: {payment_dueAmount}
\nDoceniamy Twoją szybką płatność i czekamy na kontynuację działalności gospodarczej z Tobą w przyszłości.
\nDziękuję bardzo i mam dobry dzień!!
\n\n
W odniesieniu do
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (59, 4, 'ru', 'Invoice Payment Create', 'Привет.
\nВас приветствует {app_name}
\nДорогая {payment_name}
\nМы получили вашу сумму оплаты {payment_amount} для {invoice_number}, подавшей на дату {payment_date}
\nВаша {invoice_number} Должная сумма-{payment_dueAmount}
\nМы ценим вашу своевременную оплату и надеемся на продолжение бизнеса с вами в будущем.
\nБольшое спасибо и хорошего дня!!
\n\n
С уважением,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (60, 4, 'pt', 'Invoice Payment Create', 'Oi,
\nBem-vindo a {app_name}
\nQuerido {payment_name}
\nNós recibimos sua quantia {payment_amount} pagamento para {invoice_number} requisitado na data {payment_date}
\nSua quantia {invoice_number} Due é {payment_dueAmount}
\nAgradecemos o seu pronto pagamento e estamos ansiosos para continuarmos os negócios com você no futuro.
\nMuito obrigado e tenha um bom dia!!
\n\n
Considera,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (61, 4, 'pt-BR', 'Invoice Payment Create', 'Olá,
\nBem-vindo(a) ao {app_name}
\nPrezado(a) {payment_name}
\nRecebemos o seu pagamento de {payment_amount} referente à fatura {invoice_number}, submetida em {payment_date}
\nO valor pendente da fatura {invoice_number} é {payment_dueAmount}
\nAgradecemos o seu pagamento imediato e esperamos continuar a fazer negócios com você no futuro.
\nMuito obrigado e tenha um ótimo dia!
\n\n
Atenciosamente,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (62, 4, 'he', 'Invoice Payment Create', 'שלום,
\nברוך הבא ל-{app_name}
\nיקר/ה {payment_name}
\nקיבלנו את התשלום שלך בסך {payment_amount} עבור חשבונית {invoice_number}, שהוגשה בתאריך {payment_date}
\nהסכום שנותר לתשלום עבור חשבונית {invoice_number} הוא {payment_dueAmount}
\nאנו מעריכים את התשלום המהיר שלך ומצפים להמשך שיתוף פעולה בעתיד.
\nתודה רבה ויום נעים!
\n\n
בברכה,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'); INSERT INTO `email_template_langs` (`id`, `parent_id`, `lang`, `subject`, `content`, `module_name`, `variables`, `created_at`, `updated_at`) VALUES (63, 4, 'tr', 'Invoice Payment Create', 'Merhaba,
\n{app_name}’e hoş geldiniz
\nSayın {payment_name}
\n{payment_date} tarihinde gönderilen {invoice_number} numaralı fatura için {payment_amount} tutarında ödemenizi aldık
\n{invoice_number} numaralı faturanızın kalan tutarı {payment_dueAmount}’dir
\nHızlı ödemeniz için teşekkür eder, gelecekteki iş birliklerimizi sabırsızlıkla bekleriz.
\nÇok teşekkür ederiz, iyi günler dileriz!
\n\n
Saygılarımızla,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (64, 4, 'zh', 'Invoice Payment Create', '您好,
\n欢迎使用 {app_name}
\n尊敬的 {payment_name}
\n我们已收到您于 {payment_date} 提交的编号为 {invoice_number} 的付款,金额为 {payment_amount}
\n您在 {invoice_number} 的未付款金额为 {payment_dueAmount}
\n感谢您的及时付款,期待未来继续与您合作。
\n非常感谢,祝您有美好的一天!
\n\n
此致敬礼,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"Payment Name\\\": \\\"payment_name\\\",\\n \\\"Invoice Number\\\": \\\"invoice_number\\\",\\n \\\"Payment Amount\\\": \\\"payment_amount\\\",\\n \\\"Payment dueAmount\\\": \\\"payment_dueAmount\\\",\\n \\\"Payment Date\\\": \\\"payment_date\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (65, 5, 'ar', 'Proposal Send', 'مرحبا ، {proposal_name}
\nأتمنى أن يجدك هذا البريد الإلكتروني جيدا برجاء الرجوع الى رقم الاقتراح المرفق {proposal_number} للمنتج / الخدمة.
\nاضغط ببساطة على الاختيار بأسفل
\n \nإشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة.
\nشكرا لعملك ! !
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (66, 5, 'da', 'Proposal Send', 'Hej, {proposal_name}
\nHåber denne e-mail finder dig godt! Se det vedhæftede forslag nummer {proposal_number} for product/service.
\nklik bare på knappen nedenfor
\n \nDu er velkommen til at række ud, hvis du har nogen spørgsmål.
\nTak for din virksomhed!
\n\n
Med venlig hilsen
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (67, 5, 'de', 'Proposal Send', 'Hi, {proposal_name}
\nHoffe, diese E-Mail findet dich gut! Bitte sehen Sie die angehängte Vorschlagsnummer {proposal_number} für Produkt/Service an.
\nKlicken Sie einfach auf den Button unten
\n \nFühlen Sie sich frei, wenn Sie Fragen haben.
\nVielen Dank für Ihr Unternehmen!!
\n\n
Betrachtet,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (68, 5, 'en', 'Proposal Send', 'Hi, {proposal_name}
\nHope this email finds you well! Please see attached proposal number {proposal_number} for product/service.
\nsimply click on the button below
\n \nFeel free to reach out if you have any questions.
\nThank you for your business!!
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (69, 5, 'es', 'Proposal Send', 'Hi, {proposal_name}
\n¡Espero que este email le encuentre bien! Consulte el número de propuesta adjunto {proposal_number} para el producto/servicio.
\nsimplemente haga clic en el botón de abajo
\n \nSiéntase libre de llegar si usted tiene alguna pregunta.
\n¡Gracias por su negocio!!
\n\n
Considerando,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (70, 5, 'fr', 'Proposal Send', 'Salut, {proposal_name}
\nJespère que ce courriel vous trouve bien ! Veuillez consulter le numéro de la proposition jointe {proposal_number} pour le produit/service.
\nIl suffit de cliquer sur le bouton ci-dessous
\n \nNhésitez pas à nous contacter si vous avez des questions.
\nMerci pour votre entreprise ! !
\n\n
Regards,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (71, 5, 'it', 'Proposal Send', 'Ciao, {proposal_name}
\nSpero che questa email ti trovi bene! Si prega di consultare il numero di proposta allegato {proposal_number} per il prodotto/servizio.
\nsemplicemente clicca sul pulsante sottostante
\n \nSentiti libero di raggiungere se hai domande.
\nGrazie per il tuo business!!
\n\n
Riguardo,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (72, 5, 'ja', 'Proposal Send', 'こんにちは、 {proposal_name}
\nこの E メールでよくご確認ください。 製品 / サービスの添付されたプロポーザル番号 {proposal_number} を参照してください。
\n下のボタンをクリックするだけで
\n \n質問がある場合は、自由に連絡してください。
\nお客様のビジネスに感謝します。
\n\n
よろしく
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (73, 5, 'nl', 'Proposal Send', 'Hallo, {proposal_name}
\nHoop dat deze e-mail je goed vindt! Zie bijgevoegde nummer {proposal_number} voor product/service.
\ngewoon klikken op de knop hieronder
\n \nVoel je vrij om uit te reiken als je vragen hebt.
\nDank u voor uw bedrijf!!
\n\n
Betreft:
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (74, 5, 'pl', 'Proposal Send', 'Witaj, {proposal_name}
\nMam nadzieję, że ta wiadomość znajdzie Cię dobrze! Proszę zapoznać się z załączonym numerem wniosku {proposal_number} dla produktu/usługi.
\npo prostu kliknij na przycisk poniżej
\n \nCzuj się swobodnie, jeśli masz jakieś pytania.
\nDziękujemy za prowadzenie działalności!!
\n\n
W odniesieniu do
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (75, 5, 'ru', 'Proposal Send', 'Здравствуйте, {proposal_name}
\nНадеюсь, это электронное письмо найдет вас хорошо! См. вложенное предложение номер {proposal_number} для product/service.
\nпросто нажмите на кнопку внизу
\n \nНе стеснитесь, если у вас есть вопросы.
\nСпасибо за ваше дело!
\n\n
С уважением,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (76, 5, 'pt', 'Proposal Send', 'Oi, {proposal_name}
\nEspero que este e-mail encontre você bem! Por favor, consulte o número da proposta anexada {proposal_number} para produto/serviço.
\nbasta clicar no botão abaixo
\n \nSinta-se à vontade para alcançar fora se você tiver alguma dúvida.
\nObrigado pelo seu negócio!!
\n\n
Considera,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (77, 5, 'pt-BR', 'Proposal Send', 'Olá, {proposal_name}
\nEspero que este e-mail o encontre bem! Em anexo está a proposta número {proposal_number} para o produto/serviço.
\nSimplesmente clique no botão abaixo
\n \nFique à vontade para entrar em contato se tiver alguma dúvida.
\nObrigado pelo seu negócio!!
\n\n
Atenciosamente,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (78, 5, 'he', 'Proposal Send', 'שלום, {proposal_name}
\nאני מקווה שמייל זה מוצא אותך בטוב! מצורפת הצעת מחיר מספר {proposal_number} עבור מוצר/שירות.
\nפשוט לחץ על הכפתור למטה
\n \nאל תהסס לפנות אלינו אם יש לך שאלות.
\nתודה על העסק שלך!!
\n\n
בברכה,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (79, 5, 'tr', 'Proposal Send', 'Merhaba, {proposal_name}
\nUmarım bu e-posta sizi iyi bulur! {proposal_number} numaralı teklif ürün/hizmet için ekte yer almaktadır.
\nAşağıdaki butona tıklamanız yeterlidir
\n \nHerhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin.
\nİşiniz için teşekkür ederiz!!
\n\n
Saygılarımızla,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (80, 5, 'zh', 'Proposal Send', '您好, {proposal_name}
\n希望您一切顺利!随信附上编号为 {proposal_number} 的产品/服务提案。
\n只需点击下面的按钮
\n \n如有任何问题,请随时与我们联系。
\n感谢您的合作!!
\n\n
此致,
\n{company_name}
\n{app_url}
', NULL, '\"{\\n \\\"App Name\\\": \\\"app_name\\\",\\n \\\"Company Name\\\": \\\"company_name\\\",\\n \\\"App Url\\\": \\\"app_url\\\",\\n \\\"proposal Name\\\": \\\"proposal_name\\\",\\n \\\"proposal Number\\\": \\\"proposal_number\\\",\\n \\\"proposal Url\\\": \\\"proposal_url\\\"\\n }\"', '2026-03-14 00:17:35', '2026-03-14 00:17:35'), (81, 6, 'ar', 'New Helpdesk Ticket', 'مرحبا بك
الى {app_name}
البريد الالكتروني : { email } كود بطاقة طلب الخدمة: {ticket_id} {app_url} Thanks, {app_name} Velkommen E-mail : {email} Ticket ID: {ticket_id} {app_url} Tak, {app_name} Begrüßung Email : {email} Ticket ID: {ticket_id} {app_url} Vielen Dank, {app_name} Welcome Email : {email} Ticket ID: {ticket_id} {app_url} Thanks, {app_name} Bienvenido Correo electrónico : {email} ID de ticket: {ticket_id} {app_url} Gracias, {app_name} Bienvenue Courrier électronique : {email} ID de ticket: {ticket_id} {app_url} Merci, {app_name} Benvenuto Email : {email} ID ticket: {ticket_id} {app_url} Grazie, {app_name} ようこそ E メール: {email} チケット ID: {ticket_id} {app_url} ありがと, {app_name} Welkom E-mail : {email} Ticket-ID: {ticket_id} {app_url} Bedankt, {app_name} Powitanie Adres e-mail : {email} Id. zgłoszenia: {ticket_id} {app_url} Dziękujemy, {app_name} Приветствие Электронная почта : {email} ID паспорта: {ticket_id} {app_url} Спасибо, {app_name} Bem-vindo E-mail : {email} ID do chamado: {ticket_id} {app_url} Obrigado, {app_name} Hoş geldiniz E-posta : {email} Bilet ID: {ticket_id} {app_url} Teşekkürler, {app_name} Bem-vindo Email : {email} ID do Ticket: {ticket_id} {app_url} Obrigado, {app_name} ברוך הבא אימייל : {email} מספר כרטיס: {ticket_id} {app_url} תודה, {app_name} 欢迎 邮箱 : {email} 工单编号: {ticket_id} {app_url} 谢谢, {app_name} مرحبا ، مرحبا بك في {app_name}. { ticket_name } { ticket_id } الوصف : { reply_description } شكرا {company_name} {app_name} Hej, velkommen til {app_name}. { ticket_name } { ticket_id } Beskrivelse: { reply_description } Tak. {company_name} {app_name} Hallo, Willkommen bei {app_name}. {ticketname} {ticket_id} Beschreibung: {reply_description} Danke, {company_name} {app_name} Hello, {ticket_name} {ticket_id} Description : {reply_description} Thanks, Hola, Bienvenido a {app_name}. {ticket_name} {ticket_id} Descripción: {reply_description} Gracias, {company_name} {app_name} Hola, Bienvenido a {app_name}. {ticket_name} {ticket_id} Descripción: {reply_description} Gracias, {company_name} {app_name} Ciao, Benvenuti in {app_name}. {ticket_name} {ticket_id} Descrizione: {reply_description} Grazie, {company_name} {app_name} こんにちは、 {app_name}へようこそ。 {ticket_name} {ticket_id} 説明 : {reply_description} ありがとう。 {company_name} {app_name} Hallo, Welkom bij {app_name}. { ticket_name } { ticket_id } Beschrijving: { reply_description } Bedankt. {company_name} {app_name} Witaj, Witamy w aplikacji {app_name }. {ticket_name } {ticket_id } Opis: {reply_description } Dziękuję, {company_name} {app_name} Здравствуйте, Добро пожаловать в {app_name}. Witaj, Witamy w aplikacji {app_name }. {ticket_name } {ticket_id } Opis: {reply_description } Dziękuję, {company_name} {app_name} Olá, Bem-vindo a {app_name}. {ticket_name} {ticket_id} Descrição: {reply_description} Obrigado, {company_name} {app_name} Merhaba, {ticket_name} {ticket_id} Açıklama : {reply_description} Teşekkürler, Olá, {ticket_name} {ticket_id} Descrição : {reply_description} Obrigado, שלום, {ticket_name} {ticket_id} תיאור : {reply_description} תודה, 您好, {ticket_name} {ticket_id} 描述 : {reply_description} 谢谢, مرحبا ، {purchase_name} مرحبا بك في {app_name} أتمنى أن يجدك هذا البريد الإلكتروني جيدا ! ! برجاء الرجوع الى رقم الفاتورة الملحقة {purchase_number} للحصول على المنتج / الخدمة. ببساطة اضغط على الاختيار بأسفل. إشعر بالحرية للوصول إلى الخارج إذا عندك أي أسئلة. شكرا لك Regards, {company_name} {app_url} Hej, {purchase_name} Velkommen til {app_name} Håber denne e-mail finder dig godt! Se vedlagte fakturanummer {purchase_number} for product/service. Klik på knappen nedenfor. Du er velkommen til at række ud, hvis du har nogen spørgsmål. Tak. Med venlig hilsen {company_name} {app_url} Hi, {purchase_name} Willkommen bei {app_name} Hoffe, diese E-Mail findet dich gut!! Sehen Sie sich die beigefügte Rechnungsnummer {purchase_number} für Produkt/Service an. Klicken Sie einfach auf den Button unten. Fühlen Sie sich frei, wenn Sie Fragen haben. Vielen Dank, Betrachtet, {company_name} {app_url} Hi, {purchase_name} Welcome to {app_name} Hope this email finds you well!! Please see attached Purchase number {purchase_number} for product/service. Simply click on the button below. Feel free to reach out if you have any questions. Thank You, Regards, {company_name} {app_url} Hi, {purchase_name} Bienvenido a {app_name} ¡Espero que este correo te encuentre bien!! Consulte el número de factura adjunto {purchase_number} para el producto/servicio. Simplemente haga clic en el botón de abajo. Siéntase libre de llegar si usted tiene alguna pregunta. Gracias, Considerando, {company_name} {app_url} Salut, {purchase_name} Bienvenue dans {app_name} Jespère que ce courriel vous trouve bien ! ! Veuillez consulter le numéro de facture {purchase_number} associé au produit / service. Cliquez simplement sur le bouton ci-dessous. Nhésitez pas à nous contacter si vous avez des questions. Merci, Regards, {company_name} {app_url} Ciao, {purchase_name} Benvenuti in {app_name} Spero che questa email ti trovi bene!! Si prega di consultare il numero di fattura allegato {purchase_number} per il prodotto/servizio. Semplicemente clicca sul pulsante sottostante. Sentiti libero di raggiungere se hai domande. Grazie, Riguardo, {company_name} {app_url} こんにちは、 {purchase_name} {app_name} へようこそ この E メールによりよく検出されます !! 製品 / サービスの添付された請求番号 {purchase_number} を参照してください。 以下のボタンをクリックしてください。 質問がある場合は、自由に連絡してください。 ありがとうございます よろしく {company_name} {app_url} Hallo, {purchase_name} Welkom bij {app_name} Hoop dat deze e-mail je goed vindt!! Zie bijgevoegde factuurnummer {purchase_number} voor product/service. Klik gewoon op de knop hieronder. Voel je vrij om uit te reiken als je vragen hebt. Dank U, Betreft: {company_name} {app_url} Witaj, {purchase_name} Witamy w aplikacji {app_name } Mam nadzieję, że ta wiadomość e-mail znajduje Cię dobrze!! Zapoznaj się z załączonym numerem rachunku {purchase_number } dla produktu/usługi. Wystarczy kliknąć na przycisk poniżej. Czuj się swobodnie, jeśli masz jakieś pytania. Dziękuję, W odniesieniu do {company_name} {app_url} Привет, {purchase_name} Вас приветствует {app_name} Надеюсь, это письмо найдет вас хорошо! См. прилагаемый номер счета {purchase_number} для product/service. Просто нажмите на кнопку внизу. Не стеснитесь, если у вас есть вопросы. Спасибо. С уважением, {company_name} {app_url} Oi, {purchase_name} Bem-vindo a {app_name} Espero que este e-mail encontre você bem!! Por favor, consulte o número de faturamento conectado {purchase_number} para produto/serviço. Basta clicar no botão abaixo. Sinta-se à vontade para alcançar fora se você tiver alguma dúvida. Obrigado, Considera, {company_name} {app_url} Olá, {purchase_name} Bem-vindo ao {app_name} Espero que este e-mail o encontre bem!! Em anexo está a compra número {purchase_number} para o produto/serviço. Basta clicar no botão abaixo. Fique à vontade para entrar em contato se tiver alguma dúvida. Obrigado, Atenciosamente, {company_name} {app_url} שלום, {purchase_name} ברוך הבא ל-{app_name} אני מקווה שמייל זה מוצא אותך בטוב!! מצורפת רכישה מספר {purchase_number} עבור מוצר/שירות. פשוט לחץ על הכפתור למטה. אל תהסס לפנות אלינו אם יש לך שאלות. תודה, בברכה, {company_name} {app_url} Merhaba, {purchase_name} {app_name}\'e hoş geldiniz Umarım bu e-posta sizi iyi bulur!! {purchase_number} numaralı satın alma ürün/hizmet için ekte yer almaktadır. Aşağıdaki butona tıklamanız yeterlidir. Herhangi bir sorunuz olursa bizimle iletişime geçmekten çekinmeyin. Teşekkürler, Saygılarımızla, {company_name} {app_url} 您好, {purchase_name} 欢迎来到 {app_name} 希望您一切顺利!! 附件中包含编号为 {purchase_number} 的产品/服务采购单。 只需点击下面的按钮。 如有任何问题,请随时联系我们。 谢谢, 此致, {company_name} {app_url} مرحبا ، {payment_name} مرحبا بك في {app_name} نحن نكتب لإبلاغكم بأننا قد أرسلنا مدفوعات {payment_bill} الخاصة بك. لقد أرسلنا قيمتك {payment_amount} لأجل {payment_bill} قمت بالاحالة في التاريخ {payment_date} من خلال {payment_method}. شكرا جزيلا لك وطاب يومك ! !!! {company_name} {app_url} Hej, {payment_name} Velkommen til {app_name} Vi skriver for at informere dig om, at vi har sendt din {payment_bill}-betaling. Vi har sendt dit beløb {payment_amount} betaling for {payment_bill} undertvist på dato {payment_date} via {payment_method}. Mange tak, og ha en god dag! {company_name} {app_url} Hi, {payment_name} Willkommen bei {app_name} Wir schreiben Ihnen mitzuteilen, dass wir Ihre Zahlung von {payment_bill} gesendet haben. Wir haben Ihre Zahlung {payment_amount} Zahlung für {payment_bill} am Datum {payment_date} über {payment_method} gesendet. Vielen Dank und haben einen guten Tag! !!! {company_name} {app_url} Hi, {payment_name} Welcome to {app_name} We are writing to inform you that we has sent your {payment_bill} payment. We has sent your amount {payment_amount} payment for {payment_bill} submited on date {payment_date} via {payment_method}. Thank You very much and have a good day !!!! {company_name} {app_url} Hi, {payment_name} Bienvenido a {app_name} Estamos escribiendo para informarle que hemos enviado su pago {payment_bill}. Hemos enviado su importe {payment_amount} pago para {payment_bill} submitado en la fecha {payment_date} a través de {payment_method}. Thank You very much and have a good day! !!! {company_name} {app_url} Salut, {payment_name} Bienvenue dans {app_name} Nous vous écrivons pour vous informer que nous avons envoyé votre paiement {payment_bill}. Nous avons envoyé votre paiement {payment_amount} pour {payment_bill} soumis à la date {payment_date} via {payment_method}. Merci beaucoup et avez un bon jour ! !!! {company_name} {app_url} Ciao, {payment_name} Benvenuti in {app_name} Scriviamo per informarti che abbiamo inviato il tuo pagamento {payment_bill}. Abbiamo inviato la tua quantità {payment_amount} pagamento per {payment_bill} subita alla data {payment_date} tramite {payment_method}. Grazie mille e buona giornata! !!! {company_name} {app_url} こんにちは、 {payment_name} {app_name} へようこそ {payment_bill} の支払いを送信したことをお知らせするために執筆しています。 {payment_date} に提出された {payment_議案} に対する金額 {payment_date} の支払いは、 {payment_method}を介して送信されました。 ありがとうございます。良い日をお願いします。 {company_name} {app_url} Hallo, {payment_name} Welkom bij {app_name} Wij schrijven u om u te informeren dat wij uw betaling van {payment_bill} hebben verzonden. We hebben uw bedrag {payment_amount} betaling voor {payment_bill} verzonden op datum {payment_date} via {payment_method}. Hartelijk dank en hebben een goede dag! !!! {company_name} {app_url} Witaj, {payment_name} Witamy w aplikacji {app_name } Piszemy, aby poinformować Cię, że wysłaliśmy Twoją płatność {payment_bill }. Twoja kwota {payment_amount } została wysłana przez użytkownika {payment_bill } w dniu {payment_date} za pomocą metody {payment_method}. Dziękuję bardzo i mam dobry dzień! !!! {company_name} {app_url} Привет, {payment_name} Вас приветствует {app_name} Мы пишем, чтобы сообщить вам, что мы отправили вашу оплату {payment_bill}. Мы отправили вашу сумму оплаты {payment_amount} для {payment_bill}, подав на дату {payment_date} через {payment_method}. Большое спасибо и хорошего дня! !!! {company_name} {app_url} Oi, {payment_name} Bem-vindo a {app_name} Estamos escrevendo para informá-lo que enviamos o seu pagamento {payment_bill}. Nós enviamos sua quantia {payment_amount} pagamento por {payment_bill} requisitado na data {payment_date} via {payment_method}. Muito obrigado e tenha um bom dia! !!! {company_name} {app_url} Olá, {payment_name} Bem-vindo ao {app_name} Estamos escrevendo para informar que enviamos o pagamento do {payment_bill}. Enviamos o valor de {payment_amount} referente ao {payment_bill}, submetido na data {payment_date}, via {payment_method}. Muito obrigado e tenha um ótimo dia !!!! {company_name} {app_url} שלום, {payment_name} ברוך הבא ל-{app_name} אנו כותבים כדי להודיע לך ששלחנו את התשלום עבור {payment_bill}. שלחנו את הסכום {payment_amount} עבור {payment_bill}, שהוגש בתאריך {payment_date}, באמצעות {payment_method}. תודה רבה ויום טוב !!!! {company_name} {app_url} Merhaba, {payment_name} {app_name}\'e hoş geldiniz {payment_bill} ödemenizin gönderildiğini bildirmek için yazıyoruz. {payment_date} tarihinde {payment_method} aracılığıyla gönderilen {payment_bill} için {payment_amount} tutarındaki ödemeniz gönderilmiştir. Çok teşekkür ederiz ve iyi günler dileriz !!!! {company_name} {app_url} 您好, {payment_name} 欢迎来到 {app_name} 我们写信通知您,您的 {payment_bill} 付款已发送。 我们已通过 {payment_method} 于 {payment_date} 发送金额为 {payment_amount} 的 {payment_bill} 付款。 非常感谢,祝您有美好的一天 !!!! {company_name} {app_url} مرحبا، اسم الصفقة : {deal_name} شكرًا لك {company_name} Hej, Deal Navn : {deal_name} Tak {company_name} Hallo, Geschäftsname : {deal_name} Danke {company_name} Hello, Deal Name : {deal_name} Thank you {company_name} Hola, Nombre del trato : {deal_name} Gracias {company_name} Bonjour, Nom de l`accord : {deal_name} Merci {company_name} Ciao, Nome dell`affare : {deal_name} Grazie {company_name} こんにちは、 取引名 : {deal_name} ありがとう {company_name} Hallo, Dealnaam : {deal_name} Bedankt {company_name} Witaj, Nazwa oferty : {deal_name} Dziękuję {company_name} Привет, Название сделки : {deal_name} Спасибо {company_name} Hello, Deal Name : {deal_name} Obrigado {company_name} مرحبا، اسم الصفقة : {deal_name} شكرًا لك {company_name} Hej, Deal Navn : {deal_name} Tak {company_name} Hallo, Geschäftsname : {deal_name} Danke {company_name} Hello, Deal Name : {deal_name} Thank you {company_name} Hola, Nombre del trato : {deal_name} Gracias {company_name} Bonjour, Nom de l`accord : {deal_name} Merci {company_name} Ciao, Nome dell`affare : {deal_name} Grazie {company_name} こんにちは、 取引名 : {deal_name} ありがとう {company_name} Hallo, Dealnaam : {deal_name} Bedankt {company_name} Witaj, Nazwa oferty : {deal_name} Dziękuję {company_name} Привет, Название сделки : {deal_name} Спасибо {company_name} Hello, Deal Name : {deal_name} Obrigado {company_name} مرحبا، اسم المهمة : {task_name} شكرًا لك {company_name} Hej, Opgavens navn : {task_name} Tak {company_name} Hallo, Aufgabennname : {task_name} Danke {company_name} Hello, Task Name : {task_name} Thank you {company_name} Hola, Nombre de la tarea : {task_name} Gracias {company_name} Bonjour, Nom de la tâche : {task_name} Merci {company_name} Ciao, Nome dell`attività : {task_name} Grazie {company_name} こんにちは、 タスク名 : {task_name} ありがとう {company_name} Hallo, Opdrachtnaam : {task_name} Bedankt {company_name} Witaj, Nazwa zadania : {task_name} Dziękuję {company_name} Привет, Название задачи : {task_name} Спасибо {company_name} Hello, Task Name : {task_name} Obrigado {company_name} مرحبا، اسم العميل المحتمل : {lead_name} شكرًا لك {company_name} Hej, Blynavn : {lead_name} Tak {company_name} Hallo, Lead Name : {lead_name} Danke {company_name} Hello, Lead Name : {lead_name} Thank you {company_name} Hola, Nombre principal : {lead_name} Gracias {company_name} Bonjour, Nom du responsable : {lead_name} Merci {company_name} Ciao, Nome del lead : {lead_name} Grazie {company_name} こんにちは、 リード名 : {lead_name} ありがとう {company_name} Hallo, Lead naam : {lead_name} Bedankt {company_name} Witaj, Imię i nazwisko : {lead_name} Dziękuję {company_name} Привет, Имя лидера : {lead_name} Спасибо {company_name} Hello, Lead Name : {lead_name} Obrigado {company_name} مرحبا، اسم العميل المحتمل : {lead_name} شكرًا لك {company_name} Hej, Blynavn : {lead_name} Tak {company_name} Hallo, Lead Name : {lead_name} Danke {company_name} Hello, Lead Name : {lead_name} Thank you {company_name} Hola, Nombre principal : {lead_name} Gracias {company_name} Bonjour, Nom du responsable : {lead_name} Merci {company_name} Ciao, Nome del lead : {lead_name} Grazie {company_name} こんにちは、 リード名 : {lead_name} ありがとう {company_name} Hallo, Lead naam : {lead_name} Bedankt {company_name} Witaj, Imię i nazwisko : {lead_name} Dziękuję {company_name} Привет, Имя лидера : {lead_name} Спасибо {company_name} Hello, Lead Name : {lead_name} Obrigado {company_name} مرحبًا، اسم العميل المحتمل: {lead_name} الموضوع: {lead_email_subject} الوصف: {lead_email_description} شكرًا، {company_name} Hej Kundenavn: {lead_name} Emne: {lead_email_subject} Beskrivelse: {lead_email_description} Tak, {company_name} Hallo, Lead-Name: {lead_name} Betreff: {lead_email_subject} Beschreibung: {lead_email_description} Danke, {company_name} Hello, Lead Name: {lead_name} Subject: {lead_email_subject} Description: {lead_email_description} Thanks, {company_name} Hola, Nombre del cliente potencial: {lead_name} Asunto: {lead_email_subject} Descripción: {lead_email_description} Gracias, {company_name} Bonjour, Nom du prospect: {lead_name} Objet: {lead_email_subject} Description: {lead_email_description} Merci, {company_name} Ciao, Nome lead: {lead_name} Oggetto: {lead_email_subject} Descrizione: {lead_email_description} Grazie, {company_name} こんにちは、 リード名: {lead_name} 件名: {lead_email_subject} 説明: {lead_email_description} ありがとうございます。 {company_name} Hallo, Leadnaam: {lead_name} Onderwerp: {lead_email_subject} Beschrijving: {lead_email_description} Bedankt, {company_name} Witamy, Nazwa potencjalnego klienta: {lead_name} Temat: {lead_email_subject} Opis: {lead_email_description} Dzięki, {company_name} Здравствуйте! Имя лидера: {lead_name} Тема: {lead_email_subject} Описание: {lead_email_description} Спасибо, {company_name} Olá, Nome do lead: {lead_name} Assunto: {lead_email_subject} Descrição: {lead_email_description} Obrigado, {company_name} مرحبًا، اسم الصفقة: {deal_name} الموضوع: {deal_email_subject} الوصف: {deal_email_description} شكرًا، {company_name} Hej Aftalens navn: {deal_name} Emne: {deal_email_subject} Beskrivelse: {deal_email_description} Tak, {company_name} Hallo, Dealname: {deal_name} Betreff: {deal_email_subject} Beschreibung: {deal_email_description} Danke, {company_name} Hello, Deal Name: {deal_name} Subject: {deal_email_subject} Description: {deal_email_description} Thanks, {company_name} Hola, Nombre de la oferta: {deal_name} Asunto: {deal_email_subject} Descripción: {deal_email_description} Gracias, {company_name} Bonjour, Nom de l\'offre: {deal_name} Objet: {deal_email_subject} Description: {deal_email_description} Merci, {company_name} Ciao, Nome offerta: {deal_name} Oggetto: {deal_email_subject} Descrizione: {deal_email_description} Grazie, {company_name} こんにちは、 取引名: {deal_name} 件名: {deal_email_subject} 説明: {deal_email_description} ありがとうございます。 {company_name} Hallo, Dealnaam: {deal_name} Onderwerp: {deal_email_subject} Beschrijving: {deal_email_description} Bedankt, {company_name} Witamy, Nazwa umowy: {deal_name} Temat: {deal_email_subject} Opis: {deal_email_description} Dzięki, {company_name} Здравствуйте! Название сделки: {deal_name} Тема: {deal_email_subject} Описание: {deal_email_description} Спасибо, Olá, Nome da transação: {deal_name} Assunto: {deal_email_subject} Descrição: {deal_email_description} Obrigado, {company_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
to {app_name}
\n
\n \n
{company_name}
{app_name}\'e
\n
\n \n
{company_name}
ao {app_name}
\n
\n \n
{company_name}
ל-{app_name}
\n
\n \n
{company_name}
来到 {app_name}
\n
\n \n
{company_name}
Welcome to {app_name}.
{app_name}
{app_name}\'e hoş geldiniz.
{app_name}
Bem-vindo ao {app_name}.
{app_name}
ברוך הבא ל-{app_name}.
{app_name}
欢迎来到 {app_name}。
{app_name}
تم تعيين صفقة جديدة لك.
خط أنابيب الصفقة : {deal_pipeline}
مرحلة الصفقة : {deal_stage}
حالة الصفقة : {deal_status}
سعر الصفقة : {deal_price}
New Deal er blevet tildelt til dig.
Deal Pipeline : {deal_pipeline}
Deal Fase : {deal_stage}
Deal status : {deal_status}
Deal pris : {deal_price}
New Deal wurde Ihnen zugewiesen.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Ausgehandelter Preis : {deal_price}
New Deal has been Assign to you.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}
New Deal ha sido asignado a usted.
Tubería de reparto : {deal_pipeline}
Etapa de reparto : {deal_stage}
Estado del acuerdo : {deal_status}
Precio de oferta : {deal_price}
Le New Deal vous a été attribué.
Pipeline de transactions : {deal_pipeline}
Étape de l`opération : {deal_stage}
Statut de l`accord : {deal_status}
Prix de l offre : {deal_price}
New Deal è stato assegnato a te.
Pipeline di offerte : {deal_pipeline}
Stage Deal : {deal_stage}
Stato dell`affare : {deal_status}
Prezzo dell`offerta : {deal_price}
新しい取引が割り当てられました。
取引パイプライン : {deal_pipeline}
取引ステージ : {deal_stage}
取引状況 : {deal_status}
取引価格 : {deal_price}
New Deal is aan u toegewezen.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Dealstatus : {deal_status}
Deal prijs : {deal_price}
Nowa oferta została Ci przypisana.
Deal Pipeline : {deal_pipeline}
Etap transakcji : {deal_stage}
Status oferty : {deal_status}
Cena oferty : {deal_price}
Новый курс был назначен вам.
Трубопровод сделки : {deal_pipeline}
Этап сделки : {deal_stage}
Статус сделки : {deal_status}
Цена сделки : {deal_price}
New Deal has been Assign to you.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}
تم نقل صفقة من {deal_old_stage} إلى {deal_new_stage}.
خط أنابيب الصفقة : {deal_pipeline}
مرحلة الصفقة : {deal_stage}
حالة الصفقة : {deal_status}
سعر الصفقة : {deal_price}
En aftale er flyttet fra {deal_old_stage} til {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Deal Fase : {deal_stage}
Deal status : {deal_status}
Deal pris : {deal_price}
Ein Deal wurde verschoben {deal_old_stage} zu {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Ausgehandelter Preis : {deal_price}
A Deal has been move from {deal_old_stage} to {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}
Se ha movido un acuerdo de {deal_old_stage} a {deal_new_stage}.
Tubería de reparto : {deal_pipeline}
Etapa de reparto : {deal_stage}
Estado del acuerdo : {deal_status}
Precio de oferta : {deal_price}
Un accord a été déplacé de {deal_old_stage} à {deal_new_stage}.
Pipeline de transactions : {deal_pipeline}
Étape de l`opération : {deal_stage}
Statut de l`accord : {deal_status}
Prix de l`offre : {deal_price}
Un affare è stato spostato da {deal_old_stage} per {deal_new_stage}.
Pipeline di offerte : {deal_pipeline}
Stage Deal : {deal_stage}
Stato dell`affare : {deal_status}
Prezzo dell`offerta : {deal_price}
取引は {deal_old_stage} に {deal_new_stage}.
取引パイプライン : {deal_pipeline}
取引ステージ : {deal_stage}
取引状況 : {deal_status}
取引価格 : {deal_price}
Een deal is verplaatst van {deal_old_stage} naar {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Dealstatus : {deal_status}
Deal prijs : {deal_price}
Umowa została przeniesiona {deal_old_stage} do {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Etap transakcji : {deal_stage}
Status oferty : {deal_status}
Cena oferty : {deal_price}
Сделка была перемещена из {deal_old_stage} в {deal_new_stage}.
Трубопровод сделки : {deal_pipeline}
Этап сделки : {deal_stage}
Статус сделки : {deal_status}
Цена сделки : {deal_price}
A Deal has been move from {deal_old_stage} to {deal_new_stage}.
Deal Pipeline : {deal_pipeline}
Deal Stage : {deal_stage}
Deal Status : {deal_status}
Deal Price : {deal_price}
تم تعيين مهمة جديدة لك.
أولوية المهمة : {task_priority}
حالة المهمة : {task_status}
صفقة المهمة : {deal_name}
Ny opgave er blevet tildelt til dig.
Opgaveprioritet : {task_priority}
Opgavestatus : {task_status}
Opgave : {deal_name}
Neue Aufgabe wurde Ihnen zugewiesen.
Aufgabenpriorität : {task_priority}
Aufgabenstatus : {task_status}
Task Deal : {deal_name}
New Task has been Assign to you.
Task Priority : {task_priority}
Task Status : {task_status}
Task Deal : {deal_name}
Nueva tarea ha sido asignada a usted.
Prioridad de tarea : {task_priority}
Estado de la tarea : {task_status}
Reparto de tarea : {deal_name}
Une nouvelle tâche vous a été assignée.
Priorité des tâches : {task_priority}
Statut de la tâche : {task_status}
Deal Task : {deal_name}
La nuova attività è stata assegnata a te.
Priorità dell`attività : {task_priority}
Stato dell`attività : {task_status}
Affare : {deal_name}
新しいタスクが割り当てられました。
タスクの優先度 : {task_priority}
タスクのステータス : {task_status}
タスク取引 : {deal_name}
Nieuwe taak is aan u toegewezen.
Taakprioriteit : {task_priority}
Taakstatus : {task_status}
Task Deal : {deal_name}
Nowe zadanie zostało Ci przypisane.
Priorytet zadania : {task_priority}
Status zadania : {task_status}
Zadanie Deal : {deal_name}
Новая задача была назначена вам.
Приоритет задачи : {task_priority}
Состояние задачи : {task_status}
Задача : {deal_name}
New Task has been Assign to you.
Task Priority : {task_priority}
Task Status : {task_status}
Task Deal : {deal_name}
تم تعيين عميل جديد لك.
البريد الإلكتروني الرئيسي : {lead_email}
خط أنابيب الرصاص : {lead_pipeline}
مرحلة الرصاص : {lead_stage}
Ny bly er blevet tildelt dig.
Lead-e-mail : {lead_email}
Blyrørledning : {lead_pipeline}
Lead scenen : {lead_stage}
Neuer Lead wurde Ihnen zugewiesen.
Lead-E-Mail : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
New Lead has been Assign to you.
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
Se le ha asignado un nuevo plomo.
Correo electrónico principal : {lead_email}
Tubería de plomo : {lead_pipeline}
Etapa de plomo : {lead_stage}
Un nouveau prospect vous a été attribué.
Courriel principal : {lead_email}
Pipeline de plomb : {lead_pipeline}
Étape principale : {lead_stage}
New Lead è stato assegnato a te.
Lead Email : {lead_email}
Conduttura di piombo : {lead_pipeline}
Lead Stage : {lead_stage}
新しいリードが割り当てられました。
リードメール : {lead_email}
リードパイプライン : {lead_pipeline}
リードステージ : {lead_stage}
Nieuwe lead is aan u toegewezen.
E-mail leiden : {lead_email}
Lead Pipeline : {lead_pipeline}
Hoofdfase : {lead_stage}
Nowy potencjalny klient został do ciebie przypisany.
Główny adres e-mail : {lead_email}
Ołów rurociągu : {lead_pipeline}
Etap prowadzący : {lead_stage}
Новый Лид был назначен вам.
Ведущий Email : {lead_email}
Ведущий трубопровод : {lead_pipeline}
Ведущий этап : {lead_stage}
New Lead has been Assign to you.
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
تم نقل العميل المحتمل من {lead_old_stage} إلى {lead_new_stage}.
البريد الإلكتروني الرئيسي : {lead_email}
خط أنابيب الرصاص : {lead_pipeline}
مرحلة الرصاص : {lead_stage}
En leder er flyttet fra {lead_old_stage} til {lead_new_stage}.
Lead-e-mail : {lead_email}
Blyrørledning : {lead_pipeline}
Lead scenen : {lead_stage}
Ein Lead wurde verschoben von {lead_old_stage} zu {lead_new_stage}.
Lead-E-Mail : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
A Lead has been move from {lead_old_stage} to {lead_new_stage}.
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
Un plomo ha sido movido de {lead_old_stage} a {lead_new_stage}.
Correo electrónico principal : {lead_email}
Tubería de plomo : {lead_pipeline}
Etapa de plomo : {lead_stage}
Un lead a été déplacé de {lead_old_stage} à {lead_new_stage}.
Courriel principal : {lead_email}
Pipeline de plomb : {lead_pipeline}
Étape principale : {lead_stage}
È stato spostato un lead {lead_old_stage} per {lead_new_stage}.
Lead Email : {lead_email}
Conduttura di piombo : {lead_pipeline}
Lead Stage : {lead_stage}
リードが移動しました {lead_old_stage} に {lead_new_stage}.
リードメール : {lead_email}
リードパイプライン : {lead_pipeline}
リードステージ : {lead_stage}
Er is een lead verplaatst van {lead_old_stage} naar {lead_new_stage}.
E-mail leiden : {lead_email}
Lead Pipeline : {lead_pipeline}
Hoofdfase : {lead_stage}
Prowadzenie zostało przeniesione {lead_old_stage} do {lead_new_stage}.
Główny adres e-mail : {lead_email}
Ołów rurociągu : {lead_pipeline}
Etap prowadzący : {lead_stage}
Свинец был двигаться от {lead_old_stage} в {lead_new_stage}.
Ведущий Email : {lead_email}
Ведущий трубопровод : {lead_pipeline}
Ведущий этап : {lead_stage}
A Lead has been move from {lead_old_stage} to {lead_new_stage}.
Lead Email : {lead_email}
Lead Pipeline : {lead_pipeline}
Lead Stage : {lead_stage}
مرحبًا بك في {app_name}.
{app_name}
Velkommen til {app_name}.
{app_name}
Willkommen bei {app_name}.
{app_name}
Welcome to {app_name}.
{app_name}
Bienvenido a {app_name}.
{app_name}
Bienvenue sur {app_name}.
{app_name}
Benvenuto in {app_name}.
{app_name}
{app_name} へようこそ。
{app_name}
Welkom bij {app_name}.
{app_name}
Witamy w aplikacji {app_name}.
{app_name}
Добро пожаловать в {app_name}.
{app_name}
Bem-vindo ao {app_name}.
{app_name}
مرحبًا بك في {app_name}.
{app_name}
Velkommen til {app_name}.
{app_name}
Willkommen bei {app_name}.
{app_name}
Welcome to {app_name}.
{app_name}
Bienvenido a {app_name}.
{app_name}
Bienvenue sur {app_name}.
{app_name}
Benvenuto in {app_name}.
{app_name}
{app_name} へようこそ。
{app_name}
Welkom bij {app_name}.
{app_name}
Witamy w aplikacji {app_name}.
{app_name}
Добро пожаловать в {app_name}.
{app_name}
Bem-vindo ao {app_name}.
{app_name}